This repository was archived by the owner on May 18, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ class Nox : public IAlgLoopSolver
3939 void printLogger ();
4040 void divisionbyzerohandling (double const * const y0);
4141 bool CheckWhetherSolutionIsNearby (double const * const y);
42+ void CheckWhetherSolutionIsNearbyWrapper ();
4243 bool isdivisionbyzeroerror (const std::exception &ex);
4344 void modifySolverParameters (const Teuchos::RCP<Teuchos::ParameterList> solverParametersPtr,const int iter);
4445 Teuchos::RCP<Teuchos::ParameterList> setLocaParams ();
Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ void Nox::initialize()
102102
103103
104104 // Set up the status tests
105- _statusTestNormF = Teuchos::rcp (new NOX::StatusTest::NormF (_noxsettings ->getRtol ()));
106- _statusTestMaxIters = Teuchos::rcp (new NOX::StatusTest::MaxIters (_noxsettings ->getNewtMax ()));
105+ _statusTestNormF = Teuchos::rcp (new NOX::StatusTest::NormF (_noxSettings ->getRtol ()));
106+ _statusTestMaxIters = Teuchos::rcp (new NOX::StatusTest::MaxIters (_noxSettings ->getNewtMax ()));
107107 _statusTestStagnation = Teuchos::rcp (new NOX::StatusTest::Stagnation (15 ,0.99 ));
108108 _statusTestDivergence = Teuchos::rcp (new NOX::StatusTest::Divergence (1.0e13 ));
109109 // _statusTestSgnChange = Teuchos::rcp(new NOX::StatusTest::SgnChange(5.0e-7));
You can’t perform that action at this time.
0 commit comments