01-kitchen_sink_viz_ascii_iter.mdl 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /****************************************************************************
  2. * Test 01: Nearly every parser option.
  3. *
  4. * A mostly non-sensical test which simply exercises the parser checking for
  5. * anomalous behavior. This test should not provoke any errors, provided
  6. * that counting-5.txt does not exist in its reaction output directory.
  7. * (This is to test the "no overwrite" output mode for counting.)
  8. *
  9. * This variant produces ASCII mode viz output, specified using the
  10. * ITERATION_LIST notation.
  11. *
  12. * Author: Jed Wing <[email protected]>
  13. * Date: 2008-04-04
  14. ****************************************************************************/
  15. basename = "01-kitchen_sink_viz_ascii_iter"
  16. INCLUDE_FILE = "defaults.mdl"
  17. INCLUDE_FILE = "common.mdl"
  18. VIZ_DATA_OUTPUT
  19. {
  20. MODE = ASCII
  21. MOLECULE_FILE_PREFIX = vizdir & "molecules"
  22. ITERATION_LIST = [[1 TO 100 STEP 10], [101 TO 1000 STEP 100], [1001 TO 10000 STEP 1000]]
  23. STATE_VALUES
  24. {
  25. s_g_5 = 4
  26. s_v_3 = 3
  27. /* Shouldn't the following be an error?
  28. world.big_object.box1[r2] = 9
  29. world.big_object.box1[r3] = 1
  30. world.big_object.box1[r4] = 2
  31. */
  32. }
  33. }