roberthsheng / STL-SMTLIB

STL to SMT-LIB compiler based on definitions from "A Truly Robust Signal Temporal Logic: Monitoring Safety Properties of Interacting Cyber-Physical Systems under Uncertain Observation"
https://publications.cispa.saarland/3654/1/algorithms-15-00126-v2.pdf
0 stars 0 forks source link

Simplification of nested UNTILs #19

Closed roberthsheng closed 1 year ago

roberthsheng commented 1 year ago

Tseitin transformation returns the (and (or ... )). When we nest, we get (and (or (and (or ...)))), effectively defeating the purpose of our transformation in the first place. How do we work around this?

roberthsheng commented 1 year ago

👍