std::cout<<"Obtaining the fixpoint solution took "<<std::chrono::duration_cast<std::chrono::milliseconds>(calcEndTime-calcStartTime).count()<<"ms."<<std::endl;
//std::cout << "Obtaining the fixpoint solution took " << std::chrono::duration_cast<std::chrono::milliseconds>(calcEndTime - calcStartTime).count() << "ms." << std::endl;
std::cout<<"Used a total of "<<globalIterations<<" iterations with a maximum of "<<globalIterations<<" iterations in a single block."<<std::endl;
//std::cout << "Used a total of " << globalIterations << " iterations with a maximum of " << globalIterations << " iterations in a single block." << std::endl;
// Check if the solver converged and issue a warning otherwise.
if(converged){
@ -157,7 +157,7 @@ namespace storm {
LOG4CPLUS_INFO(logger,"Optimized SCC Decomposition, originally "<<topologicalSort.size()<<" SCCs, optimized to "<<optimalSccs.size()<<" SCCs.");
std::cout<<"Computing the SCC Decomposition took "<<std::chrono::duration_cast<std::chrono::milliseconds>(sccEndTime-sccStartTime).count()<<"ms."<<std::endl;
//std::cout << "Computing the SCC Decomposition took " << std::chrono::duration_cast<std::chrono::milliseconds>(sccEndTime - sccStartTime).count() << "ms." << std::endl;
throwstorm::exceptions::InvalidStateException()<<"The useGpu Flag of a SCC was set, but this version of StoRM does not support CUDA acceleration. Internal Error!";
#endif
}else{
std::cout<<"WARNING: Using CPU based TopoSolver! (double)"<<std::endl;
//std::cout << "WARNING: Using CPU based TopoSolver! (double)" << std::endl;
LOG4CPLUS_INFO(logger,"Performance Warning: Using CPU based TopoSolver! (double)");
std::cout<<"Used a total of "<<globalIterations<<" iterations with a maximum of "<<localIterations<<" iterations in a single block."<<std::endl;
//std::cout << "Used a total of " << globalIterations << " iterations with a maximum of " << localIterations << " iterations in a single block." << std::endl;
// Check if the solver converged and issue a warning otherwise.
std::cout<<"Obtaining the fixpoint solution took "<<std::chrono::duration_cast<std::chrono::milliseconds>(calcEndTime-calcStartTime).count()<<"ms."<<std::endl;
//std::cout << "Obtaining the fixpoint solution took " << std::chrono::duration_cast<std::chrono::milliseconds>(calcEndTime - calcStartTime).count() << "ms." << std::endl;