1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
extern crate rayon;

pub mod ard;
pub mod exponential;
pub mod linear;
pub mod prelude;
pub mod rbf;
pub mod periodic;

use std::fmt::Debug;

pub trait Kernel<T>: Clone + Debug + Send + Sync {
    fn get_params(&self) -> &[f64];
    fn set_params(&mut self, params: &[f64]) -> Result<(), String>;
    fn value(&self, x: &T, x_prime: &T) -> Result<f64, String>;
    fn grad(
        &self,
        x: &T,
        x_prime: &T,
    ) -> Result<Box<dyn Fn(&[f64]) -> Result<Vec<f64>, String>>, String>;
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}