]> Repositorios git - scryer-prolog.git/commitdiff
Remove some debug println!s
authorNicolas Luck <[email protected]>
Mon, 18 Sep 2023 17:12:50 +0000 (19:12 +0200)
committerNicolas Luck <[email protected]>
Mon, 18 Sep 2023 17:12:50 +0000 (19:12 +0200)
src/machine/lib_machine.rs

index 6c4c262f8a74d0e5f7dfbfd34b28b2e6eb8987c1..18d6c7e63c13e09bc265eca4ab070bfcce3d174b 100644 (file)
@@ -168,10 +168,7 @@ impl Machine {
             // choice point, so we should break.
             self.machine_st.backtrack();
 
-            if self.machine_st.b > stub_b {
-                println!("b: {}", self.machine_st.b);
-            } else {
-                println!("breaking");
+            if self.machine_st.b <= stub_b {
                 // NOTE: out of choicepoints to backtrack through, no
                 // more solutions to gather.
                 break;