ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/integrators/NVE.cpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/integrators/NVE.cpp (file contents):
Revision 1757 by tim, Thu Nov 18 23:26:27 2004 UTC vs.
Revision 1758 by tim, Fri Nov 19 17:56:32 2004 UTC

# Line 34 | Line 34 | namespace oopse {
34   #include "integrators/NVE.hpp"
35   namespace oopse {
36  
37 + Integrator* createNVE(SimInfo* info) {
38 +    return new NVE(info);
39 + }
40 +
41   //register the creator to IntegratorFactory
42 < REGISTER_CREATOR(IntegratorFactory, "NVE", NVE);
42 > IntegratorFactory::getInstance()->registerIntegrator("NVE", createNVE);
43  
44   NVE::NVE(SimInfo* info) : VelocityVerletIntegrator(info){
45  
# Line 92 | Line 96 | void NVE::moveA(){
96          }
97      } //end for(mol = info_->beginMolecule(i))
98      
99 <    constraintAlgorithm->doConstrainA();
99 >    //constraintAlgorithm->doConstrainA();
100      
101   }    
102  
# Line 140 | Line 144 | void NVE::moveB(){
144      } //end for(mol = info_->beginMolecule(i))
145    
146  
147 <    constraintAlgorithm->doConstrainB();
147 >    //constraintAlgorithm->doConstrainB();
148  
149   }
150  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines