Class xlifepp::BasicOrthoManager#

template<class ScalarType, class MV, class OP>
class BasicOrthoManager : public xlifepp::MatOrthoManager<ScalarType, MV, OP>#

Inheritence diagram for xlifepp::BasicOrthoManager:

digraph { graph [bgcolor="#00000000"] node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2] edge [color="#1414CE"] "1" [label="xlifepp::BasicOrthoManager< ScalarType, MV, OP >" tooltip="xlifepp::BasicOrthoManager< ScalarType, MV, OP >" fillcolor="#BFBFBF"] "2" [label="xlifepp::MatOrthoManager< ScalarType, MV, OP >" tooltip="xlifepp::MatOrthoManager< ScalarType, MV, OP >"] "3" [label="xlifepp::OrthoManager< ScalarType, MV >" tooltip="xlifepp::OrthoManager< ScalarType, MV >"] "1" -> "2" [dir=forward tooltip="public-inheritance"] "2" -> "3" [dir=forward tooltip="public-inheritance"] }

Collaboration diagram for xlifepp::BasicOrthoManager:

digraph { graph [bgcolor="#00000000"] node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2] edge [color="#1414CE"] "12" [label="CheckingPolicy< StoragePolicy< T >::StoredType >" tooltip="CheckingPolicy< StoragePolicy< T >::StoredType >"] "7" [label="CheckingPolicy< StoragePolicy< const OP >::StoredType >" tooltip="CheckingPolicy< StoragePolicy< const OP >::StoredType >"] "8" [label="ConversionPolicy" tooltip="ConversionPolicy"] "13" [label="xlifepp::NumTraits< ScalarType >" tooltip="xlifepp::NumTraits< ScalarType >"] "11" [label="OwnershipPolicy< StoragePolicy< T >::InitPointerType >" tooltip="OwnershipPolicy< StoragePolicy< T >::InitPointerType >"] "6" [label="OwnershipPolicy< StoragePolicy< const OP >::InitPointerType >" tooltip="OwnershipPolicy< StoragePolicy< const OP >::InitPointerType >"] "4" [label="xlifepp::SmartPtr< const OP >" tooltip="xlifepp::SmartPtr< const OP >"] "10" [label="StoragePolicy< T >" tooltip="StoragePolicy< T >"] "5" [label="StoragePolicy< const OP >" tooltip="StoragePolicy< const OP >"] "1" [label="xlifepp::BasicOrthoManager< ScalarType, MV, OP >" tooltip="xlifepp::BasicOrthoManager< ScalarType, MV, OP >" fillcolor="#BFBFBF"] "2" [label="xlifepp::MatOrthoManager< ScalarType, MV, OP >" tooltip="xlifepp::MatOrthoManager< ScalarType, MV, OP >"] "14" [label="xlifepp::NumTraits< K >" tooltip="xlifepp::NumTraits< K >"] "3" [label="xlifepp::OrthoManager< ScalarType, MV >" tooltip="xlifepp::OrthoManager< ScalarType, MV >"] "9" [label="xlifepp::SmartPtr< T, OwnershipPolicy, ConversionPolicy, CheckingPolicy, StoragePolicy, ConstnessPolicy >" tooltip="xlifepp::SmartPtr< T, OwnershipPolicy, ConversionPolicy, CheckingPolicy, StoragePolicy, ConstnessPolicy >"] "13" -> "14" [dir=forward tooltip="template-instance"] "4" -> "5" [dir=forward tooltip="public-inheritance"] "4" -> "6" [dir=forward tooltip="public-inheritance"] "4" -> "7" [dir=forward tooltip="public-inheritance"] "4" -> "8" [dir=forward tooltip="public-inheritance"] "4" -> "9" [dir=forward tooltip="template-instance"] "1" -> "2" [dir=forward tooltip="public-inheritance"] "1" -> "13" [dir=forward tooltip="usage"] "2" -> "3" [dir=forward tooltip="public-inheritance"] "2" -> "4" [dir=forward tooltip="usage"] "9" -> "10" [dir=forward tooltip="public-inheritance"] "9" -> "11" [dir=forward tooltip="public-inheritance"] "9" -> "12" [dir=forward tooltip="public-inheritance"] "9" -> "8" [dir=forward tooltip="public-inheritance"] }

An implementation of the MatOrthoManager that performs orthogonalization using (potentially) multiple steps of classical Gram-Schmidt.

Accessor routines

inline void setKappa(typename NumTraits<ScalarType>::RealScalar kappa)#

Set parameter for re-orthogonalization threshold.

inline NumTraits<ScalarType>::RealScalar getKappa() const#

Return parameter for re-orthogonalization threshold.

Constructor/Destructor

BasicOrthoManager(SmartPtr<const OP> Op = _smPtrNull, typename NumTraits<ScalarType>::RealScalar kappa = sqrtOf2_, typename NumTraits<ScalarType>::RealScalar eps = 0.0, typename NumTraits<ScalarType>::RealScalar tol = 0.20)#

Constructor specifying re-orthogonalization tolerance.

inline ~BasicOrthoManager()#

Destructor.

Methods implementing MatOrthoManager

virtual void projectMat(MV &X, std::vector<SmartPtr<const MV>> Q, std::vector<SmartPtr<MatrixEigenDense<ScalarType>>> C, SmartPtr<MV> MX, std::vector<SmartPtr<const MV>> MQ) const#

Given a list of mutually orthogonal and internally orthonormal bases Q, this method projects a multivector X onto the space orthogonal to the individual Q[i], optionally returning the coefficients of X for the individual Q[i].

All of this is done with respect to the inner product innerProd().

After calling this routine, X will be orthogonal to each of the Q[i].

Parameters:
  • X[inout]

    The multivector to be modified.

    On output, the columns of

    X will be orthogonal to each Q[i], satisfying
    \[ X_{out} = X_{in} - \sum_i Q[i] \langle Q[i], X_{in} \rangle \]
  • MX[inout] The image of X under the inner product operator Op. If \( MX != 0\): On input, this is expected to be consistent with Op . X. On output, this is updated consistent with updates to X. If \( MX == 0\) or \( Op == 0\): MX is not referenced.

  • C[out] The coefficients of X in the bases Q[i]. If C[i] is a non-null pointer and C[i] matches the dimensions of X and Q[i], then the coefficients computed during the orthogonalization routine will be stored in the matrix C[i], similar to calling

    innerProd(Q[i], X, C[i]);
    
    If C[i] points to a MatrixEigenDense with size inconsistent with X and [i], then a std::invalid_argument exception will be thrown. Otherwise, if C.size() < i or C[i] is a null pointer, the caller will not have access to the computed coefficients.
  • Q[in] A list of multivector bases specifying the subspaces to be orthogonalized against, satisfying

    \[ \langle Q[i], Q[j] \rangle = I \quad\textrm{if}\quad i=j \]
    and
    \[ \langle Q[i], Q[j] \rangle = 0 \quad\textrm{if}\quad i \neq j\ . \]
  • MQ

virtual int normalizeMat(MV &X, SmartPtr<MatrixEigenDense<ScalarType>> B = _smPtrNull, SmartPtr<MV> MX = _smPtrNull) const#

This method takes a multivector X and attempts to compute an orthonormal basis for \(colspan(X)\), with respect to innerProd().

The method uses classical Gram-Schmidt with selective reorthogonalization. As a result, the coefficient matrix B is upper triangular.

This routine returns an integer rank stating the rank of the computed basis. If X does not have full rank and the normalize() routine does not attempt to augment the subspace, then rank may be smaller than the number of columns in X. In this case, only the first rank columns of output X and first rank rows of B will be valid.

The method attempts to find a basis with dimension equal to the number of columns in X. It does this by augmenting linearly dependent vectors in X with random directions. A finite number of these attempts will be made; therefore, it is possible that the dimension of the computed basis is less than the number of vectors in X.

Parameters:
  • X[inout]

    The multivector to be modified.

    On output, the first

    rank columns of X satisfy
    \[ \langle X[i], X[j] \rangle = \delta_{ij}\ . \]
    Also,
    \[ X_{in}(1:m,1:n) = X_{out}(1:m,1:rank) B(1:rank,1:n) \]
    where m is the number of rows in X and n is the number of columns in X.
  • MX[inout] The image of X under the inner product operator Op. If \( MX != 0\): On input, this is expected to be consistent with Op . X. On output, this is updated consistent with updates to X. If \( MX == 0\) or \( Op == 0\): MX is not referenced.

  • B[out] The coefficients of the original X with respect to the computed basis. If B is a non-null pointer and B matches the dimensions of B, then the coefficients computed during the orthogonalization routine will be stored in B, similar to calling

    innerProd(Xout, Xin, B);
    
    If B points to a MatrixEigenDense with size inconsistent with X, then a std::invalid_argument exception will be thrown. Otherwise, if B

    is null, the caller will not have access to the computed coefficients. This matrix is not necessarily triangular (as in a QR factorization); see the documentation of specific orthogonalization managers.

    The first rows in

    B corresponding to the valid columns in X will be upper triangular.
Returns:

Rank of the basis computed by this method, less than or equal to the number of columns in X. This specifies how many columns in the returned X and rows in the returned B are valid.

virtual int projectAndNormalizeMat(MV &X, std::vector<SmartPtr<const MV>> Q, std::vector<SmartPtr<MatrixEigenDense<ScalarType>>> C, SmartPtr<MatrixEigenDense<ScalarType>> B, SmartPtr<MV> MX = _smPtrNull, std::vector<SmartPtr<const MV>> MQ = std::vector<SmartPtr<const MV>>(1, _smPtrNull)) const#

Given a set of bases Q[i] and a multivector X, this method computes an orthonormal basis for \(colspan(X) - \sum_i colspan(Q[i])\).

This routine returns an integer rank stating the rank of the computed basis. If the subspace \(colspan(X) - \sum_i colspan(Q[i])\) does not have dimension as large as the number of columns of X and the orthogonalization manager doe not attempt to augment the subspace, then rank may be smaller than the number of columns of X. In this case, only the first rank columns of output X and first rank rows of B will be valid.

The method attempts to find a basis with dimension the same as the number of columns in X. It does this by augmenting linearly dependent vectors with random directions. A finite number of these attempts will be made; therefore, it is possible that the dimension of the computed basis is less than the number of vectors in X.

Parameters:
  • X[inout]

    The multivector to be modified.

    On output, the first

    rank columns of X satisfy
    \[ \langle X[i], X[j] \rangle = \delta_{ij} \quad \textrm{and} \quad \langle X, Q[i] \rangle = 0\ . \]
    Also,
    \[ X_{in}(1:m,1:n) = X_{out}(1:m,1:rank) B(1:rank,1:n) + \sum_i Q[i] C[i] \]
    where m is the number of rows in X and n is the number of columns in X.
  • MX[inout] The image of X under the inner product operator Op. If \( MX != 0\): On input, this is expected to be consistent with Op . X. On output, this is updated consistent with updates to X. If \( MX == 0\) or \( Op == 0\): MX is not referenced.

  • C[out] The coefficients of X in the Q[i]. If C[i] is a non-null pointer and C[i] matches the dimensions of X and Q[i], then the coefficients computed during the orthogonalization routine will be stored in the matrix C[i], similar to calling

    innerProd(Q[i], X, C[i]);
    
    If C[i] points to a MatrixEigenDense with size inconsistent with X and [i], then a std::invalid_argument exception will be thrown. Otherwise, if C.size() < i or C[i] is a null pointer, the caller will not have access to the computed coefficients.
  • B[out] The coefficients of the original X with respect to the computed basis. If B is a non-null pointer and B matches the dimensions of B, then the coefficients computed during the orthogonalization routine will be stored in B, similar to calling

    innerProd(Xout, Xin, B);
    
    If B points to a MatrixEigenDense with size inconsistent with X, then a std::invalid_argument exception will be thrown. Otherwise, if B

    is null, the caller will not have access to the computed coefficients. This matrix is not necessarily triangular (as in a QR factorization); see the documentation of specific orthogonalization managers.

    The first rows in

    B corresponding to the valid columns in X will be upper triangular.
  • Q[in] A list of multivector bases specifying the subspaces to be orthogonalized against, satisfying

    \[ \langle Q[i], Q[j] \rangle = I \quad\textrm{if}\quad i=j \]
    and
    \[ \langle Q[i], Q[j] \rangle = 0 \quad\textrm{if}\quad i \neq j\ . \]
  • MQ

Returns:

Rank of the basis computed by this method, less than or equal to the number of columns in X. This specifies how many columns in the returned X and rows in the returned B are valid.

Error methods

virtual NumTraits<ScalarType>::RealScalar orthonormErrorMat(const MV &X, SmartPtr<const MV> MX = _smPtrNull) const#

This method computes the error in orthonormality of a multivector, measured as the Frobenius norm of the difference innerProd(X,Y) - I.

The method has the option of exploiting a caller-provided MX.

virtual NumTraits<ScalarType>::RealScalar orthogErrorMat(const MV &X1, const MV &X2, SmartPtr<const MV> MX1, SmartPtr<const MV> MX2) const#

This method computes the error in orthogonality of two multivectors, measured as the Frobenius norm of innerProd(X,Y).

The method has the option of exploiting a caller-provided MX.