
21 Jan
2025
21 Jan
'25
7:48 p.m.
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.