Changes between Version 11 and Version 12 of Things To Do


Ignore:
Timestamp:
01/30/10 14:27:03 (16 years ago)
Author:
Stephen Siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Things To Do

    v11 v12  
    5050   * {{{boolean valid(BooleanSymbolicExpressionIF assumption, BooleanSymbolicExpressionIF predicate);}}}
    5151
     52Other simplifications to symbolic module:
     53
     54  * get rid of >, >=.  Just use <,<=.
     55  * get rid of NEQ?  Just use NOT(EQUAL).
     56
     57
    5258
    5359== Examples ==
     
    9197    * ParameterIF newParameter(TypeIF type, String name);
    9298       * 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
    93103 * ModelIF
    94104    * void addParameter(ParameterIF parameter)
     
    103113       * equivalent to !parameters.isEmpty()
    104114 * 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   
    108116Modify methods:
    109117