aboutsummaryrefslogtreecommitdiff
path: root/rhumba.py
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2017-02-06 21:33:04 +0100
committerVincenzo Maffione <v.maffione@gmail.com>2017-02-06 21:33:04 +0100
commit64782b938b12a9c0f7b7bb7a152091f62e4db3a6 (patch)
treea10243885e19213dcee3cd132990b1c96b7e755d /rhumba.py
parent896c79348ef28d907fcb571995c54c947f4b5c75 (diff)
downloadrumba-64782b938b12a9c0f7b7bb7a152091f62e4db3a6.tar.gz
rumba-64782b938b12a9c0f7b7bb7a152091f62e4db3a6.zip
rhumba: realize --> swap_in, fix double definition in IRATI class
Diffstat (limited to 'rhumba.py')
-rwxr-xr-xrhumba.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rhumba.py b/rhumba.py
index 688985c..1ffd092 100755
--- a/rhumba.py
+++ b/rhumba.py
@@ -292,8 +292,8 @@ class Experiment:
def del_node(self, node):
self.nodes.remove(node)
- # Realize the experiment topology, using a testbed-specific setup
- def realize(self):
+ # Realize the experiment, using a testbed-specific setup
+ def swap_in(self):
self.links = get_links(self.nodes)
self.testbed.create_experiment(self.nodes, self.links)