dignea  1.0.0
Diverse Instance Generator with Novelty Search and Evolutionary Algorithms
Combo.h
Go to the documentation of this file.
1 
11 #ifndef DIGNEA_KP_Combo_HEURISTIC_H
12 #define DIGNEA_KP_Combo_HEURISTIC_H
13 
14 #include <dignea/core/Heuristic.h>
15 #include <dignea/problems/KPNR.h>
16 
17 #include <nlohmann/json.hpp>
18 #include <vector>
19 
20 using json = nlohmann::json;
21 using namespace std;
22 
28 class Combo : public Heuristic<BoolFloatSolution> {
29  public:
30  Combo();
31 
32  virtual ~Combo() = default;
33 
34  void run() override;
35 
36  string getName() const { return "Combo KP"; };
37 
38  string getID() const { return "Combo"; }
39 
40  void setProblem(shared_ptr<KP> prob);
41 
42  void setProblem(KP *prob);
43 
44  Front<BoolFloatSolution> getResults() const override;
45 };
46 
47 #endif // DIGNEA_KP_Combo_HEURISTIC_H
nlohmann::json json
Definition: MinKnap.h:85
Combo Heuristic for the Knapsack Problem.
Definition: Combo.h:28
string getID() const
Returns the identificator of the algorithm, this is used in the to_json method. Must be implemented i...
Definition: Combo.h:38
string getName() const
Returns the name of the algorithm, this is used in the to_json method. Must be implemented in the sub...
Definition: Combo.h:36
Front class which stores the final results of an EA execution.
Definition: Front.h:26
Base heuristic class. This is the skeleton for future heuristic implementations. Extends AbstractEA f...
Definition: Heuristic.h:19
Class representing a Knapsack Problem.
Definition: KP.h:28