From 244a53ef43643b85ebedda22a4ca2a2507c98c46 Mon Sep 17 00:00:00 2001 From: Marco Edoardo Santimaria Date: Thu, 5 Feb 2026 12:44:31 +0000 Subject: [PATCH 1/2] Fixed wrong default value for CAPIO_CL default workflow name --- capiocl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capiocl.hpp b/capiocl.hpp index 078366b..3944312 100644 --- a/capiocl.hpp +++ b/capiocl.hpp @@ -8,7 +8,7 @@ namespace capiocl { /// @brief Default workflow name for CAPIO-CL -constexpr char CAPIO_CL_DEFAULT_WF_NAME[] = "CAPIO_CL"; +constexpr char CAPIO_CL_DEFAULT_WF_NAME[] = "CAPIO"; /// @brief Namespace containing the CAPIO-CL Firing Rules namespace fireRules { From 603a679611db4fa4024ee12a05a5a680778c661f Mon Sep 17 00:00:00 2001 From: Marco Edoardo Santimaria Date: Thu, 5 Feb 2026 12:52:38 +0000 Subject: [PATCH 2/2] Bugfix on tabulation for Engine::print() --- src/Engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Engine.cpp b/src/Engine.cpp index d6a37c2..0f0e7e2 100644 --- a/src/Engine.cpp +++ b/src/Engine.cpp @@ -39,7 +39,7 @@ void capiocl::engine::Engine::print() const { printer::print(printer::CLI_LEVEL_JSON, "|" + std::string(134, '=') + "|"); std::string line = "|======|===================|===================|===================="; - line += "|========|============|============|===========|=========|==========|"; + line += "|====================|============|===========|=========|==========|"; printer::print(printer::CLI_LEVEL_JSON, line); line = "| Kind | Filename | Producer step | Consumer step | ";