com.github.chen0040.gp.utils.NumberUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-genetic-programming Show documentation
Show all versions of java-genetic-programming Show documentation
Genetic Programming in Java, including packages on Linear Genetic Programming
package com.github.chen0040.gp.utils;
/**
* Created by xschen on 7/5/2017.
*/
public class NumberUtils {
public static boolean isValid(double number){
return Double.isFinite(number) && !Double.isNaN(number);
}
}