Initial commit. Basic structure in place, need to implement logic.

This commit is contained in:
2020-02-06 10:01:43 +01:00
commit dc545e4063
9 changed files with 148 additions and 0 deletions

11
src/kernel.rs Normal file
View File

@@ -0,0 +1,11 @@
mod constant;
mod exponential;
mod matern52;
pub use constant::Constant;
pub use exponential::Exponential;
pub use matern52::Matern52;
pub trait Kernel {}
impl Kernel for Vec<Box<dyn Kernel>> {}