Browse Source

properly resizing weights vector in Fox-Glynn if the right bound is moved further due to the desired accuracy

tempestpy_adaptions
dehnert 7 years ago
parent
commit
dd864c05e0
  1. 1
      src/storm/utility/numerical.cpp

1
src/storm/utility/numerical.cpp

@ -229,6 +229,7 @@ namespace storm {
} else { } else {
t = j; t = j;
result.right = j + result.left; result.right = j + result.left;
result.weights.resize(result.right - result.left + 1);
// It's time to compute W. // It's time to compute W.
break; break;

Loading…
Cancel
Save