Skip to content

Commit

Permalink
v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gipsyh committed Dec 22, 2024
1 parent e6523f0 commit 34fdd73
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rIC3"
version = "1.3.0"
version = "1.3.1"
edition = "2021"
authors = ["Yuheng Su <gipsyh.icu@gmail.com>"]
repository = "https://github.com/gipsyh/rIC3"
Expand All @@ -12,7 +12,7 @@ rust-version = "1.85"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
aig = { path = "./deps/aig-rs", version = "^0.2.3" }
aig = { path = "./deps/aig-rs", version = "~0.2.4" }
satif-minisat = { path = "./deps/minisat-rs", version = "0.2" }
satif-cadical = { path = "./deps/cadical-rs", version = "0.1" }
satif-kissat = { path = "./deps/kissat-rs", version = "0.4" }
Expand Down
2 changes: 1 addition & 1 deletion deps/aig-rs
Submodule aig-rs updated 3 files
+2 −2 Cargo.toml
+19 −3 src/lib.rs
+3 −5 src/others.rs
2 changes: 1 addition & 1 deletion deps/cadical-rs
Submodule cadical-rs updated 4 files
+2 −2 Cargo.toml
+1 −1 src/craig.rs
+3 −13 src/itp.rs
+1 −1 src/lib.rs
6 changes: 3 additions & 3 deletions src/kind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@ impl Engine for Kind {
} else {
(aux_latchs[i - 1], Some(false))
};
certifaiger.new_latch(input, next, init);
certifaiger.add_latch(input, next, init);
}
for i in 1..k {
for j in 0..ni {
certifaiger.new_latch(inputs[j + i * ni], inputs[j + (i - 1) * ni].into(), None);
certifaiger.add_latch(inputs[j + i * ni], inputs[j + (i - 1) * ni].into(), None);
}
for j in 0..nl {
certifaiger.new_latch(
certifaiger.add_latch(
latchs[j + i * nl].input,
latchs[j + (i - 1) * nl].input.into(),
None,
Expand Down

0 comments on commit 34fdd73

Please sign in to comment.