ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/MinimizerBase.hpp
(Generate patch)

Comparing trunk/OOPSE/libmdtools/MinimizerBase.hpp (file contents):
Revision 970 by tim, Tue Jan 20 20:34:12 2004 UTC vs.
Revision 975 by tim, Wed Jan 21 22:16:00 2004 UTC

# Line 13 | Line 13 | class MinimizerBase{
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();

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines