From: Ivan Matek (libbooze_at_[hidden])
Date: 2025-01-21 19:48:48


For me the interesting thing about comparisons beside Peter improvements is
that benefits from normalization seem to depend on how many times user does
certain operation.

user does
auto x = a * b * c * d * e;
x < y;

versus user does
auto x = a*b;
x<y;
x<z;
x<t;
x<u;
x<v;

It seems to me that there is no clear faster way here(doing or not doing
normalization), it depends on what user is doing.