From ccc7fd8e04691c5d3631cafc44dcf3e96f8d0b22 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Thu, 2 Oct 2025 11:30:04 -0400 Subject: [PATCH] Rename: Concept=>Cologex --- smocore/include/{concept.h => cologex.h} | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) rename smocore/include/{concept.h => cologex.h} (81%) diff --git a/smocore/include/concept.h b/smocore/include/cologex.h similarity index 81% rename from smocore/include/concept.h rename to smocore/include/cologex.h index cd3052b..6587ef1 100644 --- a/smocore/include/concept.h +++ b/smocore/include/cologex.h @@ -1,5 +1,5 @@ -#ifndef _CONCEPT_H -#define _CONCEPT_H +#ifndef _COMBINATORIAL_LOGIC_EXPRESSION_H +#define _COMBINATORIAL_LOGIC_EXPRESSION_H #include #include @@ -7,7 +7,7 @@ #include namespace smo { -namespace concepts { +namespace cologex { class Comparator : public MentalEntity, public logic::Operand @@ -43,9 +43,10 @@ public: }; -typedef CombinatorialLogicExpression Concept; +typedef CombinatorialLogicExpression Cologex; +typedef CombinatorialLogicExpression Clast; -} // namespace concept +} // namespace cologex } // namespace smo #endif