InsertMode#
How the entries are combined with the current values in the vectors or matrices
Synopsis#
typedef enum {
NOT_SET_VALUES,
INSERT_VALUES,
ADD_VALUES,
MAX_VALUES,
MIN_VALUES,
INSERT_ALL_VALUES,
ADD_ALL_VALUES,
INSERT_BC_VALUES,
ADD_BC_VALUES
} InsertMode;
Values#
NOT_SET_VALUES
- do not actually use the valuesINSERT_VALUES
- replace the current values with the provided values, unless the index is marked as constrained by thePetscSection
ADD_VALUES
- add the values to the current values, unless the index is marked as constrained by thePetscSection
MAX_VALUES
- use the maximum of each current value and provided valueMIN_VALUES
- use the minimum of each current value and provided valueINSERT_ALL_VALUES
- insert, even if indices that are not marked as constrained by thePetscSection
ADD_ALL_VALUES
- add, even if indices that are not marked as constrained by thePetscSection
INSERT_BC_VALUES
- insert, but ignore indices that are not marked as constrained by thePetscSection
ADD_BC_VALUES
- add, but ignore indices that are not marked as constrained by thePetscSection
Note#
The PetscSection
that determines the effects of the InsertMode
values can be obtained by the Vec
object with VecGetDM()
and DMGetLocalSection()
.
Not all options are supported for all operations or PETSc object types.
See Also#
VecSetValues()
, MatSetValues()
, VecSetValue()
, VecSetValuesBlocked()
,
VecSetValuesLocal()
, VecSetValuesBlockedLocal()
, MatSetValuesBlocked()
,
MatSetValuesBlockedLocal()
, MatSetValuesLocal()
, VecScatterBegin()
, VecScatterEnd()
Level#
beginner
Location#
Index of all Sys routines
Table of Contents for all manual pages
Index of all manual pages