[regression] Add a comment regarding the maximal number of coefficients

of regression
This commit is contained in:
Émilie Feral
2018-08-06 15:58:20 +02:00
parent 60d6ca5f0c
commit 837da498cf

View File

@@ -24,7 +24,7 @@ public:
Logistic = 8
};
static constexpr int k_numberOfModels = 9;
static constexpr int k_maxNumberOfCoefficients = 5;
static constexpr int k_maxNumberOfCoefficients = 5; // This has to verify: k_maxNumberOfCoefficients < Matrix::k_maxNumberOfCoefficients
virtual ~Model() = default;
virtual Poincare::ExpressionLayout * layout() = 0;
// simplifiedExpression is overrided only by Models that override levelSet