vyre-conform 0.1.0

Conformance suite for vyre backends — proves byte-identical output to CPU reference
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::FalsifiabilityEntry;

pub(super) const fn entry(
    law_name: &'static str,
    canonical_counterexample: &'static str,
) -> FalsifiabilityEntry {
    FalsifiabilityEntry {
        law_name,
        canonical_counterexample,
        catches_violator: true,
        passes_honest: true,
    }
}