File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ class BigFloatConfig extends JavaLibraryScriptCore {
89
89
* @param {boolean } [options.allowPrecisionMismatch=false] - 精度の不一致を許容する
90
90
* @param {boolean } [options.mutateResult=false] - 破壊的な計算(自身の上書き)をする (falseは新インスタンスを作成)
91
91
* @param {number } [options.roundingMode=BigFloatConfig.ROUND_TRUNCATE] - 丸めモード
92
- * @param {BigInt } [options.extraPrecision=1n ] - 追加の精度
92
+ * @param {BigInt } [options.extraPrecision=2n ] - 追加の精度
93
93
* @param {number } [options.piAlgorithm=BigFloatConfig.PI_CHUDNOVSKY] - 円周率算出アルゴリズム
94
94
* @param {number } [options.sqrtMaxNewtonSteps=50] - 平方根[ニュートン法]の最大ステップ数
95
95
* @param {number } [options.sqrtMaxChebyshevSteps=30] - 平方根[チェビシェフ法]の最大ステップ数
@@ -100,7 +100,7 @@ class BigFloatConfig extends JavaLibraryScriptCore {
100
100
allowPrecisionMismatch = false ,
101
101
mutateResult = false ,
102
102
roundingMode = BigFloatConfig . ROUND_TRUNCATE ,
103
- extraPrecision = 1n ,
103
+ extraPrecision = 2n ,
104
104
piAlgorithm = BigFloatConfig . PI_CHUDNOVSKY ,
105
105
sqrtMaxNewtonSteps = 50 ,
106
106
sqrtMaxChebyshevSteps = 30 ,
@@ -128,7 +128,7 @@ class BigFloatConfig extends JavaLibraryScriptCore {
128
128
/**
129
129
* 追加の精度
130
130
* @type {BigInt }
131
- * @default 1n
131
+ * @default 2n
132
132
*/
133
133
this . extraPrecision = extraPrecision ;
134
134
/**
You can’t perform that action at this time.
0 commit comments