Files
OrdonnancementCorrectif/src/OrdoCorr/Solver/TrackPlansILP/Solution.hpp
T
2026-06-03 22:48:34 +02:00

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