2using System.Collections.Generic;
46 LinkedList<IElement> Elements =
new LinkedList<IElement>();
51 return Operand.Encapsulate(Elements,
this);
86 IElement Inv = E.AssociatedEuclidianDomain.Divide(E.One, E);
Base class for all types of Euclidian domain elements.
Script runtime exception.
Class managing a script expression.
Base class for all nodes in a parsed script tree.
int Length
Length of expression covered by node.
ScriptNode DifferentiationChainRule(string VariableName, Variables Variables, ScriptNode Argument, ScriptNode Differentiation)
Implements the differentiation chain rule, by differentiating the argument and multiplying it to the ...
virtual PatternMatchResult PatternMatch(IElement CheckAgainst, Dictionary< string, IElement > AlreadyFound)
Performs a pattern match operation.
Expression Expression
Expression of which the node is a part.
int Start
Start position in script expression.
Base class for all unary operators.
ScriptNode Operand
Operand.
Invert(ScriptNode Operand, int Start, int Length, Expression Expression)
Inversion operator.
override PatternMatchResult PatternMatch(IElement CheckAgainst, Dictionary< string, IElement > AlreadyFound)
Performs a pattern match operation.
override IElement Evaluate(IElement Operand, Variables Variables)
Evaluates the node, using the variables provided in the Variables collection.
ScriptNode Differentiate(string VariableName, Variables Variables)
Differentiates a script node, if possible.
Basic interface for all types of elements.
Basic interface for all types of ring elements.
Base interface for lambda expressions.
PatternMatchResult
Status result of a pattern matching operation.