diff --git a/CMakeLists.txt b/CMakeLists.txt index b293e7e..36e8849 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ 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_UBSAN "Enable the ub sanitizer" OFF) diff --git a/graph.py b/graph.py index 9039994..c0c1f02 100644 --- a/graph.py +++ b/graph.py @@ -48,4 +48,4 @@ if __name__ == "__main__": position = sys.argv[5] position2 = sys.argv[6] - plot_stacked_graph(title, output, csv_file1, csv_file2, position, position2) \ No newline at end of file + plot_stacked_graph(title, output, csv_file1, csv_file2, int(position), int(position2)) \ No newline at end of file