From a4ae226e57ef7580974e9e6fb5b977ee025b1a45 Mon Sep 17 00:00:00 2001 From: PBerger Date: Mon, 24 Feb 2014 19:59:05 +0100 Subject: [PATCH] Removed debug output from our debugging session Former-commit-id: 43a0c63a6cd907e5c871ceb089d33435325d23bd --- ...IterationNondeterministicLinearEquationSolver.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp b/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp index 2d1573f94..0ecc48e2e 100644 --- a/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp +++ b/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp @@ -56,10 +56,7 @@ namespace storm { std::cout << std::endl; } - std::cout << A << std::endl; - std::cout << nondeterministicChoiceIndices << std::endl; - std::cout << b << std::endl; - + storm::models::NonDeterministicMatrixBasedPseudoModel pseudoModel(A, nondeterministicChoiceIndices); //storm::storage::StronglyConnectedComponentDecomposition sccDecomposition(*static_cast*>(&pseudoModel), false, false); storm::storage::StronglyConnectedComponentDecomposition sccDecomposition(pseudoModel, false, false); @@ -123,7 +120,6 @@ namespace storm { std::vector sccSubNondeterministicChoiceIndices(sccSubmatrix.getColumnCount() + 1); sccSubNondeterministicChoiceIndices.at(0) = 0; - std::cout << "subb: " << sccSubB << std::endl; // Preprocess all dependant states // Remove outgoing transitions and create the ChoiceIndices uint_fast64_t innerIndex = 0; @@ -145,10 +141,6 @@ namespace storm { } ++outerIndex; } - - std::cout << sccSubmatrix << std::endl; - std::cout << sccSubNondeterministicChoiceIndices << std::endl; - std::cout << sccSubB << std::endl; // For the current SCC, we need to perform value iteration until convergence. localIterations = 0; @@ -191,11 +183,9 @@ namespace storm { // The Result of this SCC has to be taken back into the main result vector innerIndex = 0; for (uint_fast64_t state: scc) { - std::cout << state << " = " << currentX->at(innerIndex) << std::endl; x.at(state) = currentX->at(innerIndex); ++innerIndex; } - std::cout << x << std::endl; // Since the pointers for swapping in the calculation point to temps they should not be valide anymore currentX = nullptr;