// At this point, the result of the imprecise value iteration is stored in the (imprecise) current x.
std::cout<<"solution"<<std::endl;
uint64_tpos=0;
for(autoconst&e:*currentX){
std::cout<<"["<<pos<<"] "<<e<<std::endl;
++pos;
}
std::cout<<"rational b"<<std::endl;
pos=0;
for(autoconst&e:rationalB){
std::cout<<"["<<pos<<"] "<<e<<std::endl;
++pos;
}
std::cout<<"b"<<std::endl;
pos=0;
for(autoconst&e:b){
std::cout<<"["<<pos<<"] "<<e<<std::endl;
++pos;
}
++valueIterationInvocations;
STORM_LOG_TRACE("Completed "<<valueIterationInvocations<<" power iteration invocations, the last one with precision "<<precision<<" completed in "<<result.iterations<<" iterations.");