GeometricBase

Documentation for GeometricBase.

Library

GeometricBase.AbstractSolverStateType
AbstractSolverState

The state is used in solvers and optimizers to translate information about previous solver/optimization steps to successive iterations.

source
GeometricBase.AbstractStateVariableType

AbstractStateVariable{T,N,AT} is a wrapper around a AT <: AbstractArray{T,N} that provides context for the nature of the variable, e.g., a state or a vector field.

source
GeometricBase.vectorfieldMethod

The vectorfield function returns a datastructure that stores the vectorfield for an AbstractStateVariable s that holds the state of a system. By default it returns a VectorfieldVariable that wraps zero(parent(s)), i.e., the same kind of array as the state variable, but custom methods can be implemented in order to account for more specific use cases, e.g., when s also contains constant fields that should not be present in the vector field.

source