-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
12 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rIC3" | ||
version = "1.3.2" | ||
version = "1.3.3" | ||
edition = "2021" | ||
authors = ["Yuheng Su <[email protected]>"] | ||
repository = "https://github.com/gipsyh/rIC3" | ||
|
@@ -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.4" } | ||
aig = { path = "./deps/aig-rs", version = "0.2.6" } | ||
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" } | ||
|
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 |
---|---|---|
|
@@ -20,19 +20,20 @@ To view the submission for HWMCC'24, please checkout the `HWMCC24` branch or dow | |
### Install From Crates.io | ||
```cargo install rIC3``` | ||
|
||
```rIC3 <aig model>``` | ||
|
||
|
||
### Install From Source | ||
Currently, some dependency libraries are linked through pre-compiled static files in the repository, and they have a dependency on the glibc version. Ubuntu 20.04 or later works fine. | ||
|
||
- Install the Rust compiler https://www.rust-lang.org/ | ||
- Switch to nightly ````rustup default nightly```` | ||
- ````git clone --recurse-submodules https://github.com/gipsyh/rIC3```` | ||
- ```cd rIC3``` | ||
- Build and Run ````cargo r --release -- <aig model>```` | ||
- Switch to nightly ```rustup default nightly``` | ||
- ```git clone --recurse-submodules https://github.com/gipsyh/rIC3``` | ||
- Build ```cd rIC3 && cargo b --release``` | ||
- Run ```cargo r --release -- <AIGER FILE>``` | ||
- Install ```cargo install --path .``` | ||
|
||
### Run | ||
- 16-threads Portfolio ```rIC3 <AIGER FILE>``` | ||
- single-thread IC3 ```rIC3 -e ic3 <AIGER FILE>``` | ||
|
||
Copyright (C) 2023 - Present, Yuheng Su ([email protected]). All rights reserved. | ||
|
||
Without obtaining authorization, rIC3 is not allowed to be used for any commercial purposes. |
Submodule aig-rs
updated
6 files
+1 −1 | Cargo.toml | |
+0 −17 | src/aiger.rs | |
+1 −17 | src/lib.rs | |
+0 −237 | src/logic_form.rs | |
+5 −4 | src/others.rs | |
+0 −11 | src/simplify.rs |
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