Skip to content
Snippets Groups Projects
Commit d3784d31 authored by Prahlad Joshi's avatar Prahlad Joshi
Browse files

Fixing RRuntime.isNAorNaN.

parent 680eed40
Branches
No related tags found
No related merge requests found
......@@ -163,7 +163,7 @@ public class RRuntime {
}
public static boolean isNAorNaN(double d) {
return Double.isNaN(d);
return isNA(d) || Double.isNaN(d);
}
@SlowPath
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment