polynominal_interpolation/
lib.rs

1mod lagrange;
2mod newton;
3
4pub use lagrange::lagrange_interpolation;
5pub use newton::newton_interpolation;