silly
parent
22befde2f5
commit
961fcfd714
|
@ -1,5 +1,5 @@
|
||||||
cmake_minimum_required(VERSION 3.25)
|
cmake_minimum_required(VERSION 3.25)
|
||||||
project(COSC-4P80-Final-Project VERSION 0.0.21)
|
project(COSC-4P80-Final-Project VERSION 0.0.22)
|
||||||
|
|
||||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||||
|
|
2
graph.py
2
graph.py
|
@ -48,4 +48,4 @@ if __name__ == "__main__":
|
||||||
position = sys.argv[5]
|
position = sys.argv[5]
|
||||||
position2 = sys.argv[6]
|
position2 = sys.argv[6]
|
||||||
|
|
||||||
plot_stacked_graph(title, output, csv_file1, csv_file2, position, position2)
|
plot_stacked_graph(title, output, csv_file1, csv_file2, int(position), int(position2))
|
Loading…
Reference in New Issue