There is a method for numerical integration that uses Brikhoff ergodic theorem?
For example if we have a irrational number $\alpha$ we know that for every continuous function $f \colon [0,1] \to \mathbb{R}$ with $f(0)=f(1)$ we have
$$\frac{1}{n} \sum_{i=0}^{n-1} f(i\cdot \alpha \mod 1) \to \int_0^1f(x)dx $$
because the irrational rotation in $\mathbb{R} / \mathbb{Z}$ is uniquely ergodic.
The problem here is the rate of convergence and that computers don't have irrational numbers :(
Any help or reference will be appriciated
If you have only a fixed precision available, then there cannot be a numerical integration method of this type, because you cannot represent irrational numbers in fixed finite precision, as you pointed out. If your precision depended on $n$, then you could attempt to control the precision and $n$ simultaneously to get an error control. I think this would require some estimate of the modulus of continuity of $f$ along with careful estimates of the error in actually computing $f$ as well. This is all very inconvenient on the hardware we have available to us, because performance is much higher in the floating point arithmetic that we have natively available, which on most hardware maxes out at double precision. Put differently, the ratio of the speed of double precision to the speed of single precision is smaller than the ratio of the speed of quadruple precision to the speed of double precision, and the difference is quite large.
That said, I would not be surprised if this general idea were a common technique to accelerate convergence of Monte Carlo methods.