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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
pub extern crate opensrdk_linear_algebra;
extern crate rayon;
extern crate thiserror;

pub use add::*;
pub use ard::*;
pub use constant::*;
pub use convolutional::*;
pub use exponential::*;
pub use instant::*;
pub use linear::*;
pub use mul::*;
pub use neural_network::{deep_neural_network::*, relu::*};
use opensrdk_symbolic_computation::Expression;
pub use periodic::*;
pub use rbf::*;
pub use spectral_mixture::*;

use std::fmt::Debug;

pub mod add;
pub mod ard;
pub mod constant;
pub mod convolutional;
pub mod exponential;
pub mod instant;
pub mod linear;
pub mod mul;
pub mod neural_network;
pub mod periodic;
pub mod rbf;
pub mod spectral_mixture;

pub trait Value: Clone + Debug + Send + Sync {}
impl<T> Value for T where T: Clone + Debug + Send + Sync {}

pub trait PositiveDefiniteKernel: Clone + Debug + Send + Sync {
    fn params_len(&self) -> usize;

    fn expression(
        &self,
        x: Expression,
        x_prime: Expression,
        params: &[Expression],
    ) -> Result<Expression, KernelError>;
}

#[derive(thiserror::Error, Debug)]
pub enum KernelError {
    #[error("parameters length mismatch")]
    ParametersLengthMismatch,
    #[error("invalid parameter")]
    InvalidParameter,
    #[error("invalid argument")]
    InvalidArgument,
}

// #[cfg(test)]
// mod tests {
//     use crate::*;
//     #[test]
//     fn it_works() {
//         let kernel = RBF + Constant * Linear + Constant * Periodic + Constant * ARD(3);
//         let test_value = kernel
//             .value(
//                 &vec![1.0; kernel.params_len()],
//                 &vec![1.0, 2.0, 3.0],
//                 &vec![30.0, 20.0, 10.0],
//             )
//             .unwrap();

//         println!("{}", test_value);
//     }
// }