float_rounding and numeric_precision do almost the same thing in verify, and having both is potentially confusing. For instance, verify(parse("0.0000001"), parse("0.0000002"), numeric_precision=99999) comes out True because float_rounding is 6 by default.
Could we get rid of float_rounding and just relying on numeric_precision? Would you like me to submit a PR that makes this change?
float_roundingandnumeric_precisiondo almost the same thing inverify, and having both is potentially confusing. For instance,verify(parse("0.0000001"), parse("0.0000002"), numeric_precision=99999)comes outTruebecausefloat_roundingis6by default.Could we get rid of
float_roundingand just relying onnumeric_precision? Would you like me to submit a PR that makes this change?