I have a quite frustrating problem.
In my code, I need Mathematica to ignore everything after 10 digits.
For example I need it to treat:
25.26011447795545 as 25.26011448
That is because there are some rounding errors in my calculations, and two numbers that are supposed to be equal, suddenly are not which messes with the rest of my code. Is there any way of fixing it? I tried Block maxprecision but it did not seem to work

N[Round[25.26011447795545, 10^-8], 10]– Bob Hanlon Feb 01 '22 at 03:55AroundandCenteredInterval. – Artes Feb 01 '22 at 04:18==,<,>, etc.) to be done with a tolerance equivalent to ten digits? Are there operations besides comparisons that are to be done with ten digit precision? – Michael E2 Feb 01 '22 at 05:13ComputerArithmetic`package](http://reference.wolfram.com/language/ComputerArithmetic/tutorial/ComputerArithmetic.html) could be used, which probably is implemented in WL. – Michael E2 Feb 02 '22 at 03:29