-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
57: Release Varisat 0.2.1 r=jix a=jix Co-authored-by: Jannis Harder <[email protected]>
- Loading branch information
Showing
17 changed files
with
77 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 0.2.1 (2019-05-18) | ||
|
||
* Improved API for constructing formulas (#54 and #55) | ||
* Fix proof generation when the formula contains duplicated unit clauses | ||
(#26) | ||
* Configurable search parameters (#39) | ||
* Proofs for satisfiable instances (#47) | ||
* Proofs for incremental solving (#48) | ||
* Reduce size of proofs in native format (#42) | ||
* Split independent parts into individual crates with re-exports (#51) | ||
|
||
# 0.2.0 (2019-05-04) | ||
|
||
Initial release |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "varisat-checker" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
edition = "2018" | ||
description = "Proof checker for proofs generate by the Varisat SAT solver" | ||
|
@@ -17,15 +17,15 @@ log = "0.4.6" | |
|
||
[dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-dimacs] | ||
path = "../varisat-dimacs" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-internal-proof] | ||
path = "../varisat-internal-proof" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dev-dependencies] | ||
proptest = "0.9.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "varisat-cli" | |
description = "A CDCL based SAT solver (command line solver)" | ||
homepage = "https://jix.one/project/varisat/" | ||
repository = "https://github.com/jix/varisat" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -20,11 +20,11 @@ toml = "0.5.1" | |
|
||
[dependencies.varisat] | ||
path = "../varisat" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-lrat] | ||
path = "../varisat-lrat" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[[bin]] | ||
name = "varisat" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "varisat-dimacs" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
edition = "2018" | ||
description = "DIMCAS CNF parser and writer for the Varisat SAT solver" | ||
|
@@ -14,7 +14,7 @@ failure = "0.1.5" | |
itoa = "0.4.4" | ||
[dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dev-dependencies] | ||
proptest = "0.9.3" | ||
|
@@ -24,5 +24,5 @@ env_logger = "0.6.1" | |
|
||
[dev-dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
features = ["proptest-strategies", "internal-testing"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "varisat-formula" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic formula data types used by the Varisat SAT solver" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "varisat-internal-macros" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
edition = "2018" | ||
description = "Internal macros for the Varisat SAT solver" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "varisat-internal-proof" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
edition = "2018" | ||
description = "Internal proof format for the Varisat SAT solver" | ||
|
@@ -14,7 +14,7 @@ failure = "0.1.5" | |
|
||
[dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dev-dependencies] | ||
proptest = "0.9.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "varisat-lrat" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
edition = "2018" | ||
description = "LRAT proof generation for the Varisat SAT solver" | ||
|
@@ -16,11 +16,11 @@ itoa = "0.4.4" | |
|
||
[dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-checker] | ||
path = "../varisat-checker" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
|
||
[dev-dependencies] | ||
|
@@ -29,9 +29,9 @@ tempfile = "3.0.7" | |
|
||
[dev-dependencies.varisat] | ||
path = "../varisat" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dev-dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
features = ["proptest-strategies", "internal-testing"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "varisat" | |
description = "A CDCL based SAT solver (library)" | ||
homepage = "https://jix.one/project/varisat/" | ||
repository = "https://github.com/jix/varisat" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Jannis Harder <[email protected]>"] | ||
license = "MIT/Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -23,23 +23,23 @@ vec_mut_scan = "0.1.0" | |
|
||
[dependencies.varisat-internal-macros] | ||
path = "../varisat-internal-macros" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-dimacs] | ||
path = "../varisat-dimacs" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-internal-proof] | ||
path = "../varisat-internal-proof" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dependencies.varisat-checker] | ||
path = "../varisat-checker" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
|
||
[dev-dependencies] | ||
proptest = "0.9.3" | ||
|
@@ -49,7 +49,7 @@ env_logger = "0.6.1" | |
|
||
[dev-dependencies.varisat-formula] | ||
path = "../varisat-formula" | ||
version = "=0.2.0" | ||
version = "=0.2.1" | ||
features = ["proptest-strategies", "internal-testing"] | ||
|
||
[build-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters