Exemplo n.º 1
0
 protected Relation(MathStatement left, MathStatement right)
 {
     Left  = left;
     Right = right;
 }
Exemplo n.º 2
0
 public static EqualsOp Create(MathStatement left, MathStatement right)
 {
     return(new EqualsOp(left, right));
 }
Exemplo n.º 3
0
 private EqualsOp(MathStatement left, MathStatement right) : base(left, right)
 {
 }
Exemplo n.º 4
0
 public static MathStatement Create(BigInteger left, MathStatement right) => Create(Literal.Create(left), right);