Skip to content

Commit 51d66d1

Browse files
committed
Merge #418: Tr compiler v3 - Incremental Enumerative Compiler
97de242 Implement tr-compiler-v3 enumeration compiler (Aman Rojjha) 7d5374f Limit the number of tap-leaves output by the `tr_compiler` (Aman Rojjha) Pull request description: This PR is a follow-up in the Tr-compiler series. This introduces splitting of a `thresh(k, ...n...)` policy into different Tapleaves. > For now, kindly refer to the code documentation and comments for the strategy implemented ACKs for top commit: sanket1729: ACK 97de242 Tree-SHA512: dfa4517bb211e329e57dd237998e8df219cdf6208f8ec2cb3f2f4f9cf8934f272fb611f3b52dc1ad080918ddbc4fbd3ffb506812f02fa536239402a62683552d
2 parents b6daa97 + 97de242 commit 51d66d1

File tree

3 files changed

+503
-6
lines changed

3 files changed

+503
-6
lines changed

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ mod prelude {
11191119
pub use alloc::{
11201120
borrow::{Borrow, Cow, ToOwned},
11211121
boxed::Box,
1122-
collections::{vec_deque::VecDeque, BTreeMap, BinaryHeap},
1122+
collections::{vec_deque::VecDeque, BTreeMap, BTreeSet, BinaryHeap},
11231123
rc, slice,
11241124
string::{String, ToString},
11251125
sync,
@@ -1129,7 +1129,7 @@ mod prelude {
11291129
pub use std::{
11301130
borrow::{Borrow, Cow, ToOwned},
11311131
boxed::Box,
1132-
collections::{vec_deque::VecDeque, BTreeMap, BinaryHeap, HashMap, HashSet},
1132+
collections::{vec_deque::VecDeque, BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet},
11331133
rc, slice,
11341134
string::{String, ToString},
11351135
sync,

0 commit comments

Comments
 (0)