@@ -44,7 +44,9 @@ bool static_verifier(
44
44
45
45
forall_goto_functions (f_it, goto_model.goto_functions )
46
46
{
47
- m.progress () << " Checking " << f_it->first << messaget::eom;
47
+ const auto &symbol = ns.lookup (f_it->first );
48
+
49
+ m.progress () << " Checking " << symbol.display_name () << messaget::eom;
48
50
49
51
if (!f_it->second .body .has_assertion ())
50
52
continue ;
@@ -94,7 +96,9 @@ bool static_verifier(
94
96
95
97
forall_goto_functions (f_it, goto_model.goto_functions )
96
98
{
97
- m.progress () << " Checking " << f_it->first << messaget::eom;
99
+ const auto &symbol = ns.lookup (f_it->first );
100
+
101
+ m.progress () << " Checking " << symbol.display_name () << messaget::eom;
98
102
99
103
if (!f_it->second .body .has_assertion ())
100
104
continue ;
@@ -147,12 +151,14 @@ bool static_verifier(
147
151
{
148
152
forall_goto_functions (f_it, goto_model.goto_functions )
149
153
{
150
- m.progress () << " Checking " << f_it->first << messaget::eom;
154
+ const auto &symbol = ns.lookup (f_it->first );
155
+
156
+ m.progress () << " Checking " << symbol.display_name () << messaget::eom;
151
157
152
158
if (!f_it->second .body .has_assertion ())
153
159
continue ;
154
160
155
- out << " ******** Function " << f_it-> first << ' \n ' ;
161
+ out << " ******** Function " << symbol. display_name () << ' \n ' ;
156
162
157
163
forall_goto_program_instructions (i_it, f_it->second .body )
158
164
{
@@ -208,7 +214,10 @@ bool static_verifier(
208
214
if (!f_it->second .body .has_assertion ())
209
215
continue ;
210
216
211
- m.result () << " ******** Function " << f_it->first << messaget::eom;
217
+ const auto &symbol = ns.lookup (f_it->first );
218
+
219
+ m.result () << " ******** Function " << symbol.display_name ()
220
+ << messaget::eom;
212
221
213
222
forall_goto_program_instructions (i_it, f_it->second .body )
214
223
{
0 commit comments