Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion highs/lp_data/HConst.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
#include "util/HighsInt.h"

const std::string kHighsCopyrightStatement =
"Copyright (c) 2025 HiGHS under MIT licence terms";
#ifdef HIPO
"Copyright (c) 2026 under Apache 2.0 license terms";
#else
"Copyright (c) 2026 under MIT licence terms";
#endif

const size_t kHighsSize_tInf = (std::numeric_limits<size_t>::max)();
const HighsInt kHighsIInf = (std::numeric_limits<HighsInt>::max)();
Expand Down
Loading