Arkulib
Constant.hpp
Go to the documentation of this file.
1
10#pragma once
11
13 const unsigned int DEFAULT_ITERATIONS_FROM_FP = 10;
14 const double DEFAULT_THRESHOLD_FROM_FP = 0.01;
15 const unsigned int DEFAULT_MAX_DIGITS_APPROXIMATE = 7;
16 const unsigned int DEFAULT_KEPT_DIGITS_APPROXIMATE = 3;
17 const unsigned int DEFAULT_COUT_ERATIONAL_DIGITS = 6;
18}
const unsigned int DEFAULT_ITERATIONS_FROM_FP
Default iterations used in the fromFloatingPoint recursive algorithm.
Definition: Constant.hpp:13
const unsigned int DEFAULT_COUT_ERATIONAL_DIGITS
The default precision set for ERational std::cout.
Definition: Constant.hpp:17
const unsigned int DEFAULT_MAX_DIGITS_APPROXIMATE
The max digits handled by the method toApproximation.
Definition: Constant.hpp:15
const unsigned int DEFAULT_KEPT_DIGITS_APPROXIMATE
The default precision set for toApproximation.
Definition: Constant.hpp:16
const double DEFAULT_THRESHOLD_FROM_FP
Default iterations used in the fromFloatingPoint recursive algorithm.
Definition: Constant.hpp:14