Converts large integers form base 10 to base 2 using mpfr numbers by Pmpfr package.
toBaseTwo(x, m = 128, prec = 512, num.CPU = 4)
an mpfr vector including the data in base 10.
desired bit length in the output.
precision of the calculations.
the number of CPUs that will be used in parallel computing.
a list of mpfr numbers that contains the input data in base 2 format.
The function toBaseTwo utilizes the package parallel to make calculation utilizing parallel computing.