Skip to content

Commit

Permalink
Fix #20
Browse files Browse the repository at this point in the history
  • Loading branch information
Naruyoko committed Aug 7, 2022
1 parent 23fccc4 commit fee58d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ExpantaNum.js
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@
return negln.lambertw().div(negln);
}
var j=t.slog(10).add(other);
j.operator(2,(other.operator(2)||0)+1);
j.operator(2,(j.operator(2)||0)+1);
j.standardize();
return j;
}
Expand Down Expand Up @@ -923,7 +923,7 @@
r=ExpantaNum.ZERO;
}
var j=r.add(other);
j.operator(arrows,(other.operator(arrows)||0)+1);
j.operator(arrows,(j.operator(arrows)||0)+1);
j.standardize();
return j;
}
Expand Down

0 comments on commit fee58d1

Please sign in to comment.