#ifndef SOLUTION_HPP #define SOLUTION_HPP #include "../../../General/Model/STFMockInstance.hpp" #include "sourceSolTrPlan.hpp" namespace solverlib { using namespace modellib; typedef struct _sol{ ESourceTrackPlan source; std::shared_ptr mock; std::unordered_map decisions; unsigned int cost; unsigned int diagCost; }SASolution; } #endif