Skip to content

luigicapogrosso/HermesBDD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HermesBDD

License: MIT codecov Unix Status Windows Status

HermesBDD is a novel multi-core and multi-platform binary decision diagrams package focused on high performance and usability. HermesBDD supports a static and dynamic memory management mechanism, the possibility to exploit lock-free hash tables, and a simple parallel implementation of the ITE procedure based on a higher-level wrapper for threads and futures.

For more information on progress reports, please visit the HermesBDD home page.

Dependencies

HermesBDD has the following dependencies:

  • CMake (mandatory), for compiling;
  • Sphinx (optional), for documentation generation.

For further information about CMake and Sphinx, check the following 1 and 2 documentation pages, respectively.

Building

The library is tested for compilation using GCC (minimum required: 10.2), Clang (minimum required: 11.0), and MSVC (minimum required: 19.20). To build the library from sources in a clean way, it is preferable that you set up a build subdirectory, say:

$ mkdir build && cd build

Then, you can prepare the build environment, choosing a Release build for maximum performance:

$ cmake .. -DCMAKE_BUILD_TYPE=Release

At this point, if no error arises, you can build with:

$ cmake --build .

To install the library globally from built sources, you must do the following:

$ cmake --build . --target install

using sudo if you require administrator privileges for a Linux installation. Just so you know, the installation will build the whole distribution beforehand, so it is better that you first build the other targets without administrator privileges to build the install target.

To find the installed library under Ubuntu, you may need to set the LD_LIBRARY_PATH in the .bashrc file of your home directory:

export LD_LIBRARY_PATH=/usr/local/lib

CMake options

Available options are:

CMake Option Description Default Value
NO_CACHE Do not use cache OFF
NO_THREAD Do not use thread OFF
NO_DYNMEM Do not use dynamic memory allocation OFF
COVERAGE Enable coverage reporting OFF

Contribution guidelines

HermesBDD is not yet feature-complete, and many interesting things remain left for you to do. So, this project welcomes contributions and suggestions. If you would like to contribute to HermesBDD or do an internship or thesis, please don't hesitate to contact the authors.

License

The software files in this repository are provided under the MIT License.

Authors

Luigi Capogrosso, Luca Geretti, Marco Cristani, Franco Fummi, Tiziano Villa

Department of Computer Science, University of Verona, Italy

name.surname@univr.it

Citation

If you use HermesBDD, please, cite the following paper:

@inproceedings{capogrosso2023hermesbdd,
  title={HermesBDD: A Multi-Core and Multi-Platform Binary Decision Diagram Package},
  author={Capogrosso, Luigi and Geretti, Luca and Cristani, Marco and Fummi, Franco and Villa, Tiziano},
  booktitle={2023 26th International Symposium on Design and Diagnostics of Electronic Circuits and Systems (DDECS)},
  pages={87--90},
  year={2023},
  organization={IEEE}
}

About

Official implementation of the paper "HermesBDD: A Multi-Core and Multi-Platform Binary Decision Diagram Package" accepted @ DDECS 2023.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published