/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* */ /* 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 lp_data/HighsDebug.cpp * @brief */ #include "lp_data/HighsDebug.h" #include // For std::max #include // For std::max HighsStatus debugDebugToHighsStatus(const HighsDebugStatus debug_status) { switch (debug_status) { case HighsDebugStatus::kNotChecked: case HighsDebugStatus::kOk: case HighsDebugStatus::kSmallError: return HighsStatus::kOk; case HighsDebugStatus::kWarning: case HighsDebugStatus::kLargeError: return HighsStatus::kWarning; case HighsDebugStatus::kError: case HighsDebugStatus::kExcessiveError: case HighsDebugStatus::kLogicalError: return HighsStatus::kError; default: return HighsStatus::kOk; } } HighsDebugStatus debugWorseStatus(const HighsDebugStatus status0, const HighsDebugStatus status1) { return static_cast( std::max((HighsInt)status0, (HighsInt)status1)); } bool debugVectorRightSize(const std::vector v, const HighsInt right_size) { const HighsInt v_size = v.size(); const bool is_right_size = v_size == right_size; assert(is_right_size); return is_right_size; } bool debugVectorRightSize(const std::vector v, const HighsInt right_size) { const HighsInt v_size = v.size(); const bool is_right_size = v_size == right_size; assert(is_right_size); return is_right_size; }