delpi  0.0.1
DElta-complete LP solver
Loading...
Searching...
No Matches
parser.h
1
7#pragma once
8
9#include <memory>
10
11#include "delpi/parser/Driver.h"
12#include "delpi/solver/LpSolver.h"
13
14namespace delpi {
15
21std::unique_ptr<Driver> GetDriverInstance(LpSolver& lp_solver);
22
23} // namespace delpi
Facade class that hides the underlying LP solver used by delpi.
Definition LpSolver.h:60
Global namespace for the delpi library.
std::unique_ptr< Driver > GetDriverInstance(LpSolver &lp_solver)
Get the correct driver instance based on the actual format set in the Config.
Definition parser.cpp:34