[//]: # if CBMC has a logo, it should go here.
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.
[//]: # The CBMC release page has the information about installation across all platforms. [//]: # We don't need to repeat this information here, we just need to redirect the user with a better introduction here.
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.
[//]: # Here is a small introduction about user and developer documentation. We should point the user to a different page, which in this case could be the starter-kit.
[//]: # Should we explain the difference between CPROVER and the other source of documentations here? I would prefer not. Just focusing on CBMC and the different tools it provides.
[//]: # This is the section where we can guide the user on how they could use CBMC and the different tools it provides. I don't think we need to go over all of them, but it'd be nice to give the user a small example to help them understand what it is available.
===========
If you encounter a problem please file a bug report:
- Create an issue
[//]: # We should replace this entire text here by a page about contributions. If you are interested in contributing to CBMC, please see our development guide.
- Fork the repository
- Clone the repository
git clone git@github.com:YOURNAME/cbmc.git
- Create a branch from the
develop
branch (default branch) - Make your changes (follow the coding guidelines)
- Push your changes to your branch
- Create a Pull Request targeting the
develop
branch
New contributors can look through the mini projects page for small, focussed feature ideas.
[//]: # We need a link to the license file here. I'd keep this section.
4-clause BSD license, see LICENSE
file.