Changes between Version 16 and Version 17 of C Interface
- Timestamp:
- 06/24/10 11:15:05 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
C Interface
v16 v17 129 129 Answer: Here is a proposed list: 130 130 131 * {{{#pragma TASS assert <TASS expression>}}}131 * `#pragma TASS assert <TASS expression>` 132 132 * verify that the expression is true; report an error if it is not 133 133 * {{{#pragma TASS assume <TASS expression>}}} … … 146 146 * declares the following function to be abstract (a pure mathematical side-effect free function, like sin(x)) 147 147 148 To combine an input with assumption: 149 {{{ 150 #pragma input assume N>0 && N*N<M 151 int N; 152 }}} 153 148 154 Grammar of TASS expressions: 149 155
