https://github.com/verse-lab/veil-usage-example
A template repository with an example of using Veil verifier as a Lean library.
https://github.com/verse-lab/veil-usage-example
lean smt verification
Last synced: 5 months ago
JSON representation
A template repository with an example of using Veil verifier as a Lean library.
- Host: GitHub
- URL: https://github.com/verse-lab/veil-usage-example
- Owner: verse-lab
- Created: 2025-02-06T05:19:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-14T15:51:28.000Z (about 1 year ago)
- Last Synced: 2025-06-16T02:46:45.763Z (about 1 year ago)
- Topics: lean, smt, verification
- Language: Lean
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# veil-usage-example
This repository is an example project that uses
[Veil](https://github.com/verse-lab/veil), a framework for automated
and interactive verification of transition systems embedded in Lean 4.
## Using `veil`
To use `veil` in your project, add the following to your
`lakefile.lean`:
```lean
require "verse-lab" / "veil" @ git "main"
```
Or add the following to your `lakefile.toml`:
```toml
[[require]]
name = "veil"
git = "https://github.com/verse-lab/veil.git"
rev = "main"
```