This commit is contained in:
2025-05-15 02:00:37 +03:00
parent 7c53da7199
commit 6482df0727
13 changed files with 205 additions and 206 deletions

View File

@@ -1,6 +1,6 @@
#include "Form.hpp"
size_t Form::counter_ = 0;
size_t Form::counter = 0;
double Form::Function(double, double) {
return 0;
@@ -27,13 +27,13 @@ std::pair<double, double> Form::missY(double) {
}
Form::Form() {
id_ = counter_++;
excluded_ = false;
id = counter++;
excluded = false;
bound_type = -1;
}
bool Form::Excluded() const {
return excluded_;
return excluded;
}
int Form::GetB() { return bound_type; }