X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0d72d7aa06056be3f8b746e29a141d0e3a474fdf..5916afe8cc535a67f2dd5d233080c3f005ba5a51:/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 f8d8dfa942..3bd21e66e5 100644 --- a/examples/python/task-switch-host/task-switch-host.py +++ b/examples/python/task-switch-host/task-switch-host.py @@ -43,13 +43,13 @@ def parse(): ) return parser.parse_args() -def callback( t): - print(f'[{Engine.clock}] { t} finished ({ t.count})') +def callback(t): + print(f'[{Engine.clock}] {t} finished ({t.count})') -def switch( t, hosts, execs): - comm0.destination = hosts[ t.count % 2] - comm0.remove_successor(execs[ t.count % 2 - 1]) - comm0.add_successor(execs[ t.count % 2]) +def switch(t, hosts, execs): + comm0.destination = hosts[t.count % 2] + comm0.remove_successor(execs[t.count % 2 - 1]) + comm0.add_successor(execs[t.count % 2]) if __name__ == '__main__': args = parse() @@ -81,7 +81,7 @@ if __name__ == '__main__': # Add a function to be called before each executions of comm0 # This function modifies the graph of tasks by adding or removing # successors to comm0 - comm0.on_this_start(lambda t: switch( t, [jupiter, fafard], [exec1,exec2])) + comm0.on_this_start(lambda t: switch(t, [jupiter, fafard], [exec1,exec2])) # Enqueue two executions for task exec1 comm0.enqueue_execs(4)