1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// use crate::prelude::*;
// use argmin::core::CostFunction;
// use datafile::Scenario;
// use ndarray::{Array1, Array2};
// use sigma::ErrorModel;

// use self::simulator::likelihood::SubjectPredictions;

// struct GamLam<'a> {
//     prediction: &'a SubjectPredictions,
//     scenarios: &'a Vec<Scenario>,
//     ep: ErrorModel<'a>,
// }

// impl<'a> CostFunction for GamLam<'a> {
//     type Param = f64;
//     type Output = f64;
//     fn cost(&self, _param: &Self::Param) -> Result<Self::Output, argmin::core::Error> {
//         let prob = self.prediction.likelihood(&self.ep);
//         Ok(prob.sum())
//     }
// }