Class StrongEquivalence
java.lang.Object
org.tweetyproject.arg.dung.equivalence.StrongEquivalence
- All Implemented Interfaces:
Equivalence<DungTheory>
- Direct Known Subclasses:
NormalExpansionEquivalence
This class defines strong equivalence for
argumentation frameworks wrt. some semantics,
i.e., two AFs F andG are strongly equivalent iff they possess the same set of
extensions wrt. the semantics when conjoined
with some arbitrary AF H.
Can be characterized by a syntactic kernel.- Author:
- Lars Bengel
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStrongEquivalence(EquivalenceKernel kernel) Initialize Strong Equivalence with the given kernelStrongEquivalence(Semantics semantics) Initializes a Strong Equivalence Instance with a kernel for the given semantics -
Method Summary
Modifier and TypeMethodDescriptiongetName()Return the name of this equivalence notionbooleanisEquivalent(Collection<DungTheory> objects) Checks whether the specified collection of objects are pairwise equivalentbooleanisEquivalent(DungTheory theory1, DungTheory theory2) Checks whether the specified objects are equivalent
-
Constructor Details
-
StrongEquivalence
Initializes a Strong Equivalence Instance with a kernel for the given semantics- Parameters:
semantics- some semantics
-
StrongEquivalence
Initialize Strong Equivalence with the given kernel- Parameters:
kernel- an equivalence kernel
-
-
Method Details
-
isEquivalent
Description copied from interface:EquivalenceChecks whether the specified objects are equivalent- Specified by:
isEquivalentin interfaceEquivalence<DungTheory>- Parameters:
theory1- an object of typeTtheory2- an object of typeT- Returns:
- true, iff both object are equivalent wrt. this equivalence notion
-
isEquivalent
Description copied from interface:EquivalenceChecks whether the specified collection of objects are pairwise equivalent- Specified by:
isEquivalentin interfaceEquivalence<DungTheory>- Parameters:
objects- A collection of objects of typeT- Returns:
- true, iff all objects are equivalent wrt. this equivalence notion
-
getName
Description copied from interface:EquivalenceReturn the name of this equivalence notion- Specified by:
getNamein interfaceEquivalence<DungTheory>- Returns:
- name of this equivalence notion
-