Skip to content

Commit

Permalink
adapt test to use normal EWRSg again
Browse files Browse the repository at this point in the history
  • Loading branch information
javra committed Mar 26, 2019
1 parent 2a370a3 commit a408320
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Test1.agda
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Test1 (C : Set) (Cw : C → Set)
where

open import II using (PS; P; S)
open import EWRSgRec
open import EWRSg
open import Lib

Γ : Con
Expand All @@ -20,7 +20,8 @@ open import Lib
-}

Γwc : _
Γwc = Con.wc Γ (lift tt , C , T)
Γwc = Con.wc Γ {lift tt , C , T}
(lift tt , n)

Γw : _
Γw = Con.w Γ {lift tt , C , T}
Expand Down
5 changes: 3 additions & 2 deletions Test2.agda
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-# OPTIONS --rewriting --allow-unsolved-metas #-}

open import II using (PS; P; S)
open import EWRSgRec
open import EWRSg
open import Lib

module Test2
Expand All @@ -23,7 +23,8 @@ module Test2
-}

Γwc : _
Γwc = Con.wc Γ (lift tt , C , T)
Γwc = Con.wc Γ {lift tt , C , T}
(lift tt , e)

Γw : _
Γw = Con.w Γ {lift tt , C , T}
Expand Down

0 comments on commit a408320

Please sign in to comment.