Skip to content

Commit

Permalink
Reset initial bound to D in EulerBounder after refining the step size,
Browse files Browse the repository at this point in the history
…fix #620
  • Loading branch information
lgeretti committed Jun 1, 2021
1 parent d9792fb commit 8909042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/solvers/bounder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Pair<StepSizeType,UpperBoxType> EulerBounder::_compute(ValidatedVectorMultivaria
UpperBoxType B=D;
Bool success=false;
while(!success) {
B=this->_formula(f,D,T,A,B,BOX_RADIUS_WIDENING,INITIAL_STARTING_WIDENING);
B=this->_formula(f,D,T,A,D,BOX_RADIUS_WIDENING,INITIAL_STARTING_WIDENING);
for(CounterType i=0; i<EXPANSION_STEPS; ++i) {
UpperBoxType Br=this->_refinement(f,D,T,A,B);
if(not definitely(is_bounded(Br))) {
Expand Down

0 comments on commit 8909042

Please sign in to comment.