Actions
Task #5985
closedNode 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 over 9 years ago
- Subject changed from ExprUtils.getEquation(Node target, Node value) to Node ExprUtils.getEquation(Node target, Node value)
Updated by Sergey Smolov over 9 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 about 7 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Implemented in the Nodes class.
Updated by Sergey Smolov about 7 years ago
- Status changed from Resolved to Verified
Updated by Andrei Tatarnikov almost 7 years ago
- Status changed from Verified to Closed
- Published in build set to 0.4.28
Actions