Add check

release/4.3a0
Frank Dellaert 2023-01-13 11:58:17 -08:00
parent 8c752049de
commit 7ea8bd0fba
1 changed files with 16 additions and 0 deletions

View File

@ -134,6 +134,21 @@ static const auto unitPrior =
noiseModel::Isotropic::Sigma(1, sigma));
} // namespace density
/* ************************************************************************* */
bool checkInvariants(const GaussianConditional* self,
const HybridValues& values) {
const double probability = self->evaluate(values);
if (probability < 0.0 || probability > 1.0)
return false; // probability is not in [0,1]
const double logProb = self->logProbability(values);
if (std::abs(probability - std::exp(logProb)) > 1e-9)
return false; // logProb is not consistent with probability
const double expected =
self->logNormalizationConstant() - self->error(values);
if (std::abs(logProb - expected) > 1e-9)
return false; // logProb is not consistent with error
}
/* ************************************************************************* */
// Check that the evaluate function matches direct calculation with R.
TEST(GaussianConditional, Evaluate1) {
@ -164,6 +179,7 @@ TEST(GaussianConditional, Evaluate1) {
integral += 0.1 * sigma * density;
}
EXPECT_DOUBLES_EQUAL(1.0, integral, 1e-9);
EXPECT(checkInvariants(&density::unitPrior, mean));
}
/* ************************************************************************* */