Browse Source

Minor fix (Changed function name)

tempestpy_adaptions
Lanchid 12 years ago
parent
commit
81025757f8
  1. 2
      resources/3rdparty/ltl2dstar-0.5.1/src/Makefile
  2. 2
      src/modelchecker/prctl/SparseDtmcPrctlModelChecker.h

2
resources/3rdparty/ltl2dstar-0.5.1/src/Makefile

@ -1,4 +1,4 @@
GPP = g++
GPP = clang++
#DEFINES =
#DEBUGFLAGS = -g -fno-default-inline -fkeep-inline-functions

2
src/modelchecker/prctl/SparseDtmcPrctlModelChecker.h

@ -418,7 +418,7 @@ public:
// Initialize the x vector with 1 for each element. This is the initial guess for
// the iterative solvers.
std::vector<Type> x(submatrix.getColCount(), storm::utility::constGetOne<Type>());
std::vector<Type> x(submatrix.getColumnCount(), storm::utility::constGetOne<Type>());
// Prepare the right-hand side of the equation system.
std::vector<Type> b(submatrix.getRowCount());

Loading…
Cancel
Save