Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ slim_dispatch = [] # Experiment. Enables the 64-bit pointers to back the TaggedN
act_counters = ["arena_compact"] # LP: Question: Why isn't this code enabled by just counters + arena_compact???
viz = []
serialization = ["dep:libz-ng-sys"]
zipper_alg = [] # Enables experimental implementations of Zipper-based algebraic operations

[target.'cfg(miri)'.dependencies]
fast-slice-utils = { version = "0.1.2", features = ["miri_safe"] }
Expand Down
5 changes: 5 additions & 0 deletions src/experimental.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ pub mod serialization;
#[cfg(feature = "serialization")]
pub mod tree_serialization;

#[cfg(feature = "zipper_alg")]
pub mod zipper_algebra;
#[cfg(not(feature = "zipper_alg"))]
mod zipper_algebra;

struct FullZipper {
path: Vec<u8>
}
Expand Down
Loading