Uses of Enum Class
dev.civl.sarl.IF.ValidityResult.ResultType
Packages that use ValidityResult.ResultType
Package
Description
This package and its subpackages provide the "public interface" to SARL.
The public interface package dealing with symbolic expressions.
Module "prove" constitutes the interface between SARL and (possibly external)
theorem provers.
-
Uses of ValidityResult.ResultType in dev.civl.sarl.IF
Methods in dev.civl.sarl.IF that return ValidityResult.ResultTypeModifier and TypeMethodDescriptionValidityResult.getResultType()Returns the result type of this result.static ValidityResult.ResultTypeReturns the enum constant of this class with the specified name.static ValidityResult.ResultType[]ValidityResult.ResultType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of ValidityResult.ResultType in dev.civl.sarl.IF.expr
Methods in dev.civl.sarl.IF.expr that return ValidityResult.ResultTypeModifier and TypeMethodDescriptionBooleanExpression.getUnsatisfiability()Is this boolean expression unsatisfiable, i.e., equivalent tofalse,? The result is cached here for convenience, using method.invalid reference
#setUnsatisfiable(ResultType)BooleanExpression.getValidity()Is this boolean expression valid, i.e., equivalent totrue, i.e., a tautology? The result is cached here for convenience, using methodBooleanExpression.setValidity(ResultType).Methods in dev.civl.sarl.IF.expr with parameters of type ValidityResult.ResultTypeModifier and TypeMethodDescriptionvoidBooleanExpression.setUnsatisfiability(ValidityResult.ResultType value) Store the unsatisfiability result for this boolean expression.voidBooleanExpression.setValidity(ValidityResult.ResultType value) Store the validity result for this boolean expression. -
Uses of ValidityResult.ResultType in dev.civl.sarl.prove.IF
Methods in dev.civl.sarl.prove.IF with parameters of type ValidityResult.ResultTypeModifier and TypeMethodDescriptionstatic ValidityResultProve.validityResult(ValidityResult.ResultType type) Returns one of the constantsProve.RESULT_YES,Prove.RESULT_NO,Prove.RESULT_MAYBE, corresponding to the given type.