| 46 | 
  | 
 | 
| 47 | 
  | 
namespace oopse { | 
| 48 | 
  | 
 | 
| 49 | 
< | 
NVT::NVT(SimInfo* info) : VelocityVerletIntegrator(info), chiTolerance_ (1e-6) { | 
| 49 | 
> | 
NVT::NVT(SimInfo* info) : VelocityVerletIntegrator(info), chiTolerance_ (1e-6), maxIterNum_(4) { | 
| 50 | 
  | 
 | 
| 51 | 
  | 
    Globals* simParams = info_->getSimParams(); | 
| 52 | 
  | 
 | 
| 53 | 
< | 
    if (simParams->getUseInitXSstate()) { | 
| 53 | 
> | 
    if (!simParams->getUseInitXSstate()) { | 
| 54 | 
  | 
        Snapshot* currSnapshot = info_->getSnapshotManager()->getCurrentSnapshot(); | 
| 55 | 
  | 
        currSnapshot->setChi(0.0); | 
| 56 | 
  | 
        currSnapshot->setIntegralOfChiDt(0.0); |