File tree 2 files changed +7
-5
lines changed 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 16
16
17
17
#include < util/mathematical_expr.h>
18
18
19
- #include < solvers/prop/prop_conv .h>
19
+ #include < solvers/decision_procedure .h>
20
20
21
21
class functionst
22
22
{
23
23
public:
24
- explicit functionst (prop_convt &_prop_conv):
25
- prop_conv(_prop_conv) { }
24
+ explicit functionst (decision_proceduret &_decision_procedure)
25
+ : decision_procedure(_decision_procedure)
26
+ {
27
+ }
26
28
27
29
virtual ~functionst ()
28
30
{
@@ -37,7 +39,7 @@ class functionst
37
39
}
38
40
39
41
protected:
40
- prop_convt &prop_conv ;
42
+ decision_proceduret &decision_procedure ;
41
43
42
44
typedef std::set<function_application_exprt> applicationst;
43
45
You can’t perform that action at this time.
0 commit comments