-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare 0.3.1 release including new flussab-aiger 0.1.0
- Loading branch information
Showing
9 changed files
with
93 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = ["flussab", "flussab-cnf", "flussab-aiger"] | ||
|
||
[profile.release] | ||
|
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,17 +1,19 @@ | ||
[package] | ||
name = "flussab-aiger" | ||
version = "0.1.0" | ||
authors = ["Jannis Harder <me@jix.one>"] | ||
edition = "2021" | ||
description = "AIGER file format (binary and ASCII) parser and writer" | ||
repository = "https://github.com/jix/flussab" | ||
license = "0BSD" | ||
readme = "README.md" | ||
keywords = ["aig", "aiger", "and-inverter-graph", "parser", "writer"] | ||
categories = ["parser-implementations", "encoding"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
flussab = { version = "0.3.0", path = "../flussab" } | ||
thiserror = "1.0.30" | ||
num-traits = "0.2.14" | ||
thiserror = "1.0.50" | ||
num-traits = "0.2.17" | ||
zwohash = "0.1.2" | ||
|
||
[dev-dependencies] | ||
flussab-cnf = { version = "0.3.0", path = "../flussab-cnf" } | ||
tempfile = "3.3.0" | ||
duct = "0.13.6" |
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,20 @@ | ||
Copyrights in this software are retained by their respective authors. See the | ||
version control history for full authorship information. | ||
|
||
Except as otherwise noted (below and/or in individual files), this software is | ||
licensed under the following terms ("Zero-Clause BSD"): | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | ||
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR | ||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in this software by you shall be under the terms and conditions | ||
of the above license, without any additional terms or conditions. |
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,43 @@ | ||
# Flussab AIGER | ||
|
||
[![github][github-badge]][github] | ||
[![crates.io][crate-badge]][crate] | ||
[![docs.rs][docs-badge]][docs] | ||
|
||
Parsing and writing of the [AIGER file format][aiger] for combinational and | ||
sequential boolean circuits represented as And-Inverter-Graphs (AIGs), | ||
implemented using [`flussab`][flussab]. The goal of this library is to provide | ||
a very efficient streaming parser for the AIGER file format. In addition to a | ||
streaming parser, which allows parsing the AIG directly into application | ||
specific data structures, this library also provides simple data structures to | ||
represent the full contents of an AIGER file together with utility functions | ||
for reading writing that are implemented on top of the streaming API. Finally | ||
since the binary AIGER file format places more restrictions on the numbering of | ||
literals, this library provides functions fo renumbering AIGs to allow | ||
conversion from ASCII AIGER to binary AIGER. | ||
|
||
**Note:** This is currently a preview release. It's mostly feature complete, | ||
but it's lacking documentation and I might still restructure the API a bit | ||
while prepareing this for a first proper release. | ||
|
||
[aiger]:https://fmv.jku.at/aiger/ | ||
[flussab]:https://crates.io/crates/flussab | ||
|
||
## License | ||
|
||
This software is available under the Zero-Clause BSD license, see | ||
[LICENSE](LICENSE) for full licensing information. | ||
|
||
### Contribution | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in this software by you shall be licensed as defined in | ||
[LICENSE](LICENSE). | ||
|
||
[github]:https://github.com/jix/flussab | ||
[crate]:https://crates.io/crates/flussab-cnf | ||
[docs]:https://docs.rs/flussab-cnf/*/flussab_cnf | ||
|
||
[github-badge]: https://img.shields.io/badge/github-jix/flussab-blueviolet?style=flat-square | ||
[crate-badge]: https://img.shields.io/crates/v/flussab-aiger?style=flat-square | ||
[docs-badge]: https://img.shields.io/badge/docs.rs-flussab_aiger-informational?style=flat-square |
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