Package owl.automaton.acceptance
Class GeneralizedCoBuchiAcceptance
- java.lang.Object
-
- owl.automaton.acceptance.EmersonLeiAcceptance
-
- owl.automaton.acceptance.GeneralizedCoBuchiAcceptance
-
- Direct Known Subclasses:
CoBuchiAcceptance
public class GeneralizedCoBuchiAcceptance extends EmersonLeiAcceptance
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<ImmutableBitSet>acceptingSet()Returns a set of indices which repeated infinitely often are accepting orOptional.empty()if no such set exists.protected PropositionalFormula<Integer>lazyBooleanExpression()Stringname()List<Object>nameExtra()static GeneralizedCoBuchiAcceptanceof(int size)static Optional<? extends GeneralizedCoBuchiAcceptance>ofPartial(PropositionalFormula<Integer> formula)Optional<ImmutableBitSet>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.EmersonLeiAcceptance
acceptanceSets, booleanExpression, equals, hashCode, isAccepting, isAccepting, isAcceptingEdge, isWellFormedAutomaton, of, toString
-
-
-
-
Method Detail
-
of
public static GeneralizedCoBuchiAcceptance of(int size)
-
ofPartial
public static Optional<? extends GeneralizedCoBuchiAcceptance> ofPartial(PropositionalFormula<Integer> formula)
-
lazyBooleanExpression
protected final PropositionalFormula<Integer> lazyBooleanExpression()
- Overrides:
lazyBooleanExpressionin classEmersonLeiAcceptance
-
name
public String name()
- Overrides:
namein classEmersonLeiAcceptance
-
nameExtra
public List<Object> nameExtra()
- Overrides:
nameExtrain classEmersonLeiAcceptance
-
acceptingSet
public Optional<ImmutableBitSet> acceptingSet()
Description copied from class:EmersonLeiAcceptanceReturns a set of indices which repeated infinitely often are accepting orOptional.empty()if no such set exists.- Overrides:
acceptingSetin classEmersonLeiAcceptance- See Also:
EmersonLeiAcceptance.isAccepting(BitSet)
-
rejectingSet
public Optional<ImmutableBitSet> rejectingSet()
Description copied from class:EmersonLeiAcceptanceReturns a set of indices which repeated infinitely often are rejecting orOptional.empty()if no such set exists.- Overrides:
rejectingSetin classEmersonLeiAcceptance- See Also:
EmersonLeiAcceptance.isAccepting(BitSet)
-
-