temporal_logic_core 0.1.0
temporal_logic_core: ^0.1.0 copied to clipboard
Core LTL/MTL AST, evaluator, and builder DSL for Dart.
0.1.0 #
- Initial release.
- Provides core classes for propositional and LTL formulas (
Formula,AtomicProposition,And,Or,Not,Implies,Next,Always,Eventually,Until,WeakUntil,Release). - Includes
TraceandTraceEventfor representing timed event sequences. - Provides
evaluateTracefunction for evaluating formulas on traces, returningEvaluationResult. - Includes helper functions for formula construction in
builder.dart(e.g.,state,always,eventually,until). - Basic
LogicalConnectivesextension for formula building (and,or,implies,not).