From 5cb5e55a3e8bb70196b54661ceed66ba33aef5f7 Mon Sep 17 00:00:00 2001 From: Emily Fertig Date: Wed, 25 Sep 2024 17:02:19 +0000 Subject: [PATCH] Minor cleanup for PR. --- cxx/gendb.hh | 2 +- cxx/gendb_test.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cxx/gendb.hh b/cxx/gendb.hh index 3486a65..e5011d6 100644 --- a/cxx/gendb.hh +++ b/cxx/gendb.hh @@ -110,7 +110,7 @@ class GenDB { const bool to_cluster_only = false); // Recursively incorporates the items and values of stored_values for a single - // relation. + // relation (and its base relations). template void incorporate_reference_relation( std::mt19937* prng, Relation* rel, const std::string& rel_name, diff --git a/cxx/gendb_test.cc b/cxx/gendb_test.cc index 07e1c87..5bc4f8b 100644 --- a/cxx/gendb_test.cc +++ b/cxx/gendb_test.cc @@ -289,7 +289,7 @@ BOOST_AUTO_TEST_CASE(test_logp_score) { std::mt19937 prng; GenDB gendb(&prng, schema); setup_gendb(&prng, gendb); - // BOOST_TEST(gendb.logp_score() < 0.0); + BOOST_TEST(gendb.logp_score() < 0.0); } BOOST_AUTO_TEST_CASE(test_update_reference_items) {