Even closer to get example "basic" up and running!

This commit is contained in:
2020-02-20 12:57:51 +01:00
parent 7528b3b67b
commit 6840699144
4 changed files with 103 additions and 76 deletions

View File

@@ -4,7 +4,10 @@ pub use recursive::RecursiveFitter;
pub trait Fitter {
fn add_sample(&mut self, t: f64) -> usize;
fn allocate(&mut self);
fn is_allocated(&self) -> bool;
fn fit(&mut self);
fn vs(&self, idx: usize) -> f64;