1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /*                                                                       */
3 /*    This file is part of the HiGHS linear optimization suite           */
4 /*                                                                       */
5 /*    Written and engineered 2008-2021 at the University of Edinburgh    */
6 /*                                                                       */
7 /*    Available as open-source under the MIT License                     */
8 /*                                                                       */
9 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
10 /**@file lp_data/HighsSolve.h
11  * @brief Class-independent utilities for HiGHS
12  * @author Julian Hall, Ivet Galabova, Qi Huangfu and Michael Feldmeier
13  */
14 #ifndef LP_DATA_HIGHSSOLVE_H_
15 #define LP_DATA_HIGHSSOLVE_H_
16 
17 #include "lp_data/HighsModelUtils.h"
18 HighsStatus solveLp(HighsModelObject& highs_model_object, const string message);
19 HighsStatus solveUnconstrainedLp(HighsModelObject& highs_model_object);
20 #endif  // LP_DATA_HIGHSSOLVE_H_
21