formalsec / smtml

A frontend for multiple SMT solvers in OCaml
https://formalsec.github.io/smtml/smtml/
MIT License
27 stars 8 forks source link

Fix binary list operators #215

Closed filipeom closed 2 months ago

filipeom commented 2 months ago

List_append_last v lst was changed into List_cons v lst which conses v to the head of lst.

List_append lst v was changed into List_append l0 l1 which appends l1 to l0.