diff options
author | JSDurand <mmemmew@gmail.com> | 2023-08-04 10:12:04 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2023-08-04 10:12:04 +0800 |
commit | 7033187abaf42772097377c0a1ffc2cd4cefdada (patch) | |
tree | 4fe0801fd07d965d009570f984c88af363a5bc7e /chain/src/item/default | |
parent | 228b51fe7941e2b180ee3ea99dfea4bfcbd6770b (diff) |
minor adjustments
Not bug deals but adjustments of details.
Diffstat (limited to 'chain/src/item/default')
-rw-r--r-- | chain/src/item/default/extract.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chain/src/item/default/extract.rs b/chain/src/item/default/extract.rs index b99c541..c34f1da 100644 --- a/chain/src/item/default/extract.rs +++ b/chain/src/item/default/extract.rs @@ -82,7 +82,7 @@ impl DefaultForest<ForestLabel<GrammarLabel>> { } } - dbg!(&validity_array); + // dbg!(&validity_array); // A stack for propagating the falsehood to parents and // children of incomplete nodes, like a plague. The only @@ -141,7 +141,7 @@ impl DefaultForest<ForestLabel<GrammarLabel>> { }; } - dbg!(&validity_array); + // dbg!(&validity_array); if validity_array.iter().all(|validity| !*validity) { // every element is false |