aboutsummaryrefslogtreecommitdiff
path: root/rumba/model.py
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2017-06-01 17:24:25 +0200
committerVincenzo Maffione <v.maffione@gmail.com>2017-06-01 17:24:25 +0200
commitd1b49132f669cf1df4367103ebad63029793a127 (patch)
tree197965e2b2ad975efa3b317b661637ae1f65eb0e /rumba/model.py
parent9424b5f36e2ef87d4bd01b9b4e5fc83965ec33b6 (diff)
downloadrumba-d1b49132f669cf1df4367103ebad63029793a127.tar.gz
rumba-d1b49132f669cf1df4367103ebad63029793a127.zip
model: Experiment: add prototype_name()
Diffstat (limited to 'rumba/model.py')
-rw-r--r--rumba/model.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/rumba/model.py b/rumba/model.py
index 9fbda57..8631a9d 100644
--- a/rumba/model.py
+++ b/rumba/model.py
@@ -514,11 +514,15 @@ class Experiment:
@abc.abstractmethod
def install_prototype(self):
- raise Exception('run_prototype() method not implemented')
+ raise Exception('install_prototype() method not implemented')
@abc.abstractmethod
def bootstrap_prototype(self):
- raise Exception('run_prototype() method not implemented')
+ raise Exception('bootstrap_prototype() method not implemented')
+
+ @abc.abstractmethod
+ def prototype_name(self):
+ raise Exception('prototype_name() method not implemented')
def swap_in(self):
# Realize the experiment testbed (testbed-specific)