01-kitchen_sink_viz_dx_iter.mdl 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 DX 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_dx_iter"
  16. INCLUDE_FILE = "defaults.mdl"
  17. INCLUDE_FILE = "common.mdl"
  18. VIZ_DATA_OUTPUT
  19. {
  20. MODE = DX
  21. MOLECULE_FILE_PREFIX = vizdir & "molecules"
  22. OBJECT_FILE_PREFIXES
  23. {
  24. world = vizdir & "objects_a"
  25. world2 = vizdir & "objects_b"
  26. }
  27. ITERATION_LIST = [[1 TO 100 STEP 10], [101 TO 1000 STEP 100], [1001 TO 10000 STEP 1000]]
  28. STATE_VALUES
  29. {
  30. s_g_5 = 4
  31. s_v_3 = 3
  32. world.big_object.box1[r2] = 9
  33. world.big_object.box1[r3] = 1
  34. world.big_object.box1[r4] = 2
  35. }
  36. }