Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ResidueElementWise.cs
1using System;
4
6{
11 {
21 : base(Left, Right, Start, Length, Expression)
22 {
23 }
24
33 {
34 return Residue.EvaluateResidue(Left, Right, this);
35 }
36
37 }
38}
Class managing a script expression.
Definition: Expression.cs:39
Base class for binary element-wise operators.
Base class for all nodes in a parsed script tree.
Definition: ScriptNode.cs:69
int Length
Length of expression covered by node.
Definition: ScriptNode.cs:101
int Start
Start position in script expression.
Definition: ScriptNode.cs:92
ResidueElementWise(ScriptNode Left, ScriptNode Right, int Start, int Length, Expression Expression)
Element-wise Residue operator.
override IElement EvaluateScalar(IElement Left, IElement Right, Variables Variables)
Evaluates the operator on scalar operands.
static IElement EvaluateResidue(IElement Left, IElement Right, ScriptNode Node)
Divides the right operand from the left one.
Definition: Residue.cs:66
Collection of variables.
Definition: Variables.cs:25
Basic interface for all types of elements.
Definition: IElement.cs:20