Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'xbt_random' into 'master'
[simgrid.git] / examples / python / exec-dvfs / exec-dvfs.py
index 3d90f99..e712791 100644 (file)
@@ -3,11 +3,11 @@
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the license (GNU LGPL) which comes with this package.
 
+from simgrid import Actor, Engine, Host, this_actor
 import sys
-from simgrid import *
 
 
-class dvfs:
+class Dvfs:
     def __call__(self):
         workload = 100E6
         host = this_actor.get_host()
@@ -50,7 +50,7 @@ if __name__ == '__main__':
         raise AssertionError("Usage: exec-dvfs.py platform_file [other parameters] (got {:d} params)".format(len(sys.argv)))
 
     e.load_platform(sys.argv[1])
-    Actor.create("dvfs_test", Host.by_name("MyHost1"), dvfs())
-    Actor.create("dvfs_test", Host.by_name("MyHost2"), dvfs())
+    Actor.create("dvfs_test", Host.by_name("MyHost1"), Dvfs())
+    Actor.create("dvfs_test", Host.by_name("MyHost2"), Dvfs())
 
     e.run()