diff --git a/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp b/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp index 8a09d9e7d..c3e543433 100644 --- a/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp +++ b/src/solver/TopologicalValueIterationNondeterministicLinearEquationSolver.cpp @@ -46,7 +46,8 @@ namespace storm { template<> void TopologicalValueIterationNondeterministicLinearEquationSolver::solveEquationSystem(bool minimize, storm::storage::SparseMatrix const& A, std::vector& x, std::vector const& b, std::vector* multiplyResult, std::vector* newX) const { // For testing only - LOG4CPLUS_INFO(logger, ">>> Using GPU based model checker WITH FLOAT! <<<"); + std::cout << "<<< Using CUDA-FLOAT Kernels >>>" << std::endl; + LOG4CPLUS_INFO(logger, "<<< Using CUDA-FLOAT Kernels >>>"); // Now, we need to determine the SCCs of the MDP and perform a topological sort. std::vector const& nondeterministicChoiceIndices = A.getRowGroupIndices(); @@ -228,7 +229,6 @@ namespace storm { void TopologicalValueIterationNondeterministicLinearEquationSolver::solveEquationSystem(bool minimize, storm::storage::SparseMatrix const& A, std::vector& x, std::vector const& b, std::vector* multiplyResult, std::vector* newX) const { #ifndef GPU_USE_DOUBLE - std::cout << "<<< Using CUDA-FLOAT Kernels >>>" << std::endl; TopologicalValueIterationNondeterministicLinearEquationSolver tvindles(precision, maximalNumberOfIterations, relative); storm::storage::SparseMatrix new_A = A.toValueType(); @@ -241,9 +241,9 @@ namespace storm { x.at(i) = new_x.at(i); } #else - std::cout << "<<< Using CUDA-FLOAT Kernels >>>" << std::endl; // For testing only - LOG4CPLUS_INFO(logger, ">>> Using GPU based model checker! <<<"); + std::cout << "<<< Using CUDA-DOUBLE Kernels >>>" << std::endl; + LOG4CPLUS_INFO(logger, "<<< Using CUDA-DOUBLE Kernels >>>"); // Now, we need to determine the SCCs of the MDP and perform a topological sort. std::vector const& nondeterministicChoiceIndices = A.getRowGroupIndices();