hax-lib

Crates.iohax-lib
lib.rshax-lib
version0.1.0-alpha.1
sourcesrc
created_at2024-06-18 09:26:50.907485
updated_at2024-10-07 14:08:20.835683
descriptionHax-specific helpers for Rust programs
homepagehttps://github.com/hacspec/hax
repositoryhttps://github.com/hacspec/hax
max_upload_size
id1275301
size21,989
Crates (github:hacspec:crates)

documentation

README

hax library

This crate contains helpers that can be used when writing Rust code that is proven through the hax toolchain.

⚠️ The code in this crate has no effect when compiled without the --cfg hax.

Examples:

fn sum(x: Vec<u32>, y: Vec<u32>) -> Vec<u32> {
  hax_lib::assume!(x.len() == y.len());
  hax_lib::assert!(hax_lib::forall(|i: usize| hax_lib::implies(i < x.len(), || x[i] < 4242)));
  hax_lib::debug_assert!(hax_lib::exists(|i: usize| hax_lib::implies(i < x.len(), || x[i] > 123)));
  x.into_iter().zip(y.into_iter()).map(|(x, y)| x + y).collect()
}
Commit count: 2885

cargo fmt