update toplevel comments, add mutable stack to zipped acyclic iterators
This commit is contained in:
@@ -158,7 +158,7 @@ impl MachineError {
|
||||
pub(super)
|
||||
fn interrupt_error() -> Self {
|
||||
let stub = functor!("$interrupt_thrown");
|
||||
|
||||
|
||||
MachineError {
|
||||
stub,
|
||||
location: None,
|
||||
|
||||
@@ -1969,7 +1969,8 @@ impl MachineState {
|
||||
iter.first_to_expire != Ordering::Equal
|
||||
}
|
||||
|
||||
pub(super) fn compare_term_test(&self, a1: &Addr, a2: &Addr) -> Option<Ordering> {
|
||||
pub(super)
|
||||
fn compare_term_test(&self, a1: &Addr, a2: &Addr) -> Option<Ordering> {
|
||||
let mut iter = self.zipped_acyclic_pre_order_iter(*a1, *a2);
|
||||
|
||||
while let Some((v1, v2)) = iter.next() {
|
||||
|
||||
Reference in New Issue
Block a user