SCIP++ refs/heads/main
 
Loading...
Searching...
No Matches
iis.hpp
1#pragma once
2
3#include <string>
4#include <vector>
5
6namespace scippp {
7
12struct IIS {
14 std::vector<std::string> consIds;
15};
16
17}
C++ wrapper for SCIP.
A data structure to hold an IIS (Irreducible Infeasible Subsystem).
Definition iis.hpp:12
std::vector< std::string > consIds
Ids of the constraints in the IIS.
Definition iis.hpp:14