-
Notifications
You must be signed in to change notification settings - Fork 72
Expression Langauge
Matt Larsen edited this page Aug 25, 2019
·
14 revisions
- integer
- double
- mesh variables: strings, e.g.
"pressure"indicate a variable defined on the mesh. - bool: Note: only produced as the result of a comparison. Not sure we need keywords
trueandfalsesince I don't see how we would use it in practice.
- Math:
-,+,*,/,% - Comparison:
==,>=,<=,!=,>,< - Boolean: not implemented. We had the goal of being python like so maybe these should be
and,or, andnot, as opposed to&&,||, and!. For JIT, we can just substitute whatever we need back in. Note:notis a unary operator.
-