delpi  0.0.1
DElta-complete LP solver
Loading...
Searching...
No Matches
soplex.h
1
11#pragma once
12
13#ifndef DELPI_ENABLED_SOPLEX
14#error SoPlex is not enabled. Please enable it by adding "--//tools:enable_soplex" to the bazel command.
15#endif
16
17#pragma GCC system_header
18
19#include <soplex.h> // IWYU pragma: export
20
21#ifdef DELPI_INCLUDE_FMT
22
23#include "delpi/util/logging.h"
24
25OSTREAM_FORMATTER(soplex::VectorRational)
26OSTREAM_FORMATTER(soplex::Rational)
27OSTREAM_FORMATTER(soplex::SPxSolver::Status)
28OSTREAM_FORMATTER(soplex::DSVectorRational)
29OSTREAM_FORMATTER(soplex::SVectorRational)
30
31#endif