20 lines
461 B
C++
20 lines
461 B
C++
#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<STFMockInstance> mock;
|
|
std::unordered_map<unsigned short, Decision> decisions;
|
|
unsigned int cost;
|
|
unsigned int diagCost;
|
|
}SASolution;
|
|
}
|
|
|
|
|
|
#endif |