/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* This file is part of the HiGHS linear optimization suite */ /* */ /* Written and engineered 2008-2022 at the University of Edinburgh */ /* */ /* Available as open-source under the MIT License */ /* */ /* Authors: Julian Hall, Ivet Galabova, Leona Gottwald and Michael */ /* Feldmeier */ /* */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /**@file io/FilereaderLp.cpp * @brief */ #ifndef IO_FILEREADER_LP_H_ #define IO_FILEREADER_LP_H_ #include #include "io/Filereader.h" #include "io/HighsIO.h" #define BUFFERSIZE 561 #define LP_MAX_LINE_LENGTH 560 #define LP_MAX_NAME_LENGTH 255 #define LP_COMMENT_FILESTART ("File written by Highs .lp filereader") class FilereaderLp : public Filereader { public: FilereaderRetcode readModelFromFile(const HighsOptions& options, const std::string filename, HighsModel& model); HighsStatus writeModelToFile(const HighsOptions& options, const std::string filename, const HighsModel& model); private: // functions to write files HighsInt linelength; void writeToFile(FILE* file, const char* format, ...); void writeToFileLineend(FILE* file); }; #endif