forked from model-checking/kani
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable powif* intrinsics (model-checking#2999)
These are supported by CBMC with diffblue/cbmc#8192 merged. Resolves: model-checking#2763
- Loading branch information
1 parent
c7b315f
commit 6ae3f00
Showing
5 changed files
with
26 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
.../cast_abstract_args_to_concrete_fixme2.rs → ...ni/Cast/cast_abstract_args_to_concrete.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright Kani Contributors | ||
// SPDX-License-Identifier: Apache-2.0 OR MIT | ||
|
||
#[kani::proof] | ||
fn verify_powi32() { | ||
let x: f32 = kani::any(); | ||
kani::assume(x.is_normal()); | ||
kani::assume(x >= 1e-19 || x <= -1e-19); | ||
kani::assume(x <= 1.84e19 && x >= -1.84e19); | ||
let x2 = x.powi(2); | ||
assert!(x2 >= 0.0); | ||
} | ||
|
||
#[kani::proof] | ||
fn verify_powi64() { | ||
let x: f64 = kani::any(); | ||
kani::assume(x.is_normal()); | ||
kani::assume(x >= 1e-153 || x <= -1e-153); | ||
kani::assume(x <= 1.34e154 && x >= -1.34e154); | ||
let x2 = x.powi(2); | ||
assert!(x2 >= 0.0); | ||
} |