From d60585ea07042bcdc61f1e8eae5c32c9a221f108 Mon Sep 17 00:00:00 2001 From: neoz666 Date: Wed, 11 Sep 2024 02:04:51 +0530 Subject: [PATCH] Updates Signed-off-by: neoz666 --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 603e11f..d980e1d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -193,7 +193,7 @@ fn bnb( // Decrement of bnb_tries for every iteration *bnb_tries -= 1; - /// Capping the number of iterations on the computation + // Capping the number of iterations on the computation if *bnb_tries == 0 || depth >= inputs_in_desc_value.len() { return None; }