use crate::temporal::traits::*;
use rand::prelude::*;
use rand_distr::{StandardNormal};
use ndarray::array;
use ndarray::prelude::*;
use ndarray_parallel::prelude::*;
use rayon::prelude::*;
pub struct LognormalCox {
mu: f64,
sigma: f64
}
impl StochasticIntensity for LognormalCox {}
impl TemporalProcess for LognormalCox {
fn sample(&self, tmax: f64) -> TimeProcessResult {
let x = array![0.];
let y = array![0.];
TimeProcessResult {
timestamps: x,
intensities: y
}
}
}