Making progress.

This commit is contained in:
2020-02-12 22:31:06 +01:00
parent dc545e4063
commit a54bb70138
9 changed files with 243 additions and 12 deletions

7
src/fitter.rs Normal file
View File

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