1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-09-05 23:37:09 -07:00

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

This commit is contained in:
Danila Fedorin 2017-07-28 11:19:41 -07:00
parent c1bf308d6d
commit 2fa51fc997

View File

@ -246,7 +246,7 @@ public class StandardPlugin extends Plugin {
* @return the nth term of the series.
*/
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())));
}
/**