Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Nisarg Patel committed May 7, 2024
1 parent 1ad5707 commit 4171659
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/ast/astDef.ml
Original file line number Diff line number Diff line change
Expand Up @@ -717,8 +717,8 @@ module Expr = struct
| Binder (b, vs, trgs, e1, _) ->
fprintf ppf "%a" pr_binder (b, vs, trgs, e1, to_type e)

(* and pr ppf e = pr_compact ppf e *)
and pr ppf e = pr_verbose ppf e
and pr ppf e = pr_compact ppf e
(* and pr ppf e = pr_verbose ppf e *)

and pr_list ppf = Print.pr_list_comma pr ppf

Expand Down
4 changes: 2 additions & 2 deletions test/ci/front-end/cas_rewriter_test.rav
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
field f: Library.Nat
field f: Int

func g(x: Ref)
returns (y: Ref)
Expand All @@ -10,7 +10,7 @@ inv my_inv(x: Ref) {

proc p(x:Ref)
requires my_inv(x)
requires own(x, f, 1)
requires own(x, f, 1, 1.0)
{
// x.f := 0;
unfold my_inv(x);
Expand Down

0 comments on commit 4171659

Please sign in to comment.