From b3b6e79d241b791078ec2cc6c2a0bbe2b29c53ba Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 26 Dec 2023 23:43:23 +0100 Subject: [PATCH] Now the old classes are built by default again. --- SCsub | 2 +- mlpp/activation/activation_old.h | 1 + mlpp/convolutions/convolutions_old.h | 1 + mlpp/cost/cost_old.h | 1 + mlpp/data/data_old.h | 1 + mlpp/gauss_markov_checker/gauss_markov_checker_old.cpp | 1 + mlpp/transforms/transforms_old.cpp | 1 + 7 files changed, 7 insertions(+), 1 deletion(-) diff --git a/SCsub b/SCsub index 32cee66..dc9f23a 100644 --- a/SCsub +++ b/SCsub @@ -4,7 +4,7 @@ Import('env') module_env = env.Clone() -module_env.pmlpp_build_old_classes = False +module_env.pmlpp_build_old_classes = True module_env.pmlpp_build_tests = True if ARGUMENTS.get('pmlpp_build_old_classes', 'yes') == 'no': diff --git a/mlpp/activation/activation_old.h b/mlpp/activation/activation_old.h index fe15657..176f2aa 100644 --- a/mlpp/activation/activation_old.h +++ b/mlpp/activation/activation_old.h @@ -9,6 +9,7 @@ // #include "core/math/math_defs.h" +#include "core/int_types.h" #include diff --git a/mlpp/convolutions/convolutions_old.h b/mlpp/convolutions/convolutions_old.h index 8467957..693d272 100644 --- a/mlpp/convolutions/convolutions_old.h +++ b/mlpp/convolutions/convolutions_old.h @@ -6,6 +6,7 @@ #include #include "core/math/math_defs.h" +#include "core/int_types.h" class MLPPConvolutionsOld { public: diff --git a/mlpp/cost/cost_old.h b/mlpp/cost/cost_old.h index b98f6bc..c186a47 100644 --- a/mlpp/cost/cost_old.h +++ b/mlpp/cost/cost_old.h @@ -9,6 +9,7 @@ // #include "core/math/math_defs.h" +#include "core/int_types.h" #include diff --git a/mlpp/data/data_old.h b/mlpp/data/data_old.h index 7930f0d..4d59601 100644 --- a/mlpp/data/data_old.h +++ b/mlpp/data/data_old.h @@ -10,6 +10,7 @@ // #include "core/math/math_defs.h" +#include "core/int_types.h" #include #include diff --git a/mlpp/gauss_markov_checker/gauss_markov_checker_old.cpp b/mlpp/gauss_markov_checker/gauss_markov_checker_old.cpp index e8c090e..52252b9 100644 --- a/mlpp/gauss_markov_checker/gauss_markov_checker_old.cpp +++ b/mlpp/gauss_markov_checker/gauss_markov_checker_old.cpp @@ -6,6 +6,7 @@ #include "gauss_markov_checker_old.h" #include "../stat/stat_old.h" +#include "core/int_types.h" #include void MLPPGaussMarkovCheckerOld::checkGMConditions(std::vector eps) { diff --git a/mlpp/transforms/transforms_old.cpp b/mlpp/transforms/transforms_old.cpp index c4e13db..6cff13a 100644 --- a/mlpp/transforms/transforms_old.cpp +++ b/mlpp/transforms/transforms_old.cpp @@ -6,6 +6,7 @@ #include "transforms_old.h" #include "../lin_alg/lin_alg_old.h" +#include "core/int_types.h" #include #include #include