Ignore:
Timestamp:
10/09/15 16:42:23 (9 years ago)
Author:
rlacroix
Message:

Add new comparisons operators.

Those new operators return 0.0 if the comparison is false, 1.0 if it is true.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/parse_expr/lex_parser.lex

    r642 r728  
    6060"^"  return POWER; 
    6161 
     62"==" return EQ; 
     63"<"  return LT; 
     64">"  return GT; 
     65"<=" return LE; 
     66">=" return GE; 
     67 
    6268"("  return LEFT_PARENTHESIS; 
    6369")"  return RIGHT_PARENTHESIS; 
Note: See TracChangeset for help on using the changeset viewer.