3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-06 15:25:46 +00:00

Fix subsumption terminology

This commit is contained in:
Jakob Rath 2022-09-28 15:35:05 +02:00
parent 7be82a36f2
commit 0dae3bad6a
3 changed files with 18 additions and 40 deletions

View file

@ -69,8 +69,10 @@ std::pair<std::ostream&, bool> polysat_log(LogLevel msg_level, std::string fn, s
size_t width = 20;
size_t padding = 0;
if (width > fn.size())
if (width >= fn.size())
padding = width - fn.size();
else
fn = fn.substr(0, width - 3) + "...";
char const* color = nullptr;
color = level_color(msg_level);
#ifdef _MSC_VER