From ef2fb243c21cedc8fc18d095d33be175d2fc7a1c Mon Sep 17 00:00:00 2001 From: Michael Kaess Date: Tue, 19 Jan 2010 03:43:10 +0000 Subject: [PATCH] fixed unit test after colamd change --- cpp/testISAM.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/cpp/testISAM.cpp b/cpp/testISAM.cpp index 9476c2cf2..3d9dfd74b 100644 --- a/cpp/testISAM.cpp +++ b/cpp/testISAM.cpp @@ -84,16 +84,15 @@ TEST( ISAM, iSAM ) // New conditionals in modified top of the tree SymbolicConditional::shared_ptr S_(new SymbolicConditional("S")), - L_(new SymbolicConditional("L", "S")), - E_(new SymbolicConditional("E", "L", "S")), - B_(new SymbolicConditional("B", "E", "L", "S")); + B_(new SymbolicConditional("B", "S")), + L_(new SymbolicConditional("L", "B", "S")); // Create expected Bayes tree SymbolicISAM expected; expected.insert(S_); - expected.insert(L_); - expected.insert(E_); expected.insert(B_); + expected.insert(L_); + expected.insert(E); expected.insert(T); expected.insert(X);