All Projects → diffblue → Cbmc

diffblue / Cbmc

Licence: other
C Bounded Model Checker

Labels

Projects that are alternatives of or similar to Cbmc

Quantlib Swig
QuantLib wrappers to other languages
Stars: ✭ 176 (-43.04%)
Mutual labels:  swig
canorus
Canorus is a free cross-platform music score editor
Stars: ✭ 25 (-91.91%)
Mutual labels:  swig
PyMFEM
Python wrapper for MFEM
Stars: ✭ 91 (-70.55%)
Mutual labels:  swig
Gdcm
Grassroots DICOM read-only mirror. Only for Pull Request. Please report bug at http://sf.net/p/gdcm
Stars: ✭ 240 (-22.33%)
Mutual labels:  swig
go-snowboy
Go wrapper for Kitt-AI's snowboy audio detection library.
Stars: ✭ 40 (-87.06%)
Mutual labels:  swig
yadoms
Yadoms is open source, simple, powerfull, flexible and multiplatforms domotic solution.
Stars: ✭ 56 (-81.88%)
Mutual labels:  swig
Pymupdf Debian
Packaging of pymupdf for Debian
Stars: ✭ 171 (-44.66%)
Mutual labels:  swig
swig-webpack-plugin
Render swig templates with webpack.
Stars: ✭ 12 (-96.12%)
Mutual labels:  swig
java-cpp-example
Example of using C++ classes from Java. Showcases SWIG, JNA and JNI
Stars: ✭ 135 (-56.31%)
Mutual labels:  swig
idajava
Java integration for Hex-Rays IDA Pro
Stars: ✭ 25 (-91.91%)
Mutual labels:  swig
swig-srilm
SWIG Wrapper for the SRILM toolkit
Stars: ✭ 33 (-89.32%)
Mutual labels:  swig
pyaer
Low-level Python APIs for Accessing Neuromorphic Devices.
Stars: ✭ 20 (-93.53%)
Mutual labels:  swig
CuVec
Unifying Python/C++/CUDA memory: Python buffered array ↔️ `std::vector` ↔️ CUDA managed memory
Stars: ✭ 73 (-76.38%)
Mutual labels:  swig
Python Gphoto2
Python interface to libgphoto2
Stars: ✭ 229 (-25.89%)
Mutual labels:  swig
FABGen
C++ binding generator for CPython 3.x (x>=2), Lua 5.3 and Go
Stars: ✭ 26 (-91.59%)
Mutual labels:  swig
Cppsharp
Tools and libraries to glue C/C++ APIs to high-level languages
Stars: ✭ 2,221 (+618.77%)
Mutual labels:  swig
go course
個人多年來學習與實作上的心得筆記
Stars: ✭ 25 (-91.91%)
Mutual labels:  swig
Shogun
Shōgun
Stars: ✭ 2,859 (+825.24%)
Mutual labels:  swig
douMiBlog-Sailsjs
豆米博客-Sailsjs版,个人博客系统,使用SailsJs,MongoDb,Bootstrap,marked,SASS,swig等
Stars: ✭ 22 (-92.88%)
Mutual labels:  swig
FoxNN
Simple neural network
Stars: ✭ 20 (-93.53%)
Mutual labels:  swig

Build Status Build Status Build Status Build Status

CProver Wiki

CProver Documentation

About

CBMC is a Bounded Model Checker for C and C++ programs. It supports C89, C99, most of C11 and most compiler extensions provided by gcc and Visual Studio. It also supports SystemC using Scoot. It allows verifying array bounds (buffer overflows), pointer safety, exceptions and user-specified assertions. Furthermore, it can check C and C++ for consistency with other languages, such as Verilog. The verification is performed by unwinding the loops in the program and passing the resulting equation to a decision procedure.

For full information see cprover.org.

For an overview of the various tools that are part of CProver and how to use them see TOOLS_OVERVIEW.md.

Versions

Get the latest release

  • Releases are tested and for production use.

Get the current develop version: git clone https://github.com/diffblue/cbmc.git

  • Develop versions are not recommended for production use.

Installing

Windows

For windows you can install cbmc binaries via the .msi's found on the releases page.

Note that we depend on the Visual C++ redistributables. You likely already have these, if not please download and run vcredist.x64.exe from Microsoft to install them prior to running cbmc.

Linux

For different linux environments, you have these choices:

  1. Install CBMC through the distribution's repositories, with the downside that this might install an older version of cbmc, depending on what the package maintenance policy of the distribution is, or

  2. Install CBMC through the .deb package built by each release, available on the releases page. To do that, download the .deb package and run apt install cbmc-x.y.deb with root privileges, with x.y being substituted for the version you are attempting to install.

    NOTE: Because of libc/libc++ ABI compatibility and package dependency names, if you follow this path make sure you install the package appropriate for the version of operating system you are using.

  3. Compile from source using the instructions here

macOS

For macOS there is a Homebrew package available. Once you have installed Homebrew, simply run

brew install cbmc

to install cbmc, or if you already have it installed via homebrew

brew upgrade cbmc

to get an up-to-date version.

Report bugs

If you encounter a problem please file a bug report:

Contributing to the code base

  1. Fork the repository
  2. Clone the repository git clone [email protected]:YOURNAME/cbmc.git
  3. Create a branch from the develop branch (default branch)
  4. Make your changes (follow the coding guidelines)
  5. Push your changes to your branch
  6. Create a Pull Request targeting the develop branch

New contributors can look through the mini projects page for small, focussed feature ideas.

License

4-clause BSD license, see LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].