2020-11-15 00:20:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Clean up previous graphs
|
|
|
|
rm /home/jake/repos/dissertation/4-dissertation/Evaluation/Figs/graphs/* || true
|
|
|
|
rm /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/* || true
|
|
|
|
|
|
|
|
# Copy graphs for evaluation
|
2020-12-11 21:26:34 +00:00
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/I* /home/jake/repos/dissertation/4-dissertation/Evaluation/Figs/graphs/
|
2020-12-12 10:37:05 +00:00
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/TI* /home/jake/repos/dissertation/4-dissertation/Evaluation/Figs/graphs/
|
2020-12-11 21:26:34 +00:00
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/TOEyS0-R0-2R1-2T10S1-R0-1R1-2T10S2-R0-1R1-1T10.png /home/jake/repos/dissertation/4-dissertation/Evaluation/Figs/graphs/
|
2020-11-15 00:20:39 +00:00
|
|
|
|
|
|
|
# Copy graphs for outbound graphs appendix
|
2020-12-11 21:26:34 +00:00
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/O* /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/
|
2020-12-12 10:37:05 +00:00
|
|
|
cp /home/jake/repos/dissertation/3-evaluation/output/TO* /home/jake/repos/dissertation/4-dissertation/OutboundGraphs/Figs/graphs/
|
2020-11-15 00:20:39 +00:00
|
|
|
|