remove extra print
parent
7825ffd6d2
commit
f117da2367
|
@ -108,7 +108,7 @@ bool GaussianMixture::equals(const HybridFactor &lf, double tol) const {
|
||||||
// This will return false if either conditionals_ is empty or e->conditionals_
|
// This will return false if either conditionals_ is empty or e->conditionals_
|
||||||
// is empty, but not if both are empty or both are not empty:
|
// is empty, but not if both are empty or both are not empty:
|
||||||
if (conditionals_.empty() ^ e->conditionals_.empty()) return false;
|
if (conditionals_.empty() ^ e->conditionals_.empty()) return false;
|
||||||
std::cout << "checking" << std::endl;
|
|
||||||
// Check the base and the factors:
|
// Check the base and the factors:
|
||||||
return BaseFactor::equals(*e, tol) &&
|
return BaseFactor::equals(*e, tol) &&
|
||||||
conditionals_.equals(e->conditionals_,
|
conditionals_.equals(e->conditionals_,
|
||||||
|
|
Loading…
Reference in New Issue