:github_url: https://github.com/svenevs/exhale-companion .. _program_listing_file_ellcpp_cut_config.hpp: Program Listing for File cut_config.hpp ======================================= |exhale_lsh| :ref:`Return to documentation for file ` (``ellcpp/cut_config.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include enum class CUTStatus { success, nosoln, smallenough, noeffect }; struct Options { unsigned int max_it = 2000; double tol = 1e-8; }; struct CInfo { bool feasible; size_t num_iters; CUTStatus status; };