File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
crates/RustQuant_math/src/interpolation Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,14 @@ pub use exponential_interpolator::*;
19
19
pub mod b_splines;
20
20
pub use b_splines:: * ;
21
21
22
+ pub mod lagrange_interpolator;
23
+ pub use lagrange_interpolator:: * ;
24
+
22
25
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
23
26
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24
27
25
28
/// Trait describing requirements to be interpolated.
26
- pub trait InterpolationValue : num:: Num + AddAssign + std:: fmt:: Debug + Copy + Clone + Sized { }
29
+ pub trait InterpolationValue : num:: Num + AddAssign + MulAssign + std:: fmt:: Debug + Copy + Clone + Sized { }
27
30
28
31
/// Trait describing requirements to be an index of interpolation.
29
32
pub trait InterpolationIndex :
You can’t perform that action at this time.
0 commit comments