File tree 1 file changed +5
-3
lines changed 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 19
19
20
20
#include < goto-programs/goto_model.h>
21
21
22
- // forward reference
22
+ // forward reference the abstract interpreter interface
23
23
class ai_baset ;
24
24
25
+ // / The interface offered by a domain, allows code to manipulate domains without
26
+ // / knowing their exact type.
25
27
// don't use me -- I am just a base class
26
28
// please derive from me
27
29
class ai_domain_baset
28
30
{
29
31
public:
30
- // The constructor is expected to produce 'false'
31
- // or 'bottom'
32
+ // The constructor is expected to produce 'false' or 'bottom'
32
33
ai_domain_baset ()
33
34
{
34
35
}
@@ -101,6 +102,7 @@ class ai_domain_baset
101
102
// PRECONDITION(from.is_dereferenceable(), "Must not be _::end()")
102
103
// PRECONDITION(to.is_dereferenceable(), "Must not be _::end()")
103
104
105
+
104
106
// This method allows an expression to be simplified / evaluated using the
105
107
// current state. It is used to evaluate assertions and in program
106
108
// simplification
You can’t perform that action at this time.
0 commit comments