Changes between Version 7 and Version 8 of C Interface


Ignore:
Timestamp:
02/22/10 10:36:19 (16 years ago)
Author:
Stephen Siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • C Interface

    v7 v8  
    101101* do we need to add char (and string?) datatypes to TASS?
    102102
     103== Pragmas ==
     104
     105Pragmas might be the best way to get the information through the front-end.
     106
     107{{{
     108l1:
     109#pragma factor(2:1) inv(i == spec.j && k == spec.s + 1)
     110while(...)
     111{
     112...
     113}
     114}}}
     115
     116{{{
     117#pragma input assume(a>=0 && a<=5) is(b)
     118int a;
     119}}}
     120