diff --git a/src/builder/ExplicitDFTModelBuilderApprox.cpp b/src/builder/ExplicitDFTModelBuilderApprox.cpp index b9eda6308..0729fec59 100644 --- a/src/builder/ExplicitDFTModelBuilderApprox.cpp +++ b/src/builder/ExplicitDFTModelBuilderApprox.cpp @@ -17,7 +17,7 @@ namespace storm { } template - ExplicitDFTModelBuilderApprox::MatrixBuilder::MatrixBuilder(bool canHaveNondeterminism) : mappingOffset(0), stateRemapping(), currentRowGroup(0), currentRow(0) { + ExplicitDFTModelBuilderApprox::MatrixBuilder::MatrixBuilder(bool canHaveNondeterminism) : mappingOffset(0), stateRemapping(), currentRowGroup(0), currentRow(0), canHaveNondeterminism((canHaveNondeterminism)) { // Create matrix builder builder = storm::storage::SparseMatrixBuilder(0, 0, 0, false, canHaveNondeterminism, 0); } diff --git a/src/builder/ExplicitDFTModelBuilderApprox.h b/src/builder/ExplicitDFTModelBuilderApprox.h index 3f8af519f..b8658c6ce 100644 --- a/src/builder/ExplicitDFTModelBuilderApprox.h +++ b/src/builder/ExplicitDFTModelBuilderApprox.h @@ -114,9 +114,6 @@ namespace storm { return currentRowGroup; } - // Flag indicating if row groups are needed. - bool canHaveNondeterminism; - // Matrix builder. storm::storage::SparseMatrixBuilder builder; @@ -134,6 +131,9 @@ namespace storm { // Index of the current row. StateType currentRow; + + // Flag indicating if row groups are needed. + bool canHaveNondeterminism; }; public: