Skip to content

Commit

Permalink
remove printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
gauteh authored and urschrei committed Oct 28, 2024
1 parent 3a281f0 commit f65e815
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions geo/src/algorithm/relate/geomgraph/geometry_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,10 @@ where
}

fn invalidate_tree(&mut self) {
println!("invalidate tree");
self.tree = None;
}

fn build_tree(&self) -> RTree<Segment<F>> {
println!("build tree: {}", self.edges().len());
let segments: Vec<Segment<F>> = self
.edges()
.iter()
Expand Down Expand Up @@ -102,7 +100,6 @@ where
}

pub(crate) fn clone_for_arg_index(&self, arg_index: usize) -> Self {
println!("clone for arg");
debug_assert!(
self.has_computed_self_nodes,
"should only be called after computing self nodes"
Expand Down Expand Up @@ -152,7 +149,6 @@ where
F: GeoFloat + RTreeNum,
{
pub(crate) fn new(arg_index: usize, parent_geometry: GeometryCow<'a, F>) -> Self {
println!("new geom graph");
let mut graph = GeometryGraph {
arg_index,
parent_geometry,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ mod conversions {

impl<'a, F: GeoFloat> From<GeometryCow<'a, F>> for PreparedGeometry<'a, F> {
fn from(geometry: GeometryCow<'a, F>) -> Self {
println!("new prepared geom");
let mut geometry_graph = GeometryGraph::new(0, geometry);
geometry_graph.update_tree(); // TODO: maybe unecessary

Expand Down

0 comments on commit f65e815

Please sign in to comment.