Skip to content

Commit 591eeaf

Browse files
committed
restructure some files
1 parent 1704d32 commit 591eeaf

4 files changed

Lines changed: 1 addition & 6 deletions

File tree

src/interp1d.rs renamed to src/interp1d/mod.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,9 @@ mod aliases;
3131
mod strategies;
3232
pub use aliases::*;
3333
pub use strategies::linear::Linear;
34+
pub use strategies::cubic_spline;
3435
pub use strategies::{Interp1DStrategy, Interp1DStrategyBuilder};
3536

36-
pub mod cubic_spline {
37-
pub use super::strategies::cubic_spline::{
38-
BoundaryCondition, CubicSpline, RowBoundary, SingleBoundary,
39-
};
40-
}
41-
4237
/// One dimensional interpolator
4338
#[derive(Debug)]
4439
pub struct Interp1D<Sd, Sx, D, Strat>
File renamed without changes.

0 commit comments

Comments
 (0)