smack icon indicating copy to clipboard operation
smack copied to clipboard

SMACK Software Verifier and Verification Toolchain

Results 112 smack issues
Sort by recently updated
recently updated
newest added

This PR addresses the following: * Improves path manipulation in `regtest.py` to be more compatible with macOS (based on work by @shaobo-he) * Extends the expected name for `bc` files...

Hello, I am working on a project to verify D programs and I am using Smack. I created a template for loop invariants in D and I wanted to use...

Rust edition 2021 is stable after version 1.56.0. It seems a lot of projects are migrating to this version. We need to catch up with them as well. Version 1.56.0...

enhancement

We should be able to feed rustc options via this flag.

It also prints a loop bound if it can be determined via LLVM's ScalarEvolution class. Specifically, it's equal to the `ConstantMaxBackedgeTakenCount`. Partially addressed #760

It seems this pass could produce much simpler LLVM IRs.

Consider this program, ```Rust // An example from `The Little MLer` chapter 3 #[macro_use] extern crate smack; use smack::*; //#[derive(Debug)] enum Pizza { Crust, Cheese(Box), Onion(Box), Anchovy(Box), Sausage(Box), } fn...

Hi, I applied SMACK artifact (for tacas 19) on a Fortran example shown below: > ! @expect verified > >program main > use smack > implicit none > integer ::...

So say I had something like this, with arbitrary languages supported by SMACK: --- ```python class Foo: @property bar: float ``` **^Note the type of `bar`** ```c++ class Foo {...