main
Brett 2025-01-08 18:50:18 -05:00
parent 479693bae0
commit cc76244156
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25) cmake_minimum_required(VERSION 3.25)
project(COSC-4P80-Final-Project VERSION 0.0.14) project(COSC-4P80-Final-Project VERSION 0.0.15)
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)

View File

@ -43,7 +43,7 @@ namespace fp
void run_python_line_graph(const std::string& title, const std::string& output_file, const std::string& csv1, const std::string& csv2, void run_python_line_graph(const std::string& title, const std::string& output_file, const std::string& csv1, const std::string& csv2,
const blt::size_t pos_forward, const blt::size_t pos_deep) const blt::size_t pos_forward, const blt::size_t pos_deep)
{ {
const auto command = "python3 " + python_dual_stacked_graph_program + " '" + title + "' '" + output_file + "' '" + csv1 + "' '" + csv2 + "' " const auto command = "python3 '" + python_dual_stacked_graph_program + "' '" + title + "' '" + output_file + "' '" + csv1 + "' '" + csv2 + "' "
+ std::to_string(pos_forward) + " " + std::to_string(pos_deep); + std::to_string(pos_forward) + " " + std::to_string(pos_deep);
BLT_TRACE("Running %s", command.c_str()); BLT_TRACE("Running %s", command.c_str());
std::system(command.c_str()); std::system(command.c_str());