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 {
8989 * @param {boolean } [options.allowPrecisionMismatch=false] - 精度の不一致を許容する
9090 * @param {boolean } [options.mutateResult=false] - 破壊的な計算(自身の上書き)をする (falseは新インスタンスを作成)
9191 * @param {number } [options.roundingMode=BigFloatConfig.ROUND_TRUNCATE] - 丸めモード
92- * @param {BigInt } [options.extraPrecision=1n ] - 追加の精度
92+ * @param {BigInt } [options.extraPrecision=2n ] - 追加の精度
9393 * @param {number } [options.piAlgorithm=BigFloatConfig.PI_CHUDNOVSKY] - 円周率算出アルゴリズム
9494 * @param {number } [options.sqrtMaxNewtonSteps=50] - 平方根[ニュートン法]の最大ステップ数
9595 * @param {number } [options.sqrtMaxChebyshevSteps=30] - 平方根[チェビシェフ法]の最大ステップ数
@@ -100,7 +100,7 @@ class BigFloatConfig extends JavaLibraryScriptCore {
100100 allowPrecisionMismatch = false ,
101101 mutateResult = false ,
102102 roundingMode = BigFloatConfig . ROUND_TRUNCATE ,
103- extraPrecision = 1n ,
103+ extraPrecision = 2n ,
104104 piAlgorithm = BigFloatConfig . PI_CHUDNOVSKY ,
105105 sqrtMaxNewtonSteps = 50 ,
106106 sqrtMaxChebyshevSteps = 30 ,
@@ -128,7 +128,7 @@ class BigFloatConfig extends JavaLibraryScriptCore {
128128 /**
129129 * 追加の精度
130130 * @type {BigInt }
131- * @default 1n
131+ * @default 2n
132132 */
133133 this . extraPrecision = extraPrecision ;
134134 /**
You can’t perform that action at this time.
0 commit comments