Package edu.cmu.tetrad.sem
Class ParamConstraintType
java.lang.Object
edu.cmu.tetrad.sem.ParamConstraintType
- All Implemented Interfaces:
- TetradSerializable,- Serializable
A typesafe enum of the types of the types of constraints on freeParameters for
 SEM models (LT, GT, EQ). For example, LT constraints require that the value
 of a parameter in a given SemIm be less than some value.  That value may be a
 given number (double) or the value of another parameter.
- Author:
- Frank Wimberly following Joe Ramsey's ParamType class.
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final ParamConstraintTypeAn "equal to" constraint.static final ParamConstraintTypeA "greater than" constraint.static final ParamConstraintTypeA "less than" constraint.static final ParamConstraintTypeNo constraint.
- 
Method SummaryModifier and TypeMethodDescriptionstatic ParamConstraintTypeGenerates a simple exemplar of this class to test serialization.toString()Prints out the name of the type.
- 
Field Details- 
LTA "less than" constraint.
- 
GTA "greater than" constraint.
- 
EQAn "equal to" constraint.
- 
NONENo constraint.
 
- 
- 
Method Details