Initial commit. Basic structure in place, need to implement logic.
This commit is contained in:
11
src/kernel.rs
Normal file
11
src/kernel.rs
Normal 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>> {}
|
||||
Reference in New Issue
Block a user