Package com.polytechnik.kgo
Enum Class KGOIterationalTrySubspaceOrthogonal.LinConstraint
java.lang.Object
java.lang.Enum<KGOIterationalTrySubspaceOrthogonal.LinConstraint>
com.polytechnik.kgo.KGOIterationalTrySubspaceOrthogonal.LinConstraint
- All Implemented Interfaces:
Serializable
,Comparable<KGOIterationalTrySubspaceOrthogonal.LinConstraint>
,Constable
- Enclosing class:
KGOIterationalTrySubspaceOrthogonal
private static enum KGOIterationalTrySubspaceOrthogonal.LinConstraint
extends Enum<KGOIterationalTrySubspaceOrthogonal.LinConstraint>
Possible linear constraints to apply.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSet to zero all diagonal \(0=\mathrm{Herm}\left(\sum\limits_{q=0}^{nX-1}b_{iq}v_{jq}\right)\),nC*(nC+1)/2
linear constraints.Set all projections to vector \( b_{sq}=\sum\limits_{j^{\prime}=0}^{nC-1}\sum\limits_{k^{\prime}=0}^{nX-1} S_{sq;j^{\prime}k^{\prime}}u_{j^{\prime}k^{\prime}} - \sum\limits_{j^{\prime}=0}^{nC-1} \lambda_{sj^{\prime}} u_{j^{\prime}q} \) to zero: \(0=\sum\limits_{i=0}^{nC-1}\sum\limits_{q=0}^{nX-1}b_{iq}v_{iq}\), one linear constraint.Set all Herm(UV) matrix to zero,nC*(nC+1)/2
constraints.New basis orthogonal to u, single constraint. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UV_ORT
New basis orthogonal to u, single constraint. Actually does nothing as we construct the basis fron u and linear constraints basis. -
UV_ORT_NOINJECT
-
UV_ALL
Set all Herm(UV) matrix to zero,nC*(nC+1)/2
constraints.- See Also:
-
UV_OFFDIAG0DIAGEQ
- See Also:
-
BV_ORT
Set all projections to vector \( b_{sq}=\sum\limits_{j^{\prime}=0}^{nC-1}\sum\limits_{k^{\prime}=0}^{nX-1} S_{sq;j^{\prime}k^{\prime}}u_{j^{\prime}k^{\prime}} - \sum\limits_{j^{\prime}=0}^{nC-1} \lambda_{sj^{\prime}} u_{j^{\prime}q} \) to zero: \(0=\sum\limits_{i=0}^{nC-1}\sum\limits_{q=0}^{nX-1}b_{iq}v_{iq}\), one linear constraint. -
BV_ALL
Set to zero all diagonal \(0=\mathrm{Herm}\left(\sum\limits_{q=0}^{nX-1}b_{iq}v_{jq}\right)\),nC*(nC+1)/2
linear constraints.
-
-
Constructor Details
-
LinConstraint
private LinConstraint()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-