From f9d57b357958a2bf512662de11cf4539dd9162e6 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 8 Jan 2025 19:15:41 -0500 Subject: [PATCH] graph changes --- CMakeLists.txt | 2 +- graph.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7cc37d7..5ceb0b3 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.18) +project(COSC-4P80-Final-Project VERSION 0.0.19) 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 fee20a3..9039994 100644 --- a/graph.py +++ b/graph.py @@ -20,9 +20,6 @@ def plot_stacked_graph(title, output, csv_file1, csv_file2, position, position2) ax.plot(x1, y1, label=f"{csv_file1}") ax.plot(x2, y2, label=f"{csv_file2}") - - ax.fill_between(x1, y1, alpha=0.5) - ax.fill_between(x2, y2, alpha=0.5) if position < 2 ** 32: ax.axvline(x=position, color='red', linestyle='--')