Why not using `java.lang.Math.pow(x,y)` directly in `SimpleMath`? Is there a real advantage to use a specialized method for the `int` argument? - https://github.com/mike-gimelfarb/numerical-integration/blob/ebe0a85f53ef27c75f1f68ae9a5a67369fe9220d/src/main/java/utils/SimpleMath.java#L52
Why not using
java.lang.Math.pow(x,y)directly inSimpleMath?Is there a real advantage to use a specialized method for the
intargument?numerical-integration/src/main/java/utils/SimpleMath.java
Line 52 in ebe0a85