We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ce5e03 commit 3f973d5Copy full SHA for 3f973d5
src/libcadet/SimulatorImpl.cpp
@@ -560,7 +560,7 @@ namespace cadet
560
IDASetMaxNonlinIters(_idaMemBlock, _maxNewtonIter);
561
IDASetMaxErrTestFails(_idaMemBlock, _maxErrorTestFail);
562
IDASetMaxConvFails(_idaMemBlock, _maxConvTestFail);
563
- //IDASetSensMaxNonlinIters(_idaMemBlock, _maxNewtonIterSens);
+
564
565
566
// Allocate memory for AD if required
@@ -646,6 +646,9 @@ namespace cadet
646
647
// Activate sensitivity error control
648
IDASetSensErrCon(_idaMemBlock, _sensErrorTestEnabled);
649
650
+ // Set Maximum of Sens Non lin Iters
651
+ IDASetSensMaxNonlinIters(_idaMemBlock, _maxNewtonIterSens);
652
}
653
654
void Simulator::initializeFwdSensitivities()
0 commit comments