aima.core.logic.fol.Quantifiers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aima-core Show documentation
Show all versions of aima-core Show documentation
AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.
package aima.core.logic.fol;
/**
* @author Ciaran O'Reilly
*
*/
public class Quantifiers {
public static final String FORALL = "FORALL";
public static final String EXISTS = "EXISTS";
public static boolean isFORALL(String quantifier) {
return FORALL.equals(quantifier);
}
public static boolean isEXISTS(String quantifier) {
return EXISTS.equals(quantifier);
}
}