@@ -68,12 +68,12 @@ class ai_baset
68
68
}
69
69
70
70
// / Run abstract interpretation on a whole program
71
- void operator ()(const goto_modelt &goto_model)
71
+ void operator ()(const abstract_goto_modelt &goto_model)
72
72
{
73
- const namespacet ns (goto_model.symbol_table );
74
- initialize (goto_model.goto_functions );
75
- entry_state (goto_model.goto_functions );
76
- fixedpoint (goto_model.goto_functions , ns);
73
+ const namespacet ns (goto_model.get_symbol_table () );
74
+ initialize (goto_model.get_goto_functions () );
75
+ entry_state (goto_model.get_goto_functions () );
76
+ fixedpoint (goto_model.get_goto_functions () , ns);
77
77
finalize ();
78
78
}
79
79
@@ -374,7 +374,7 @@ class ai_baset
374
374
// / \ref ai_baset#operator()(const irep_idt&,const goto_programt&, <!--
375
375
// / --> const namespacet&),
376
376
// / \ref ai_baset#operator()(const goto_functionst&,const namespacet&)
377
- // / and \ref ai_baset#operator()(const goto_modelt &)
377
+ // / and \ref ai_baset#operator()(const abstract_goto_modelt &)
378
378
// / 2. Accessing the results of an analysis, by looking up the result
379
379
// / for a given location \p l using
380
380
// / \ref ait#operator[](goto_programt::const_targett).
0 commit comments