.. _program_listing_file_include_cvrp_greedy.hpp: Program Listing for File greedy.hpp =================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/cvrp/greedy.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef GREEDY_HPP #define GREEDY_HPP #include "cvrp/utils.hpp" class GreedySolution : public Solution { public: GreedySolution(const std::vector& nodes, const std::vector& vehicles, const std::vector>& distanceMatrix); explicit GreedySolution(const Problem& p); void Solve() override; }; #endif // GREEDY_HPP