You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.1 KiB
21 lines
1.1 KiB
#!/bin/bash
|
|
|
|
# basic model
|
|
|
|
prism task_graph.prism task_graph.props -prop 1 -const sleep=0.25 -gridresolution 2
|
|
prism task_graph.prism task_graph.props -prop 1 -const sleep=0.5 -gridresolution 2
|
|
prism task_graph.prism task_graph.props -prop 1 -const sleep=0.75 -gridresolution 2
|
|
|
|
prism task_graph.prism task_graph.props -prop 2 -const sleep=0.25 -gridresolution 2
|
|
prism task_graph.prism task_graph.props -prop 2 -const sleep=0.5 -gridresolution 2
|
|
prism task_graph.prism task_graph.props -prop 2 -const sleep=0.75 -gridresolution 2
|
|
|
|
# random delay model
|
|
|
|
prism task_graph_prob.prism task_graph.props -prop 1 -const sleep=0.25 -gridresolution 2
|
|
prism task_graph_prob.prism task_graph.props -prop 1 -const sleep=0.5 -gridresolution 2
|
|
prism task_graph_prob.prism task_graph.props -prop 1 -const sleep=0.75 -gridresolution 2
|
|
|
|
prism task_graph_prob.prism task_graph.props -prop 2 -const sleep=0.25 -gridresolution 2
|
|
prism task_graph_prob.prism task_graph.props -prop 2 -const sleep=0.5 -gridresolution 2
|
|
prism task_graph_prob.prism task_graph.props -prop 2 -const sleep=0.75 -gridresolution 2
|