We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52db9e4 commit c69a21bCopy full SHA for c69a21b
src/symex/path_search.cpp
@@ -102,10 +102,13 @@ path_searcht::resultt path_searcht::operator()(
102
103
if(number_of_steps%1000==0)
104
{
105
+ time_periodt running_time=current_time()-start_time;
106
status() << "Queue " << queue.size()
107
<< " thread " << state.get_current_thread()+1
108
<< '/' << state.threads.size()
- << " PC " << state.pc() << messaget::eom;
109
+ << " PC " << state.pc()
110
+ << " [" << number_of_steps << " steps, "
111
+ << running_time << "s]" << messaget::eom;
112
}
113
114
// an error, possibly?
0 commit comments