Remove need to box kernel on model

This commit is contained in:
2022-04-26 22:47:28 +02:00
parent 6f91c0a765
commit 6665362417
10 changed files with 20 additions and 20 deletions

View File

@@ -62,7 +62,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
Box::new(ks::kernel::Matern32::new(0.138, 1.753 * seconds_in_year)),
];
model.add_item(&team, Box::new(kernel));
model.add_item(&team, kernel);
}
for (winner, loser, t) in observations {