SCIP++ refs/heads/main
 
Loading...
Searching...
No Matches
solution.hpp
1#pragma once
2
3// forward declare
4struct Scip;
5struct SCIP_Sol;
6
7namespace scippp {
8
13struct Solution {
15 Scip* scip { nullptr };
17 SCIP_Sol* sol { nullptr };
18};
19
20}
C++ wrapper for SCIP.
Wrapper for a SCIP solution.
Definition: solution.hpp:13
Scip * scip
Pointer to the underlying SCIP object.
Definition: solution.hpp:15
SCIP_Sol * sol
Pointer to the underlying SCIP solution.
Definition: solution.hpp:17