Changes between Version 11 and Version 12 of Things To Do
- Timestamp:
- 01/30/10 14:27:03 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Things To Do
v11 v12 50 50 * {{{boolean valid(BooleanSymbolicExpressionIF assumption, BooleanSymbolicExpressionIF predicate);}}} 51 51 52 Other simplifications to symbolic module: 53 54 * get rid of >, >=. Just use <,<=. 55 * get rid of NEQ? Just use NOT(EQUAL). 56 57 52 58 53 59 == Examples == … … 91 97 * ParameterIF newParameter(TypeIF type, String name); 92 98 * creates a new parameter with given name 99 * ParameterExpressionIF parameterExpression(ParameterIF parameter); 100 * ExpressionIF substitute(ExpressionIF expression, Map<ParameterIF,Object> parameterValueMap); 101 * each ParameterExpression gets replaced by a LiteralExpression for the value given in the map. If the parameter does not occur in the map, it remains a ParameterExpression 102 93 103 * ModelIF 94 104 * void addParameter(ParameterIF parameter) … … 103 113 * equivalent to !parameters.isEmpty() 104 114 * Expression 105 * Expression substitute(Map<ParameterIF,Object> parameterValueMap); 106 * each ParameterExpression gets replaced by a LiteralExpression for the value given in the map. If the parameter does not occur in the map, it remains a ParameterExpression 107 115 108 116 Modify methods: 109 117
