Continue refactoring

This commit is contained in:
2025-02-27 09:57:40 +01:00
parent 4e3043b2d1
commit f51d5b5e40
5 changed files with 28 additions and 12 deletions

View File

@@ -39,9 +39,9 @@ namespace platform {
bayesnet::status_t getStatus() const override { return status; }
std::vector<std::string> getNotes() const override { return notes; }
std::vector<std::string> graph(const std::string& title = "") const override { return {}; }
void set_active_parents(const std::vector<int>& active_parents) { for (const auto& parent : active_parents) aode_.add_active_parent(parent); }
void add_active_parent(int parent) { aode_.add_active_parent(parent); }
void remove_last_parent() { aode_.remove_last_parent(); }
void add_active_parents(const std::vector<int>& active_parents);
void add_active_parent(int parent);
void remove_last_parent();
protected:
bool debug = false;
Xaode aode_;