,
dataset: &Dataset,
- cache: &mut parameter_learning::Cache,
+ cache: &mut Cache
,
) -> bool
where
T: process::NetworkProcess,
@@ -86,7 +87,7 @@ impl HypothesisTest for F {
parent_node: usize,
separation_set: &BTreeSet,
dataset: &Dataset,
- cache: &mut parameter_learning::Cache,
+ cache: &mut Cache
,
) -> bool
where
T: process::NetworkProcess,
@@ -226,7 +227,7 @@ impl HypothesisTest for ChiSquare {
parent_node: usize,
separation_set: &BTreeSet,
dataset: &Dataset,
- cache: &mut parameter_learning::Cache,
+ cache: &mut Cache
,
) -> bool
where
T: process::NetworkProcess,
diff --git a/reCTBN/tests/structure_learning.rs b/reCTBN/tests/structure_learning.rs
index a37f2b3..9a69b45 100644
--- a/reCTBN/tests/structure_learning.rs
+++ b/reCTBN/tests/structure_learning.rs
@@ -7,7 +7,6 @@ use ndarray::{arr1, arr2, arr3};
use reCTBN::process::ctbn::*;
use reCTBN::process::NetworkProcess;
use reCTBN::parameter_learning::BayesianApproach;
-use reCTBN::parameter_learning::Cache;
use reCTBN::params;
use reCTBN::structure_learning::hypothesis_test::*;
use reCTBN::structure_learning::constraint_based_algorithm::*;