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.
Showing
4 changed files
with
52 additions
and
8 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
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_log10_32() { | ||
let ten = 10.0f32; | ||
|
||
// log10(10) - 1 == 0 | ||
let abs_difference = (ten.log10() - 1.0).abs(); | ||
|
||
assert!(abs_difference <= f32::EPSILON); | ||
} | ||
|
||
#[kani::proof] | ||
fn verify_log10_64() { | ||
let hundred = 100.0_f64; | ||
|
||
// log10(100) - 2 == 0 | ||
let abs_difference = (hundred.log10() - 2.0).abs(); | ||
|
||
assert!(abs_difference < 1e-10); | ||
} |
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_log2_32() { | ||
let two = 2.0f32; | ||
|
||
// log2(2) - 1 == 0 | ||
let abs_difference = (two.log2() - 1.0).abs(); | ||
|
||
assert!(abs_difference <= f32::EPSILON); | ||
} | ||
|
||
#[kani::proof] | ||
fn verify_log2_64() { | ||
let four = 4.0_f64; | ||
|
||
// log2(4) - 2 == 0 | ||
let abs_difference = (four.log2() - 2.0).abs(); | ||
|
||
assert!(abs_difference < 1e-10); | ||
} |