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 7734b53 commit ecb0e2bCopy full SHA for ecb0e2b
src/analyses/ai.h
@@ -68,12 +68,12 @@ class ai_baset
68
}
69
70
/// Run abstract interpretation on a whole program
71
- void operator()(const goto_modelt &goto_model)
+ void operator()(const abstract_goto_modelt &goto_model)
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);
+ const namespacet ns(goto_model.get_symbol_table());
+ initialize(goto_model.get_goto_functions());
+ entry_state(goto_model.get_goto_functions());
+ fixedpoint(goto_model.get_goto_functions(), ns);
77
finalize();
78
79
0 commit comments