summaryrefslogtreecommitdiff
path: root/src/theory/sep/theory_sep.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sep/theory_sep.cpp')
-rw-r--r--src/theory/sep/theory_sep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/sep/theory_sep.cpp b/src/theory/sep/theory_sep.cpp
index b5fc1cbc9..0b6e7a5fb 100644
--- a/src/theory/sep/theory_sep.cpp
+++ b/src/theory/sep/theory_sep.cpp
@@ -317,7 +317,7 @@ void TheorySep::check(Effort e) {
while( !done() && !d_conflict ){
// Get all the assertions
Assertion assertion = get();
- TNode fact = assertion.assertion;
+ TNode fact = assertion.d_assertion;
Trace("sep-assert") << "TheorySep::check(): processing " << fact << std::endl;
@@ -806,7 +806,7 @@ void TheorySep::check(Effort e) {
d_heap_locs_nptos.clear();
//collect data points that are not pointed to
for( context::CDList<Assertion>::const_iterator it = facts_begin(); it != facts_end(); ++ it) {
- Node lit = (*it).assertion;
+ Node lit = (*it).d_assertion;
if( lit.getKind()==kind::NOT && lit[0].getKind()==kind::SEP_PTO ){
Node s_atom = lit[0];
Node v1 = d_valuation.getModel()->getRepresentative( s_atom[0] );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback