Package owl.automaton.acceptance
Class EmersonLeiAcceptance
- java.lang.Object
-
- owl.automaton.acceptance.OmegaAcceptance
-
- owl.automaton.acceptance.EmersonLeiAcceptance
-
public final class EmersonLeiAcceptance extends OmegaAcceptance
-
-
Constructor Summary
Constructors Constructor Description EmersonLeiAcceptance(int sets, jhoafparser.ast.BooleanExpression<jhoafparser.ast.AtomAcceptance> expression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intacceptanceSets()Optional<BitSet>acceptingSet()Returns a set of indices which repeated infinitely often are accepting orOptional.empty()if no such set exists.jhoafparser.ast.BooleanExpression<jhoafparser.ast.AtomAcceptance>booleanExpression()Get the canonical representation asBooleanExpression.Stringname()Optional<BitSet>rejectingSet()Returns a set of indices which repeated infinitely often are rejecting orOptional.empty()if no such set exists.-
Methods inherited from class owl.automaton.acceptance.OmegaAcceptance
isAccepting, isAcceptingEdge, isWellFormedAutomaton, isWellFormedEdge, nameExtra, toString
-
-
-
-
Method Detail
-
acceptanceSets
public int acceptanceSets()
- Specified by:
acceptanceSetsin classOmegaAcceptance
-
booleanExpression
public jhoafparser.ast.BooleanExpression<jhoafparser.ast.AtomAcceptance> booleanExpression()
Description copied from class:OmegaAcceptanceGet the canonical representation asBooleanExpression.- Specified by:
booleanExpressionin classOmegaAcceptance
-
name
public String name()
- Specified by:
namein classOmegaAcceptance
-
acceptingSet
public Optional<BitSet> acceptingSet()
Description copied from class:OmegaAcceptanceReturns a set of indices which repeated infinitely often are accepting orOptional.empty()if no such set exists.- Specified by:
acceptingSetin classOmegaAcceptance- See Also:
OmegaAcceptance.isAccepting(BitSet)
-
rejectingSet
public Optional<BitSet> rejectingSet()
Description copied from class:OmegaAcceptanceReturns a set of indices which repeated infinitely often are rejecting orOptional.empty()if no such set exists.- Specified by:
rejectingSetin classOmegaAcceptance- See Also:
OmegaAcceptance.isAccepting(BitSet)
-
-