1234567891011121314151617181920 |
- /****************************************************************************
- * Parser error 069: Column header with wildcard expansion
- *
- * Expect an error on the line:
- * COUNT[m, WORLD] * TRIGGER[m, WORLD]
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- TIME_STEP = 1e-6
- countdir = "dat/invalid-069/"
- DEFINE_MOLECULE m { DIFFUSION_CONSTANT_3D = 1e-6 }
- REACTION_DATA_OUTPUT
- {
- {
- COUNT["*", WORLD] : "maybe lots of molecules"
- } => countdir & "counting-1.txt"
- }
|