Upgrade crates and fix clippy warnings

This commit is contained in:
2021-04-26 09:12:05 +02:00
parent 08e0342a22
commit c0846609e3
6 changed files with 178 additions and 176 deletions

View File

@@ -6,6 +6,12 @@ use crate::kernel::Kernel;
use crate::observation::*;
use crate::storage::Storage;
/*
trait BinaryObeservation: Observation {
fn new(storage: &mut Storage, elems: &[(usize, f64)], t: f64, margin: f64) -> Self;
}
*/
pub enum BinaryModelObservation {
Probit,
Logit,