numerical_integral/
lib.rs

1mod basic;
2mod newton_cotes;
3mod romberg;
4
5pub use basic::*;
6pub use newton_cotes::*;
7pub use romberg::*;