File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ void functionst::add_function_constraints(const function_infot &info)
66
66
implies_exprt implication (arguments_equal_expr,
67
67
equal_exprt (*it1, *it2));
68
68
69
- prop_conv .set_to_true (implication);
69
+ decision_procedure .set_to_true (implication);
70
70
}
71
71
}
72
72
}
Original file line number Diff line number Diff line change 17
17
18
18
#include < util/mathematical_expr.h>
19
19
20
- #include < solvers/prop/prop_conv .h>
20
+ #include < solvers/decision_procedure .h>
21
21
22
22
class functionst
23
23
{
24
24
public:
25
- explicit functionst (prop_convt &_prop_conv):
26
- prop_conv(_prop_conv) { }
25
+ explicit functionst (decision_proceduret &_decision_procedure)
26
+ : decision_procedure(_decision_procedure)
27
+ {
28
+ }
27
29
28
30
virtual ~functionst ()
29
31
{
@@ -38,7 +40,7 @@ class functionst
38
40
}
39
41
40
42
protected:
41
- prop_convt &prop_conv ;
43
+ decision_proceduret &decision_procedure ;
42
44
43
45
typedef std::set<function_application_exprt> applicationst;
44
46
You can’t perform that action at this time.
0 commit comments