(sim, todo)
| 5092 | """ |
| 5093 | |
| 5094 | def _after_s_and_t(sim, todo): |
| 5095 | time = sim.fields.last_source_time() + t - sim.round_time() |
| 5096 | if sim.round_time() >= time: |
| 5097 | for func in step_funcs: |
| 5098 | _eval_step_func(sim, func, todo) |
| 5099 | |
| 5100 | return _after_s_and_t |
| 5101 |
nothing calls this directly
no test coverage detected