Bug on float print
Printing a float in EPOS ignores 0s after the ".":
https://gitlab.lisha.ufsc.br/epos/epos/-/blob/develop/include/utility/ostream.h#L135
long long b = (long long) f;
(*this) << b << ".";
long long m = (long long) ((f - b) * 10000);
for instance, 5.0003 - 5 = 0.0003 --> 0.0003*10000 = 3 --> final print is 5.3