
net.sf.tweety.action.description.analysis.ActionDescriptionConsistencyTester Maven / Gradle / Ivy
/*
* This file is part of "TweetyProject", a collection of Java libraries for
* logical aspects of artificial intelligence and knowledge representation.
*
* TweetyProject is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
* Copyright 2016 The TweetyProject Team
*/
package net.sf.tweety.action.description.analysis;
import net.sf.tweety.action.description.syntax.ActionDescription;
import net.sf.tweety.action.description.syntax.CausalLaw;
import net.sf.tweety.logics.commons.analysis.ConsistencyTester;
/**
* Classes implementing this interface are capable of checking whether a given
* action description is consistent according to some consistency measurements.
*
* @author Sebastian Homann
* @author Tim Janus
* @param the type of causal law
*/
public interface ActionDescriptionConsistencyTester extends ConsistencyTester>{
/**
* Checks whether the given set of causal rules is consistent.
*
* @param causalRules a set of causal rules.
* @return true iff the given set of causal rules is consistent.
*/
boolean isConsistent(ActionDescription causalRules );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy