Skip to content

Commit 1e25447

Browse files
committed
remove debug output
1 parent 304ae52 commit 1e25447

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/ndg/make.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@ impl<'a, T, D> GridCubicSmoothingSpline<'a, T, D>
3535
let weights = self.weights[ax].map(|v| v.reborrow());
3636
let s = self.smooth[ax];
3737

38-
println!("\nx shape: {:?}", x.shape());
39-
println!("y shape: {:?}", y.shape());
40-
41-
println!("\nx: {:?}", x);
42-
println!("y: {:?}", y);
43-
4438
let sp = CubicSmoothingSpline::new(x, y)
4539
.with_optional_weights(weights)
4640
.with_optional_smooth(s)
@@ -64,9 +58,6 @@ impl<'a, T, D> GridCubicSmoothingSpline<'a, T, D>
6458
};
6559

6660
coeffs_shape = coeffs.shape().to_vec();
67-
68-
println!("\ncoeffs shape: {:?}", coeffs.shape());
69-
println!("coeffs: {:?}", coeffs);
7061
}
7162

7263
self.smooth = smooth;

0 commit comments

Comments
 (0)