More progress.

This commit is contained in:
2020-02-13 10:17:20 +01:00
parent a54bb70138
commit dd5667d82c
8 changed files with 171 additions and 8 deletions

View File

@@ -1,7 +1,11 @@
mod batch;
mod recursive;
pub use batch::BatchFitter;
pub use recursive::RecursiveFitter;
pub trait Fitter {
fn add_sample(&mut self, t: f64) -> usize;
fn allocate(&mut self);
fn fit(&mut self);
}