mark chunk boundary at beginning of disjunct in disjuncts.rs (#1843)

This commit is contained in:
Mark
2023-06-24 17:03:46 -06:00
parent d9829a3606
commit 0b45d42912

View File

@@ -598,6 +598,9 @@ impl VariableClassifier {
if let TraversalState::BuildDisjunct(build_stack_len) = state_stack[final_disjunct_loc] {
state_stack[final_disjunct_loc] = TraversalState::BuildFinalDisjunct(build_stack_len);
}
self.current_chunk_type = ChunkType::Mid;
self.current_chunk_num += 1;
}
Term::Clause(_, atom!("->"), mut terms) if terms.len() == 2 => {
let then_term = terms.pop().unwrap();
@@ -632,6 +635,9 @@ impl VariableClassifier {
state_stack.push(TraversalState::Term(not_term));
state_stack.push(TraversalState::GetCutPoint { var_num: self.var_num, prev_b: true });
self.current_chunk_type = ChunkType::Mid;
self.current_chunk_num += 1;
self.var_num += 1;
}
Term::Clause(_, atom!(":"), mut terms) if terms.len() == 2 => {