| 13 |
|
void double setFTol(double tol); |
| 14 |
|
void double setGradTol(double gradTol); |
| 15 |
|
|
| 16 |
< |
void setStepSize(double step); |
| 17 |
< |
double getStepSize(); |
| 16 |
> |
void setStepSize(double step) { stepSize = step;} |
| 17 |
> |
double getStepSize() { return stepSize;} |
| 18 |
|
|
| 19 |
< |
void setMaxStep(); |
| 20 |
< |
double getMaxStep(); |
| 19 |
> |
void setMaxStep(double step) { maxStep = step;} |
| 20 |
> |
double getMaxStep() {return maxStep;} |
| 21 |
|
|
| 22 |
< |
const string& getMethodName(); |
| 23 |
< |
void setMethodName(const string& name); |
| 22 |
> |
const string& getMethodName() {return methodName;} |
| 23 |
> |
void setMethodName(const string& name) { methodName = name;} |
| 24 |
|
|
| 25 |
|
void setObjFunctor(); |
| 26 |
|
void getObjFunctor(); |