Skip to content

Commit b9ed731

Browse files
committed
change solver to kissat instead
1 parent 6c09ba2 commit b9ed731

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

library/core/src/num/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1759,6 +1759,7 @@ mod verify {
17591759
($type:ty, $wide_type:ty, $($harness_name:ident, $min:expr, $max:expr),+) => {
17601760
$(
17611761
#[kani::proof]
1762+
#[kani::solver(kissat)]
17621763
pub fn $harness_name() {
17631764
let lhs: $type = kani::any::<$type>();
17641765
let rhs: $type = kani::any::<$type>();
@@ -2049,9 +2050,7 @@ mod verify {
20492050

20502051
// ====================== u16 Harnesses ======================
20512052
generate_carrying_mul_intervals!(u16, u32,
2052-
carrying_mul_u16_small, 0u16, 10u16,
2053-
carrying_mul_u16_large, u16::MAX - 10u16, u16::MAX,
2054-
carrying_mul_u16_mid_edge, (u16::MAX / 2) - 10u16, (u16::MAX / 2) + 10u16
2053+
carrying_mul_u16_full_range, 0u16, u16::MAX
20552054
);
20562055

20572056
// ====================== u32 Harnesses ======================

0 commit comments

Comments
 (0)