aboutsummaryrefslogtreecommitdiff
path: root/rumba/model.py
diff options
context:
space:
mode:
authorVincenzo Maffione <v.maffione@gmail.com>2017-04-21 22:53:04 +0200
committerVincenzo Maffione <v.maffione@gmail.com>2017-04-21 22:53:04 +0200
commitbec81866d4da33405c35c8eb4dc15d4fc5bfbfb7 (patch)
tree83376058993ea58c9d6b09e077d43581592b3eb0 /rumba/model.py
parent483579647efda210d3cc6c25b2a2e8b5ece78ad9 (diff)
downloadrumba-bec81866d4da33405c35c8eb4dc15d4fc5bfbfb7.tar.gz
rumba-bec81866d4da33405c35c8eb4dc15d4fc5bfbfb7.zip
model: compute IPCPs before the list enrollment
Diffstat (limited to 'rumba/model.py')
-rw-r--r--rumba/model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rumba/model.py b/rumba/model.py
index 1fa007c..68c6c51 100644
--- a/rumba/model.py
+++ b/rumba/model.py
@@ -528,8 +528,8 @@ class Experiment:
# order, the list of IPCPs to create, registrations, ...
def generate(self):
self.compute_dif_ordering()
- self.compute_enrollments()
self.compute_ipcps()
+ self.compute_enrollments()
@abc.abstractmethod
def install_prototype(self):