{"id":22964183,"url":"https://github.com/gipsyh/rIC3","last_synced_at":"2025-08-13T08:31:31.673Z","repository":{"id":132774097,"uuid":"598150682","full_name":"gipsyh/rIC3","owner":"gipsyh","description":"A high-performance IC3/PDR algorithm implementation in Rust.","archived":false,"fork":false,"pushed_at":"2024-05-22T05:42:06.000Z","size":672,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-22T19:35:45.632Z","etag":null,"topics":["formal-verification","ic3","model-checking","pdr-algorithm"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gipsyh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-06T14:08:14.000Z","updated_at":"2024-05-29T04:18:02.292Z","dependencies_parsed_at":"2024-04-17T02:33:57.320Z","dependency_job_id":"2c4b2d85-193b-4a66-8964-38629f5803c8","html_url":"https://github.com/gipsyh/rIC3","commit_stats":null,"previous_names":["gipsyh/ic3","gipsyh/ric3"],"tags_count":43,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gipsyh%2FrIC3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gipsyh%2FrIC3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gipsyh%2FrIC3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gipsyh%2FrIC3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gipsyh","download_url":"https://codeload.github.com/gipsyh/rIC3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229749296,"owners_count":18118324,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["formal-verification","ic3","model-checking","pdr-algorithm"],"created_at":"2024-12-14T20:00:27.699Z","updated_at":"2025-08-13T08:31:31.657Z","avatar_url":"https://github.com/gipsyh.png","language":"Rust","funding_links":[],"categories":["Projects"],"sub_categories":["Verification"],"readme":"# rIC3 Hardware Model Checker\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)\n[![CI](https://github.com/gipsyh/rIC3/actions/workflows/ci.yml/badge.svg)](https://github.com/gipsyh/rIC3/actions/workflows/ci.yml)\n[![Crates.io](https://img.shields.io/crates/v/rIC3.svg?logo=rust)](https://crates.io/crates/rIC3)\n[![Docker](https://img.shields.io/docker/v/gipsyh/ric3?label=Docker\u0026logo=docker)](https://hub.docker.com/r/gipsyh/ric3)\n\n### HWMCC\nrIC3 achieved first place in both the bit-level track and the word-level bit-vector track at the 2024 Hardware Model Checking Competition ([HWMCC'24](https://hwmcc.github.io/2024/)).\n\n\u003cp align=\"center\"\u003e\n\t\u003cimg width=\"250\" height=\"auto\" src=\"./images/hwmcc24_aiger.png\" style=\"display:inline-block;\"\u003e\n\t\u003cimg width=\"250\" height=\"auto\" src=\"./images/hwmcc24_btor2_bv.png\" style=\"display:inline-block;\"\u003e\n\u003c/p\u003e\n\nTo view the submission for HWMCC'24, please checkout the `HWMCC24` branch or download the binary release at https://github.com/gipsyh/rIC3-HWMCC24.\n\n### Publications\n- [CAV2025] [The rIC3 Hardware Model Checker](https://arxiv.org/abs/2502.13605)\n- [CAV2025] [Deeply Optimizing the SAT Solver for the IC3 Algorithm](https://arxiv.org/abs/2501.18612)\n- [DAC2024] [Predicting Lemmas in Generalization of IC3](http://doi.org/10.1145/3649329.3655970)\n- [arXiv] [Extended CTG Generalization and Dynamic Adjustment of Generalization Strategies in IC3](https://arxiv.org/abs/2501.02480)\n\n### rIC3 Tool Flow\n\u003cp align=\"center\"\u003e\n\t\u003cimg width=\"500\" height=\"auto\" src=\"./images/toolflow.jpg\" style=\"display:inline-block;\"\u003e\n\u003c/p\u003e\n\n### Install From Crates.io\n```cargo install rIC3```\n\n### Install From Source\n- Install the Rust compiler https://www.rust-lang.org/\n- Switch to nightly ```rustup default nightly```\n- ```git clone --recurse-submodules https://github.com/gipsyh/rIC3```\n- Build ```cd rIC3 \u0026\u0026 cargo b --release```\n- Run ```cargo r --release -- \u003cAIGER FILE\u003e```\n- Install ```cargo install --path .```\n\n### Run\n- 16-threads Portfolio ```rIC3 \u003cAIGER FILE\u003e```\n- single-thread IC3 ```rIC3 -e ic3 \u003cAIGER FILE\u003e```\n\n### Docker\n- build image: ```docker build -t ric3 .```\n- run: ```docker run -v \u003cAIGER FILE\u003e:/model.aig ric3 model.aig```\n\nCopyright (C) 2023 - Present, Yuheng Su (gipsyh.icu@gmail.com). All rights reserved.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgipsyh%2FrIC3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgipsyh%2FrIC3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgipsyh%2FrIC3/lists"}