Package net.sf.tweety.arg.dung.util
Class DungTheoryGenerationParameters
- java.lang.Object
-
- net.sf.tweety.arg.dung.util.DungTheoryGenerationParameters
-
public class DungTheoryGenerationParameters extends java.lang.Object
This class lists some parameters for Dung theory generation.- Author:
- Matthias Thimm
-
-
Field Summary
Fields Modifier and Type Field Description double
attackProbability
The attack probability for each two arguments in the theory.boolean
avoidSelfAttacks
Whether to avoid self-attacks.boolean
enforceTreeShape
Whether the generated theory must have a tree shape.int
numberOfArguments
The number of arguments to be created in a theory.
-
Constructor Summary
Constructors Constructor Description DungTheoryGenerationParameters()
-
Method Summary
Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
numberOfArguments
public int numberOfArguments
The number of arguments to be created in a theory.
-
attackProbability
public double attackProbability
The attack probability for each two arguments in the theory.
-
avoidSelfAttacks
public boolean avoidSelfAttacks
Whether to avoid self-attacks.
-
enforceTreeShape
public boolean enforceTreeShape
Whether the generated theory must have a tree shape.
-
-