Syntax-Guided Past-time LTL Synthesizer & Enumerator
SysLite makes use of decision and synthesis procedures (SAT
, SMT
, and SyGuS
) to learn Pastime LTL formulas
from a finite set of example traces. These example traces describe the intended and unintended behavior in terms of positive and negative traces that can come from various application domains (i.e, security policy logs, protocols, and execution of a system or design model, among others).
Run commands on Terminal:
- Build:
./tool-setup
(some machines may require runningapt-get install python3-venv
beforetool-setup
)- Continue? [Y]es/[N]o: Y
- Only required once to setup the tool
- Enable execution:
source env/bin/activate
- Required before executing the tool on a new terminal.
- Run:
./src/Driver.py --help
- Disable execution:
deactivate
An example trace file is added to learn back an emergency alert system (eas) formula.
The trace file contains
positive and negative traces that uses a format described below.
Please use the command to run eas trace example using bit-vector SyGuS
encoding:
./src/Driver.py -n 5 -r result.txt -a bv_sygus -dict -t eas-example/eas.trace
The tool currently supports a list of algorithms that can be invoked with -a
option:
- SyGus + BitVector + enumeration
bv_sygus
- SyGuS + ADT + enumeration
adt_sygus
- SMT + ADT + enumeration
fin_adt
- SAT - enumeration
sat
- SAT + enumeration
sat_enum
- SAT + Graph Topological - enumeration
guided_sat
- SAT + Graph Topological + enumeration
guided_sat_enum
All the proposed encoding files are instantiated using
eas.trace
are:
- eas-adt-enc.sy (* ADT with SyGuS *)
- eas-bv-enc.sy (* Bitvector with SyGuS *)
- eas-fnf-enc.smt2 (* ADT using Finite Model Finding *)
These encodings can be tested using off-the-shelf CVC4SY solver using the commands:
./cvc4 --lang=sygus2 --sygus-stream --sygus-sym-break-pbe FILENAME.sy
./cvc4 FILENAME.smt2
An example trace file is provided in file eas.trace
.
The input traces files contains alphabets, positive and negative example traces, supported operators
separated by ---
.
p,q //Atomic Propositions
---
1,1;0,0 (\* Positive Traces \*)
1,0;1,0
---
1,0;0,0 (\* Negative Traces \*)
---
!,Y,O,H (\* Enable Unary Operators in Final Formula (Optional) \*)
---
S,&,|,=> (\* Enable Binary Operators in Final Formula (Optional) \*)
---
3 (\* Synthesized Formula Size (Optional) \*)
---
S(Y(p2),p2) (\* Target Formula for Match (Optional) \*)
The details about the experiments are described in the paper. The training and test data include results are contained in Experiments
- "SYSLITE: Syntax-Guided Synthesis of PLTL Formulas from Finite Traces", FMCAD20 [accepted]