You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now our code has a large number of std::visit calls just to get the domains or is_observed bit of a T_clean_relation or T_noisy_relation.
These could be eliminated if we switched T_relation from being a std::variant into being a base class that would contain the domains and is_observed and have T_clean_relation and T_noisy_relation inherit from it.
The text was updated successfully, but these errors were encountered:
Right now our code has a large number of std::visit calls just to get the domains or is_observed bit of a T_clean_relation or T_noisy_relation.
These could be eliminated if we switched T_relation from being a std::variant into being a base class that would contain the domains and is_observed and have T_clean_relation and T_noisy_relation inherit from it.
The text was updated successfully, but these errors were encountered: