public SolveElement(SolveElementType type, SubVariable subVariable)
 {
     this.type        = type;
     this.subVariable = subVariable;
 }
 public SolveElement(SolveElementType type, OperatorType operatorType)
 {
     this.type         = type;
     this.operatorType = operatorType;
 }
 public SolveElement(SolveElementType type)
 {
     this.type = type;
 }