#ifndef NETWORK_H #define NETWORK_H #include #include #include #include "Node.h" namespace bayesnet { class Network { private: std::map nodes; public: Network(); ~Network(); void addNode(std::string); void addEdge(std::string, std::string); void fit(const std::vector>&); std::vector predict(const std::vector>&); }; } #endif