X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cef59d338bade8ea4224fbe3eebb9ffe5bf08c4d..12ef73b3c1b6ef7bb9f2cf8031edf5e99e6c27a1:/examples/python/task-switch-host/task-switch-host.py diff --git a/examples/python/task-switch-host/task-switch-host.py b/examples/python/task-switch-host/task-switch-host.py index 53ba3f2374..b2904c3f56 100644 --- a/examples/python/task-switch-host/task-switch-host.py +++ b/examples/python/task-switch-host/task-switch-host.py @@ -77,13 +77,13 @@ if __name__ == '__main__': # Add a function to be called when tasks end for log purpose Task.on_completion_cb(callback) - # Add a function to be called before each executions of comm0 + # Add a function to be called before each firing of comm0 # This function modifies the graph of tasks by adding or removing # successors to comm0 comm0.on_this_start_cb(lambda t: switch(t, [jupiter, fafard], [exec1,exec2])) - # Enqueue two executions for task exec1 - comm0.enqueue_execs(4) + # Enqueue two firings for task exec1 + comm0.enqueue_firings(4) # runs the simulation e.run()