remove override from TableFactor definition

release/4.3a0
Varun Agrawal 2025-01-05 13:56:54 -05:00
parent 75a4e98715
commit 700ad2bae3
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ DecisionTreeFactor TableFactor::operator*(const DecisionTreeFactor& f) const {
/* ************************************************************************ */
DiscreteFactor::shared_ptr TableFactor::multiply(
const DiscreteFactor::shared_ptr& f) const override {
const DiscreteFactor::shared_ptr& f) const {
DiscreteFactor::shared_ptr result;
if (auto tf = std::dynamic_pointer_cast<TableFactor>(f)) {
result = std::make_shared<TableFactor>(this->operator*(*tf));