temporal_logic_core 0.1.1
temporal_logic_core: ^0.1.1 copied to clipboard
Core LTL/MTL AST, evaluator, and builder DSL for Dart.
0.1.1 #
- API:
temporal_logic_core.dartを stable public entry point として明文化しました。 - TEST: 公開 export の回帰を固定する
public_api_exports_test.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).