Browse Source

removed default parameter

tempestpy_adaptions
Stefan Pranger 4 years ago
parent
commit
47bc2ae677
  1. 2
      src/storm/solver/AcyclicMinMaxLinearEquationSolver.cpp

2
src/storm/solver/AcyclicMinMaxLinearEquationSolver.cpp

@ -85,7 +85,7 @@ namespace storm {
}
// Since a topological ordering is guaranteed, we can solve the equations with a single matrix-vector Multiplication step.
this->multiplier->multiplyAndReduceGaussSeidel(env, dir, *xPtr, bPtr, choicesPtr, true);
this->multiplier->multiplyAndReduceGaussSeidel(env, dir, *xPtr, bPtr, choicesPtr);
if (rowGroupOrdering) {
// Restore the correct input-order for the output vector

Loading…
Cancel
Save