Skip to content

Commit c408045

Browse files
authored
Add cadical to the list of available solvers (rust-lang#2217)
1 parent 33bdc6d commit c408045

File tree

6 files changed

+37
-0
lines changed

6 files changed

+37
-0
lines changed

kani-driver/src/call_cbmc.rs

+4
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,10 @@ impl KaniSession {
205205
};
206206

207207
match solver {
208+
CbmcSolver::Cadical => {
209+
args.push("--sat-solver".into());
210+
args.push("cadical".into());
211+
}
208212
CbmcSolver::Kissat => {
209213
args.push("--external-sat-solver".into());
210214
args.push("kissat".into());

kani_metadata/src/cbmc_solver.rs

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ use strum_macros::{AsRefStr, EnumString, EnumVariantNames};
2020
)]
2121
#[strum(serialize_all = "snake_case")]
2222
pub enum CbmcSolver {
23+
/// CaDiCaL which is available in CBMC as of version 5.77.0
24+
Cadical,
25+
2326
/// The kissat solver that is included in the Kani bundle
2427
Kissat,
2528

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Solving with CaDiCaL
2+
VERIFICATION:- SUCCESSFUL
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright Kani Contributors
2+
// SPDX-License-Identifier: Apache-2.0 OR MIT
3+
4+
//! Checks that `cadical` is a valid argument to `kani::solver`
5+
6+
#[kani::proof]
7+
#[kani::solver(cadical)]
8+
fn check() {
9+
let mut a = [2, 3, 1];
10+
a.sort();
11+
assert_eq!(a[0], 1);
12+
assert_eq!(a[1], 2);
13+
assert_eq!(a[2], 3);
14+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Solving with CaDiCaL
2+
VERIFICATION:- SUCCESSFUL
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright Kani Contributors
2+
// SPDX-License-Identifier: Apache-2.0 OR MIT
3+
// kani-flags: --solver cadical
4+
5+
//! Checks that the `cadical` is supported as an argument to `--solver`
6+
7+
#[kani::proof]
8+
fn check_solver_option() {
9+
let v = vec![kani::any(), 2];
10+
let v_copy = v.clone();
11+
assert_eq!(v, v_copy);
12+
}

0 commit comments

Comments
 (0)