Skip to content

Commit c69a21b

Browse files
committed
Extended symex progres statistics
1 parent 52db9e4 commit c69a21b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/symex/path_search.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,13 @@ path_searcht::resultt path_searcht::operator()(
102102

103103
if(number_of_steps%1000==0)
104104
{
105+
time_periodt running_time=current_time()-start_time;
105106
status() << "Queue " << queue.size()
106107
<< " thread " << state.get_current_thread()+1
107108
<< '/' << state.threads.size()
108-
<< " PC " << state.pc() << messaget::eom;
109+
<< " PC " << state.pc()
110+
<< " [" << number_of_steps << " steps, "
111+
<< running_time << "s]" << messaget::eom;
109112
}
110113

111114
// an error, possibly?

0 commit comments

Comments
 (0)