/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* 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 simplex/HEkkInterface.cpp * @brief */ #include "lp_data/HighsLpUtils.h" #include "simplex/HEkk.h" void HEkk::appendColsToVectors(const HighsInt num_new_col, const vector& colCost, const vector& colLower, const vector& colUpper) { appendColsToLpVectors(lp_, num_new_col, colCost, colLower, colUpper); } void HEkk::appendRowsToVectors(const HighsInt num_new_row, const vector& rowLower, const vector& rowUpper) { appendRowsToLpVectors(lp_, num_new_row, rowLower, rowUpper); }