Provide (experimental) clang-format file
[TortoiseGit.git] / ext / OGDF / ogdf / lpsolver / LPSolver.h
blob007ff562602dae5007ea05405c8cd0fffcfa23bd
1 /*
2 * $Revision: 2523 $
4 * last checkin:
5 * $Author: gutwenger $
6 * $Date: 2012-07-02 20:59:27 +0200 (Mon, 02 Jul 2012) $
7 ***************************************************************/
9 /** \file
10 * \brief Declaration of class LPSolver which is the front-end
11 * for the LP solver
13 * \author Carsten Gutwenger
15 * \par License:
16 * This file is part of the Open Graph Drawing Framework (OGDF).
18 * \par
19 * Copyright (C)<br>
20 * See README.txt in the root directory of the OGDF installation for details.
22 * \par
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License
25 * Version 2 or 3 as published by the Free Software Foundation;
26 * see the file LICENSE.txt included in the packaging of this file
27 * for details.
29 * \par
30 * This program is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
35 * \par
36 * You should have received a copy of the GNU General Public
37 * License along with this program; if not, write to the Free
38 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
39 * Boston, MA 02110-1301, USA.
41 * \see http://www.gnu.org/copyleft/gpl.html
42 ***************************************************************/
45 #ifdef _MSC_VER
46 #pragma once
47 #endif
50 #ifndef OGDF_LP_SOLVER_H
51 #define OGDF_LP_SOLVER_H
53 #if defined(OGDF_OWN_LPSOLVER)
54 #include <ogdf/internal/lpsolver/LPSolver_ogdf.h>
56 #elif defined(USE_COIN)
57 #include <ogdf/internal/lpsolver/LPSolver_coin.h>
58 #endif
61 #endif