Package net.maswag.falcaun
Class TemporalOr<I>
java.lang.Object
net.maswag.falcaun.AbstractTemporalLogic<I>
net.maswag.falcaun.TemporalOr<I>
- Type Parameters:
I
- Type of the input at each step
- All Implemented Interfaces:
Function<IOSignal<I>,
,Double> TemporalLogic<I>
- Direct Known Subclasses:
TemporalOr.LTLOr
,TemporalOr.STLOr
The class representing the OR operator of temporal logic.
- Author:
- Masaki Waga <masakiwaga@gmail.com>
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static class
(package private) static class
Nested classes/interfaces inherited from interface net.maswag.falcaun.TemporalLogic
TemporalLogic.IOType, TemporalLogic.LTLFormula, TemporalLogic.STLCost
-
Field Summary
FieldsFields inherited from class net.maswag.falcaun.AbstractTemporalLogic
initialized, iOType, nonTemporal, satisfyingAtomicPropositions
-
Constructor Summary
ConstructorsConstructorDescriptionTemporalOr
(List<TemporalLogic<I>> subFmls) TemporalOr
(TemporalLogic<I> subFml1, TemporalLogic<I> subFml2) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Returns the collection of atomic propositions under consideration.Evaluate the formula on the given signal and returns the RoSI, i.e., the range of the possible robustness values after concatenating a suffix.Returns a string representation of the formula in the format of LTSMin.toString()
Methods inherited from class net.maswag.falcaun.AbstractTemporalLogic
equals, hashCode, makeAbstractStringWithAtomicStrings
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.maswag.falcaun.TemporalLogic
apply, getIOType, getSatisfyingAtomicPropositions, isInitialized, isNonTemporal, toLTLString
-
Field Details
-
subFmls
-
-
Constructor Details
-
TemporalOr
TemporalOr(TemporalLogic<I> subFml1, TemporalLogic<I> subFml2) -
TemporalOr
TemporalOr(List<TemporalLogic<I>> subFmls)
-
-
Method Details
-
getRoSI
Evaluate the formula on the given signal and returns the RoSI, i.e., the range of the possible robustness values after concatenating a suffix.- Returns:
- a
RoSI
object representing the range of the possible robustness values after concatenating a suffix.
-
toString
-
constructSatisfyingAtomicPropositions
public void constructSatisfyingAtomicPropositions() -
getAllAPs
Returns the collection of atomic propositions under consideration. If this formula contains only the input constraints, the atomic propositions are the input constraints. If this formula contains only the output constraints, the atomic propositions are the output constraints. If this formula contains both input and output constraints, the atomic propositions are one of the input and output constraints. -
toAbstractString
Returns a string representation of the formula in the format of LTSMin.- Returns:
- a
String
object representing the formula in the format of LTSMin.
-