Skip to content

Commit

Permalink
improve console log
Browse files Browse the repository at this point in the history
  • Loading branch information
tbruyelle committed Dec 3, 2024
1 parent aee1d22 commit bd12eef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/deposit.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ function computeDeposit(n) {
console.log(`n - N + beta = ${n - N + beta}`)
console.log(`(Math.abs(n - N + beta)) ** (1/k) = ${v}`)
console.log(`alpha * (Math.abs(n - N + beta)) ** (1/k) = ${alpha * v}`)
console.log(`----> D=${D}`)
console.log('***********************************')
if (D < defaultDeposit) {
D = defaultDeposit
}
Expand Down

0 comments on commit bd12eef

Please sign in to comment.