public class HsSampler extends BeliefBaseSampler<PlBeliefSet>
| Modifier and Type | Field and Description |
|---|---|
private int |
incvalue
The inconsistency value of the generated belief sets
(wrt.
|
DEFAULT_MAXIMUM_BELIEFBASE_LENGTH, DEFAULT_MINIMUM_BELIEFBASE_LENGTH| Constructor and Description |
|---|
HsSampler(PropositionalSignature signature,
int incvalue)
Creates a new sample for the given signature
which generates propositional belief sets with the
given inconsistency value (wrt.
|
| Modifier and Type | Method and Description |
|---|---|
private java.util.List<PropositionalFormula> |
getCanonicalFormulas(int num,
PropositionalSignature sig)
For a signature {a1,...,an} creates num different canonical and mutually exclusive
formulas of the form a1a2a3, a1a2-a3, a1-a2a3, etc.
|
PlBeliefSet |
randomSample(int minLength,
int maxLength)
This method randomly samples a single belief base of the given signature
with the given belief base length.
|
getSignature, randomSample, randomSampleprivate int incvalue
public HsSampler(PropositionalSignature signature, int incvalue)
signature - some propositional signatureincvalue - some inconsistency value.public PlBeliefSet randomSample(int minLength, int maxLength)
BeliefBaseSamplerrandomSample in class BeliefBaseSampler<PlBeliefSet>minLength - the minimum length of the belief base.maxLength - the maximum length of the belief base.private java.util.List<PropositionalFormula> getCanonicalFormulas(int num, PropositionalSignature sig)
num - the number of formulas to be generated.sig - the signature (guaranteed to be large enough)