Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
154 changes: 146 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"smt2proxy",
"z3tracer",
"smt2patch",
"smt2model",
]

[profile.release]
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ as Z3 and CVC4.

* [smt2patch](smt2patch) is an experimental library and tool to modify SMT files.

* [smt2model](smt2model) is an experimental tool to transform SMT2 files into suitable
formats for "language modeling" with machine learning.

The code in this repository is still under active development.

## Contributing
Expand Down
25 changes: 25 additions & 0 deletions smt2model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[package]
name = "smt2model"
version = "0.1.0"
repository = "https://github.com/facebookincubator/smt2utils"
authors = ["Mathieu Baudet <mathieubaudet@fb.com>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["smt2", "ml"]
categories = ["solver", "research"]
edition = "2018"

[dependencies]
anyhow = "1.0.38"
thiserror = "1.0.25"
once_cell = "1.7.2"
structopt = "0.3.12"
flate2 = "1.0.2"
tar = "0.4.33"
tempfile = "3.2.0"
libc = "0.2.93"
rand = { version = "0.8.3", features = ["small_rng"] }
signal-hook = "0.3.8"
petgraph = "0.5.1"

smt2parser = { version = "0.6.1", path = "../smt2parser" }
Loading