diff --git a/MathEngine/MathEngine/Parser/Parser/ExpressionTree.cs b/MathEngine/MathEngine/Parser/Parser/ExpressionTree.cs index 5246586..91f3e80 100644 --- a/MathEngine/MathEngine/Parser/Parser/ExpressionTree.cs +++ b/MathEngine/MathEngine/Parser/Parser/ExpressionTree.cs @@ -30,20 +30,20 @@ namespace MathEngine.Parser.Parser this.rootNode = rootNode; } - /// + /* /// /// Evaluates the current instance of ExpressionTree /// /// Returns an update of the current instance which the expression Evaluated public ExpressionTree Evaluate() { return new ExpressionTree(rootNode.Evaluate()); - } + }*/ /// - /// Returns a value indicating if the given object is equal to the current instance of ExpressionTree - /// - /// The object to compare to the current instance - /// True if they are equal, False otherwise + /// Returns a value indicating if the given object is equal to the current instance of ExpressionTree + /// + /// The object to compare to the current instance + /// True if they are equal, False otherwise public override bool Equals(object? other) { if (other is BaseNode)