summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-12-05 13:49:56 -0500
committerTavian Barnes <tavianator@tavianator.com>2023-12-05 14:09:17 -0500
commitc404a0a02915e4f6d329d7667ed30b8519b8a964 (patch)
tree8ca057be61563c0b7816331951bf28e270207e70 /src/main.rs
parent932ff518e5f70c58e8dc687c00dab2bbdd4bec8d (diff)
downloadkd-forest-c404a0a02915e4f6d329d7667ed30b8519b8a964.tar.xz
Move soft deletion into the forest implementationmain
This allows us to filter out deleted items whenever we rebuild a tree.
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 204a582..c139ee8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,7 +2,6 @@ pub mod color;
pub mod forest;
pub mod frontier;
pub mod hilbert;
-pub mod soft;
use crate::color::source::{AllColors, ColorSource, ImageColors};
use crate::color::{order, ColorSpace, LabSpace, LuvSpace, OklabSpace, Rgb8, RgbSpace};