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