Changeset 1116 for framspy/frams-test.py


Ignore:
Timestamp:
03/27/21 03:42:04 (3 years ago)
Author:
Maciej Komosinski
Message:

Improved performance significantly by moving the step-by-step simulation loop from python to FramScript?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • framspy/frams-test.py

    r1114 r1116  
    9393frams.Simulator.init()
    9494frams.Simulator.start()
    95 step = frams.Simulator.step  # cache reference to avoid repeated lookup in the loop (just for performance)
    96 while frams.Simulator.running._int():  # standard-eval.expdef sets running to 0 when the evaluation is complete
    97         step()
     95# step = frams.Simulator.step  # cache reference to avoid repeated lookup in the loop (just for performance)
     96# while frams.Simulator.running._int():  # standard-eval.expdef sets running to 0 when the evaluation is complete
     97#       step()
     98frams.Simulator.eval("while(Simulator.running) Simulator.step();")  # loop in FramScript much faster than loop in python
    9899for g in frams.GenePools[0]:  # loop over all genotypes, even though we know we added only one
    99100        serialized_dict = frams.String.serialize(g.data[frams.ExpProperties.evalsavedata._value()])
Note: See TracChangeset for help on using the changeset viewer.