Skip to content

Commit 19f8ade

Browse files
committed
Add plotting framework
1 parent 1565e6a commit 19f8ade

File tree

5 files changed

+740
-0
lines changed

5 files changed

+740
-0
lines changed

plot/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/.idea
2+
/venv/
3+
/out/
4+
5+
*.pyc

plot/main.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import plot
2+
3+
if __name__ == '__main__':
4+
5+
# plot.PlotBasic('ShowProblem', 'BasicNetwork', 90)
6+
# plot.PlotV1('ShowProblemV1', 'V1Network', 90)
7+
8+
plot.PlotBasic('Scenario1', 'Scenario1', 90)
9+
plot.PlotV1('Scenario1V1', 'Scenario1V1', 90)
10+
11+
# s = plot.Serial20('ShowProblem', 'BasicNetwork', 90)
12+
# s.plot_issue()
13+
#
14+
# s = plot.Serial20('Scenario1', 'Scenario1', 90)
15+
# s.plot_inboxes()
16+
# s.plot_throughput()
17+
# s.plot_available_processing()

0 commit comments

Comments
 (0)