#ifndef IOPTIMIZER_H #define IOPTIMIZER_H #include "json.hpp" #include namespace mdd { class IOptimizer { public: //virtual bool connect(std::shared_ptr module) = 0; /* */ virtual bool setEvaluation(std::string func) = 0; virtual std::vector> update() = 0; }; } #endif // !IOPTIMIZER_H