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

Proving an equality in F* and Pulse differs? #125

Open
mtzguido opened this issue Jun 28, 2024 · 0 comments
Open

Proving an equality in F* and Pulse differs? #125

mtzguido opened this issue Jun 28, 2024 · 0 comments

Comments

@mtzguido
Copy link
Member

// Pure assert == works
let tst_rw (x:int) =
  assert (
    (if x >= 0 then p else emp) ==
    (if x < 0  then emp else p)
  )

// Not so in Pulse?
```pulse
fn test2 (x:int)
  requires (if x >= 0 then p else emp)
  ensures  (if x < 0 then emp else p)
{
    rewrite (if x >= 0 then p else emp)
    as      (if x < 0  then emp else p);
}
```
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