An expression representing the squared magnitude of a set of expressions representing coordinates.
Inheritance: ReducibleExpressionBase
Exemplo n.º 1
0
 private MagnitudeExpression(SquaredMagnitudeExpression innerExpression, IExpressionGenerator reductionExpressionGenerator = null)
 {
     if (innerExpression == null)
     {
         throw new ArgumentNullException("innerExpression");
     }
     Contract.EndContractBlock();
     InnerExpression = innerExpression;
 }
Exemplo n.º 2
0
 private MagnitudeExpression(SquaredMagnitudeExpression innerExpression, IExpressionGenerator reductionExpressionGenerator = null) {
     if(innerExpression == null) throw new ArgumentNullException("innerExpression");
     Contract.EndContractBlock();
     InnerExpression = innerExpression;
 }