:github_url: https://github.com/svenevs/exhale-companion .. _program_listing_file_ellip_gp_solve.hpp: Program Listing for File gp_solve.hpp ===================================== |exhale_lsh| :ref:`Return to documentation for file ` (``ellip/gp_solve.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef _GP_SOLVE_HPP #define _GP_SOLVE_HPP #include "ellipsoid.hpp" #include "posynomial.hpp" #include #include template class gp_base { using Vec = std::valarray; public: gp_base() { } ~gp_base() { } Info4EM operator()(const Vec& x) const; protected: std::vector> _M; }; #endif