Initial commit. Basic structure in place, need to implement logic.
This commit is contained in:
14
src/kernel/exponential.rs
Normal file
14
src/kernel/exponential.rs
Normal file
@@ -0,0 +1,14 @@
|
||||
use super::Kernel;
|
||||
|
||||
pub struct Exponential {
|
||||
var: f64,
|
||||
l_scale: f64,
|
||||
}
|
||||
|
||||
impl Exponential {
|
||||
pub fn new(var: f64, l_scale: f64) -> Self {
|
||||
Exponential { var, l_scale }
|
||||
}
|
||||
}
|
||||
|
||||
impl Kernel for Exponential {}
|
||||
Reference in New Issue
Block a user