initialCommit 4 ans en retard

This commit is contained in:
tom
2026-06-03 22:48:34 +02:00
commit 4fc8a7be89
163 changed files with 28981 additions and 0 deletions
@@ -0,0 +1,20 @@
#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