test on ordering
parent
ecaf415d1e
commit
c450222ff1
|
|
@ -136,6 +136,15 @@ TEST( GaussianBayesNet, optimize3 )
|
||||||
EXPECT(assert_equal(expected, actual));
|
EXPECT(assert_equal(expected, actual));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ************************************************************************* */
|
||||||
|
TEST(GaussianBayesNet, ordering)
|
||||||
|
{
|
||||||
|
Ordering expected;
|
||||||
|
expected += 0, 1;
|
||||||
|
const auto actual = noisyBayesNet.ordering();
|
||||||
|
EXPECT(assert_equal(expected, actual));
|
||||||
|
}
|
||||||
|
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
TEST( GaussianBayesNet, backSubstituteTranspose )
|
TEST( GaussianBayesNet, backSubstituteTranspose )
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue