fixed unit test after colamd change
parent
2507b6aaca
commit
ef2fb243c2
|
@ -84,16 +84,15 @@ TEST( ISAM, iSAM )
|
||||||
// New conditionals in modified top of the tree
|
// New conditionals in modified top of the tree
|
||||||
SymbolicConditional::shared_ptr
|
SymbolicConditional::shared_ptr
|
||||||
S_(new SymbolicConditional("S")),
|
S_(new SymbolicConditional("S")),
|
||||||
L_(new SymbolicConditional("L", "S")),
|
B_(new SymbolicConditional("B", "S")),
|
||||||
E_(new SymbolicConditional("E", "L", "S")),
|
L_(new SymbolicConditional("L", "B", "S"));
|
||||||
B_(new SymbolicConditional("B", "E", "L", "S"));
|
|
||||||
|
|
||||||
// Create expected Bayes tree
|
// Create expected Bayes tree
|
||||||
SymbolicISAM expected;
|
SymbolicISAM expected;
|
||||||
expected.insert(S_);
|
expected.insert(S_);
|
||||||
expected.insert(L_);
|
|
||||||
expected.insert(E_);
|
|
||||||
expected.insert(B_);
|
expected.insert(B_);
|
||||||
|
expected.insert(L_);
|
||||||
|
expected.insert(E);
|
||||||
expected.insert(T);
|
expected.insert(T);
|
||||||
expected.insert(X);
|
expected.insert(X);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue