14 #ifndef DIGNEA_BPP_NEXT_FIT_H
15 #define DIGNEA_BPP_NEXT_FIT_H
17 #include <dignea/core/Heuristic.h>
20 #include <nlohmann/json.hpp>
39 string getName()
const {
return "NextFit"; };
41 string getID()
const {
return "NextFit"; }
43 void setProblem(shared_ptr<BPP> prob);
45 void setProblem(
BPP *prob);
nlohmann::json json
Definition: MinKnap.h:85
Class to represent the Bin Packing Problem.
Definition: BPP.h:27
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
Next Fit Heuristic for the BPP. Places each item into the current bin.
Definition: NextFit.h:31
string getName() const
Returns the name of the algorithm, this is used in the to_json method. Must be implemented in the sub...
Definition: NextFit.h:39
string getID() const
Returns the identificator of the algorithm, this is used in the to_json method. Must be implemented i...
Definition: NextFit.h:41