Skip to content

Commit

Permalink
Remove pre process from execution menu
Browse files Browse the repository at this point in the history
  • Loading branch information
liorko87 committed Mar 17, 2019
1 parent 82ee8e7 commit b61369d
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions Matrix/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ class MatrixMenu:
execution_menu_desc = (
'Choose task to be executed:',
[
'Preform pre process operations',
'Install Experiment',
'Execute Experiment',
'Execute Experiment with profiler',
Expand Down Expand Up @@ -243,18 +242,15 @@ def execution_menu(self):
selection = self.print_menu(*self.execution_menu_desc)

ee = e2e.E2E(self.protocol_config, self.protocol_config_path)

if selection == 1:
ee.pre_process()
elif selection == 2:
ee.install_experiment()
elif selection == 3:
elif selection == 2:
ee.execute_experiment()
elif selection == 4:
elif selection == 3:
ee.execute_experiment_callgrind()
elif selection == 5:
elif selection == 4:
ee.execute_experiment_with_latency()
elif selection == 6:
elif selection == 5:
ee.update_libscapi()

def analysis_menu(self):
Expand Down

0 comments on commit b61369d

Please sign in to comment.