Package org.tweetyproject.arg.dung.util
Class EnumeratingDungTheoryGenerator
java.lang.Object
org.tweetyproject.arg.dung.util.EnumeratingDungTheoryGenerator
- All Implemented Interfaces:
Iterator<DungTheory>,DungTheoryGenerator,BeliefSetIterator<Argument,DungTheory>
- Direct Known Subclasses:
EnumeratingDilationGenerator
This generator generators all possible Dung argumentation theories.
It starts with the argumentation frameworks just consisting of one
arguments and then increases their size.
- Author:
- Matthias Thimm
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new enumerating Dung theory generator. -
Method Summary
Modifier and TypeMethodDescriptionintbooleanhasNext()next()Generates a new Dung theory where the given argument is enforced to be in the grounded extensionbooleansetAttacks(BitSet newAtks) Sets a new pattern of attacks from which the generator continues to generate new frameworks.booleansetCurrentSize(int newSize) Sets a new number of arguments for this generator and resets the generation process, so that the generator restarts going through all possible attacksvoidsetSeed(long seed) Set the seed for the generation.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining, remove
-
Constructor Details
-
EnumeratingDungTheoryGenerator
public EnumeratingDungTheoryGenerator()Creates a new enumerating Dung theory generator.
-
-
Method Details
-
getAttacks
- Returns:
- A BitSet representing the attack pattern in the last generated framework.
-
getCurrentSize
public int getCurrentSize()- Returns:
- Number of arguments of the last argumentation framework created by this generator, if the number was not newly set.
-
hasNext
public boolean hasNext()- Specified by:
hasNextin interfaceBeliefSetIterator<Argument,DungTheory> - Specified by:
hasNextin interfaceDungTheoryGenerator- Specified by:
hasNextin interfaceIterator<DungTheory>
-
next
- Specified by:
nextin interfaceBeliefSetIterator<Argument,DungTheory> - Specified by:
nextin interfaceDungTheoryGenerator- Specified by:
nextin interfaceIterator<DungTheory>
-
next
Description copied from interface:DungTheoryGeneratorGenerates a new Dung theory where the given argument is enforced to be in the grounded extension- Specified by:
nextin interfaceDungTheoryGenerator- Parameters:
arg- an argument that is enforced to be in the grounded extension of the generated theory.- Returns:
- a Dung theory,
-
setAttacks
Sets a new pattern of attacks from which the generator continues to generate new frameworks.- Parameters:
newAtks- BitSet representing a pattern of attacks in a argumentation framework.- Returns:
- true iff the specified attack pattern was successfully set
-
setCurrentSize
public boolean setCurrentSize(int newSize) Sets a new number of arguments for this generator and resets the generation process, so that the generator restarts going through all possible attacks- Parameters:
newSize- Number of arguments of the generator. Has to be > 0.- Returns:
- true iff the number of arguments was successfully set
-
setSeed
public void setSeed(long seed) Description copied from interface:DungTheoryGeneratorSet the seed for the generation. Every two runs of generations with the same seed are ensured to be identical.- Specified by:
setSeedin interfaceDungTheoryGenerator- Parameters:
seed- some seed.
-