Renaming
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user