SCIP++ refs/heads/main
 
Loading...
Searching...
No Matches
param.hpp
1#pragma once
2
3#include <string_view>
4
6namespace scippp::params {
7
13template <typename baseType>
14struct Param {
16 std::string_view scipName;
22 constexpr explicit Param(const std::string_view& name)
23 : scipName { name }
24 {
25 }
26};
27
28}
Enum equivalent of SCIP's string parameters.
Definition: param.hpp:6
Stores the argument type and string representation of a parameter.
Definition: param.hpp:14
constexpr Param(const std::string_view &name)
C'tor that stores the original parameter name and its type as template parameter.
Definition: param.hpp:22
std::string_view scipName
Original name of the parameter in SCIP.
Definition: param.hpp:16