
aima.core.probability.proposition.NotProposition 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.probability.proposition;
import java.util.Map;
import aima.core.probability.RandomVariable;
public class NotProposition extends AbstractProposition implements
UnarySentenceProposition {
private Proposition proposition;
//
private String toString = null;
public NotProposition(Proposition prop) {
if (null == prop) {
throw new IllegalArgumentException(
"Proposition to be negated must be specified.");
}
// Track nested scope
addScope(prop.getScope());
addUnboundScope(prop.getUnboundScope());
proposition = prop;
}
@Override
public boolean holds(Map possibleWorld) {
return !proposition.holds(possibleWorld);
}
@Override
public String toString() {
if (null == toString) {
StringBuilder sb = new StringBuilder();
sb.append("(NOT ");
sb.append(proposition.toString());
sb.append(")");
toString = sb.toString();
}
return toString;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy