File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1919
2020#include < goto-programs/goto_model.h>
2121
22- // forward reference
22+ // forward reference the abstract interpreter interface
2323class ai_baset ;
2424
25+ // / The interface offered by a domain, allows code to manipulate domains without
26+ // / knowing their exact type.
2527// don't use me -- I am just a base class
2628// please derive from me
2729class ai_domain_baset
2830{
2931public:
30- // The constructor is expected to produce 'false'
31- // or 'bottom'
32+ // The constructor is expected to produce 'false' or 'bottom'
3233 ai_domain_baset ()
3334 {
3435 }
@@ -101,6 +102,7 @@ class ai_domain_baset
101102 // PRECONDITION(from.is_dereferenceable(), "Must not be _::end()")
102103 // PRECONDITION(to.is_dereferenceable(), "Must not be _::end()")
103104
105+
104106 // This method allows an expression to be simplified / evaluated using the
105107 // current state. It is used to evaluate assertions and in program
106108 // simplification
You can’t perform that action at this time.
0 commit comments