Class Rebut
- java.lang.Object
 - 
- net.sf.tweety.arg.lp.semantics.attack.Rebut
 
 
- 
- All Implemented Interfaces:
 AttackStrategy
public class Rebut extends java.lang.Object implements AttackStrategy
This notion of attack models the rebut relation. A rebuts B iff there is L in conclusion(A) and \neg L in conclusion(B).- Author:
 - Sebastian Homann
 
 
- 
- 
Constructor Summary
Constructors Modifier Constructor Description privateRebut()Private constructor. 
- 
Method Summary
Modifier and Type Method Description booleanattacks(Argument a, Argument b)Returns "true" iff the first argument attacks the second argument.static RebutgetInstance()Returns the singleton instance of this class.java.lang.StringtoAbbreviation()Returns the abbreviated identifier of this notion of attack, i.e.java.lang.StringtoString() 
 - 
 
- 
- 
Field Detail
- 
instance
private static Rebut instance
Singleton instance. 
 - 
 
- 
Method Detail
- 
getInstance
public static Rebut getInstance()
Returns the singleton instance of this class.- Returns:
 - the singleton instance of this class.
 
 
- 
attacks
public boolean attacks(Argument a, Argument b)
Description copied from interface:AttackStrategyReturns "true" iff the first argument attacks the second argument.- Specified by:
 attacksin interfaceAttackStrategy- Parameters:
 a- some argumentb- some argument- Returns:
 - "true" iff 
aattacksb. 
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
- 
toAbbreviation
public java.lang.String toAbbreviation()
Description copied from interface:AttackStrategyReturns the abbreviated identifier of this notion of attack, i.e. "a" for attack- Specified by:
 toAbbreviationin interfaceAttackStrategy- Returns:
 - a short identifier
 
 
 - 
 
 -