/// <summary>Creates a new evaluatable that returns whether or not the two given numbers are equal.</summary> public BooleanMathsComparison(double value1, double value2) { Operand1 = new NumberConstant(value1); Operand2 = new NumberConstant(value2); }