Skip to content

VeriFast solution for Challenge 5 (linked_list.rs) #238

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
5 changes: 3 additions & 2 deletions doc/src/challenges/0005-linked-list.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Challenge 5: Verify functions iterating over inductive data type: `linked_list`

- **Status:** Open
- **Status:** Resolved
- **Tracking Issue:** [#29](https://github.com/model-checking/verify-rust-std/issues/29)
- **Start date:** *2024/07/01*
- **End date:** *2025/04/10*
- **End date:** *2025/08/12*
- **Reward:** *5,000 USD*
- **Contributors:** [Bart Jacobs](https://github.com/btj)

-------------------

Expand Down
584 changes: 584 additions & 0 deletions verifast-proofs/alloc/collections/linked_list.rs/README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// verifast_options{skip_specless_fns}
// verifast_options{skip_specless_fns ignore_unwind_paths}

#![no_std]
#![allow(internal_features)]
Expand All @@ -12,6 +12,7 @@
#![feature(exact_size_is_empty)]
#![feature(hasher_prefixfree_extras)]
#![feature(box_into_inner)]
#![feature(try_trait_v2)]

#![stable(feature = "rust1", since = "1.0.0")]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// verifast_options{skip_specless_fns}
// verifast_options{skip_specless_fns ignore_unwind_paths}

#![no_std]
#![allow(internal_features)]
Expand All @@ -12,6 +12,7 @@
#![feature(exact_size_is_empty)]
#![feature(hasher_prefixfree_extras)]
#![feature(box_into_inner)]
#![feature(try_trait_v2)]

#![stable(feature = "rust1", since = "1.0.0")]

Expand Down
Loading
Loading