Task #5985
Node ExprUtils.getEquation(Node target, Node value)
Start date:
05/26/2015
Due date:
% Done:
100%
Estimated time:
Detected in build:
svn
Published in build:
0.4.28
Description
return new NodeOperation(StandardOperation.EQ, target, value)
Updated by Sergey Smolov almost 6 years ago
- Subject changed from ExprUtils.getEquation(Node target, Node value) to Node ExprUtils.getEquation(Node target, Node value)
Updated by Sergey Smolov almost 6 years ago
Also the following convenience methods are necessary:
ExprUtils.getGreater(Node target, Node value) (return new NodeOperation(StandardOperation.GREATER, target, value))
ExprUtils.getGreaterEq(Node target, Node value) (return new NodeOperation(StandardOperation.GREATEREQ, target, value))
ExprUtils.getLess(Node target, Node value) (return new NodeOperation(StandardOperation.LESS, target, value))
ExprUtils.getLessEq(Node target, Node value) (return new NodeOperation(StandardOperation.LESSEQ, target, value))
Updated by Andrei Tatarnikov over 3 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Implemented in the Nodes class.
Updated by Andrei Tatarnikov about 3 years ago
- Published in build set to 0.4.28
- Status changed from Verified to Closed