Skip to content
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

ifuel 0 breaks unfolding #368

Open
gebner opened this issue Feb 28, 2025 · 0 comments
Open

ifuel 0 breaks unfolding #368

gebner opened this issue Feb 28, 2025 · 0 comments

Comments

@gebner
Copy link
Contributor

gebner commented Feb 28, 2025

The below file works if you comment out the --ifuel 0. This seems to be another instance of Pulse gratuitously re-typechecking things plus an unclear dependency on ifuel--the regular F* definition checks just fine with the same options (?!).

module UnfoldTc
open Pulse.Nolib
#lang-pulse

#push-options "--ifuel 0"

assume val foo (n: nat) : bool & s:Seq.seq bool { Seq.length s == n }

let bar (n: nat) : slprop =
  pure (Seq.index (snd (foo (n + 1))) n == false)

fn baz (n: nat)
  requires bar n
{
  unfold bar
  // Expected term of type slprop
  // got term pure (Seq.Base.index (snd (foo (n + 1))) n == false)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant