Package owl.translations
Enum LtlTranslationRepository.Option
- java.lang.Object
-
- java.lang.Enum<LtlTranslationRepository.Option>
-
- owl.translations.LtlTranslationRepository.Option
-
- All Implemented Interfaces:
Serializable
,Comparable<LtlTranslationRepository.Option>
- Enclosing class:
- LtlTranslationRepository
public static enum LtlTranslationRepository.Option extends Enum<LtlTranslationRepository.Option>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPLETE
Ensures that the transition relation of the automaton is complete.SIMPLIFY_AUTOMATON
Simplify the automaton, e.g.SIMPLIFY_FORMULA
Simplify the formula before applying the translation.USE_PORTFOLIO_FOR_SYNTACTIC_LTL_FRAGMENTS
Use a portfolio of simpler constructions for fragments of LTL.X_DPA_USE_COMPLEMENT
X_DRA_NORMAL_FORM_USE_DUAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Set<LtlTranslationRepository.Option>
defaultOptions()
static LtlTranslationRepository.Option
fromCValue(int value)
int
getCValue()
static LtlTranslationRepository.Option
valueOf(String name)
Returns the enum constant of this type with the specified name.static LtlTranslationRepository.Option[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIMPLIFY_FORMULA
public static final LtlTranslationRepository.Option SIMPLIFY_FORMULA
Simplify the formula before applying the translation.
-
SIMPLIFY_AUTOMATON
public static final LtlTranslationRepository.Option SIMPLIFY_AUTOMATON
Simplify the automaton, e.g. remove non-accepting states. Note that this causes a full exploration of the automaton.
-
USE_PORTFOLIO_FOR_SYNTACTIC_LTL_FRAGMENTS
public static final LtlTranslationRepository.Option USE_PORTFOLIO_FOR_SYNTACTIC_LTL_FRAGMENTS
Use a portfolio of simpler constructions for fragments of LTL.
-
COMPLETE
public static final LtlTranslationRepository.Option COMPLETE
Ensures that the transition relation of the automaton is complete.
-
X_DPA_USE_COMPLEMENT
public static final LtlTranslationRepository.Option X_DPA_USE_COMPLEMENT
-
X_DRA_NORMAL_FORM_USE_DUAL
public static final LtlTranslationRepository.Option X_DRA_NORMAL_FORM_USE_DUAL
-
-
Method Detail
-
values
public static LtlTranslationRepository.Option[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LtlTranslationRepository.Option c : LtlTranslationRepository.Option.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LtlTranslationRepository.Option valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCValue
public int getCValue()
-
fromCValue
public static LtlTranslationRepository.Option fromCValue(int value)
-
defaultOptions
public static Set<LtlTranslationRepository.Option> defaultOptions()
-
-