diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-12-05 13:49:56 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-12-05 14:09:17 -0500 |
commit | c404a0a02915e4f6d329d7667ed30b8519b8a964 (patch) | |
tree | 8ca057be61563c0b7816331951bf28e270207e70 /src/frontier.rs | |
parent | 932ff518e5f70c58e8dc687c00dab2bbdd4bec8d (diff) | |
download | kd-forest-main.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/frontier.rs')
-rw-r--r-- | src/frontier.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontier.rs b/src/frontier.rs index 40b1d35..3ca6707 100644 --- a/src/frontier.rs +++ b/src/frontier.rs @@ -5,7 +5,7 @@ pub mod mean; pub mod min; use crate::color::Rgb8; -use crate::soft::SoftDelete; +use crate::forest::SoftDelete; use acap::coords::Coordinates; use acap::distance::{Proximity, Metric}; |