Uses of Interface
net.sf.tweety.arg.bipolar.syntax.BipolarEntity
-
Packages that use BipolarEntity Package Description net.sf.tweety.arg.bipolar.syntax -
-
Uses of BipolarEntity in net.sf.tweety.arg.bipolar.syntax
Subinterfaces of BipolarEntity in net.sf.tweety.arg.bipolar.syntax Modifier and Type Interface Description interface
Attack
This interface captures common methods of different interpretations of the attack relation in bipolar abstract argumentation theories.interface
Support
This interface captures common methods of different interpretations of the support relation in bipolar abstract argumentation theories.Classes in net.sf.tweety.arg.bipolar.syntax that implement BipolarEntity Modifier and Type Class Description class
ArgumentSet
This class models a set of arguments used by bipolar abstract argumentation theory.class
BArgument
This class models an argument used by bipolar abstract argumentation theories.class
BinaryAttack
This class models a binary attack relation between two arguments.class
BinarySupport
This class models a support between two arguments.class
SetAttack
This class models an attack between a set of arguments and an argument.class
SetSupport
This class models a support between a set of arguments and an argument.Methods in net.sf.tweety.arg.bipolar.syntax that return BipolarEntity Modifier and Type Method Description BipolarEntity
Attack. getAttacked()
BipolarEntity
Attack. getAttacker()
BipolarEntity
Support. getSupported()
BipolarEntity
Support. getSupporter()
Methods in net.sf.tweety.arg.bipolar.syntax that return types with arguments of type BipolarEntity Modifier and Type Method Description java.util.Set<BipolarEntity>
AbstractBipolarFramework. getAttackers(BArgument argument)
Computes the set {A | (A,argument) in attacks}.java.util.Set<BipolarEntity>
EvidentialArgumentationFramework. getAttackingSets(BArgument argument)
Computes the set {S | (S, argument) in attacks}.java.util.Set<BipolarEntity>
AbstractBipolarFramework. getDirectSupporters(BArgument argument)
Computes the set {A | (A,argument) in supports}.Methods in net.sf.tweety.arg.bipolar.syntax with parameters of type BipolarEntity Modifier and Type Method Description java.util.Set<BArgument>
AbstractBipolarFramework. getAttacked(BipolarEntity arg)
Computes the set {A | (argument,A) in attacks}.java.util.Set<BArgument>
AbstractBipolarFramework. getDirectSupported(BipolarEntity arg)
Computes the set {A | (argument,A) in supports}.boolean
AbstractBipolarFramework. isAttackedBy(BArgument arg1, BipolarEntity arg2)
Checks whether arg1 is attacked by arg2.boolean
AbstractBipolarFramework. isDirectSupportedBy(BArgument arg1, BipolarEntity arg2)
Checks whether arg1 is directly supported by arg2.
-