1
0
镜像自地址 https://github.com/DanilaFe/abacus 已同步 2025-07-15 14:01:56 -07:00

Fix null pointer exceptions associated with turning ! into an operator.

这个提交包含在:
Danila Fedorin 2017-07-28 11:19:41 -07:00
父节点 c1bf308d6d
当前提交 2fa51fc997

查看文件

@ -246,7 +246,7 @@ public class StandardPlugin extends Plugin {
* @return the nth term of the series. * @return the nth term of the series.
*/ */
private NumberInterface getExpSeriesTerm(int n, NumberInterface x){ private NumberInterface getExpSeriesTerm(int n, NumberInterface x){
return x.intPow(n).divide(this.getFunction("!").apply((new NaiveNumber(n)).promoteTo(x.getClass()))); return x.intPow(n).divide(this.getOperator("!").getFunction().apply((new NaiveNumber(n)).promoteTo(x.getClass())));
} }
/** /**