AlwaysTimed<T> class
final
Represents the timed always operator G_I φ (Globally within Interval).
Asserts that the operand formula φ holds true at all points k
in the trace suffix starting from the evaluation point i, such that the time
difference timestamp(k) - timestamp(i) falls within the specified interval I.
If no points k fall within the interval I relative to point i,
the formula is considered vacuously true.
Example: AlwaysTimed(isStable, TimeInterval(Duration(seconds: 1), Duration(seconds: 10)))
asserts that isStable holds continuously between 1 and 10 seconds from now.
Constructors
-
AlwaysTimed(Formula<
T> operand, TimeInterval interval) -
Creates a timed always formula
G_I φ.const
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- interval → TimeInterval
-
The time interval
Ithroughout which the operand must hold.final -
operand
→ Formula<
T> -
The formula
φthat must always hold within the interval.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
always(
) → Always< T> -
Creates an ALWAYS (Globally) operator for this formula.
G(this)inherited -
and(
Formula< T> formula) → And<T> -
Creates a logical conjunction (AND) with another
formula.this && formulainherited -
eventually(
) → Eventually< T> -
Creates an EVENTUALLY (Finally) operator for this formula.
F(this)inherited -
implies(
Formula< T> formula) → Implies<T> -
Creates a logical implication (IMPLIES) with another
formula.this -> formulainherited -
next(
) → Next< T> -
Creates a NEXT operator for this formula.
X(this)inherited -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
not(
) → Not< T> -
Creates a logical negation (NOT) of this formula.
!thisinherited -
or(
Formula< T> formula) → Or<T> -
Creates a logical disjunction (OR) with another
formula.this || formulainherited -
release(
Formula< T> formula) → Release<T> -
Creates a RELEASE operator with another
formula.this R formulainherited -
toString(
) → String -
Returns a string representation of the formula, useful for debugging.
override
-
until(
Formula< T> formula) → Until<T> -
Creates an UNTIL operator with another
formula.this U formulainherited -
weakUntil(
Formula< T> formula) → WeakUntil<T> -
Creates a WEAK UNTIL operator with another
formula.this W formulainherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited