public class LdoInterpretation extends AbstractInterpretation
| Modifier and Type | Field and Description |
|---|---|
private Extension |
ext
the extension
|
private int |
sem
The used semantics
|
private DungTheory |
theory
The abstract argumentation framework
|
| Constructor and Description |
|---|
LdoInterpretation(DungTheory theory,
Extension ext,
int semantics)
Creates a new interpretation
|
LdoInterpretation(DungTheory theory,
int semantics)
Creates a new interpretation
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
satisfies(BeliefBase beliefBase)
Checks whether this interpretation satisfies the given knowledge base.
|
boolean |
satisfies(Formula formula)
Checks whether this interpretation satisfies the given formula.
|
satisfiesprivate DungTheory theory
private Extension ext
private int sem
public LdoInterpretation(DungTheory theory, Extension ext, int semantics)
theory - an abstract argumentation frameworkext - an extension (possibly null)semantics - the used semantics (see net.sf.tweety.arg.dung.semantics.Semantics)public LdoInterpretation(DungTheory theory, int semantics)
theory - an abstract argumentation frameworksemantics - the used semantics (see net.sf.tweety.arg.dung.semantics.Semantics)public boolean satisfies(Formula formula) throws java.lang.IllegalArgumentException
Interpretationformula - a formula .java.lang.IllegalArgumentException - if the formula does not correspond
to the expected language.public boolean satisfies(BeliefBase beliefBase) throws java.lang.IllegalArgumentException
InterpretationbeliefBase - a knowledge base.java.lang.IllegalArgumentException - IllegalArgumentException if the knowledgebase does not correspond
to the expected language.