Do not use PathPrelude directly

This commit is contained in:
Frederik Hanghøj Iversen 2018-01-30 11:19:48 +01:00
parent 86c9b5b111
commit 4db19b6420
6 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
{-# OPTIONS --cubical #-}
module Cat.Categories.Rel where
open import Cubical.PathPrelude
open import Cubical
open import Cubical.GradLemma
open import Agda.Primitive
open import Data.Product renaming (proj₁ to fst ; proj₂ to snd)

View file

@ -1,6 +1,6 @@
module Cat.Categories.Sets where
open import Cubical.PathPrelude
open import Cubical
open import Agda.Primitive
open import Data.Product
open import Data.Product renaming (proj₁ to fst ; proj₂ to snd)

View file

@ -2,7 +2,7 @@
module Cat.Category.Bij where
open import Cubical.PathPrelude hiding ( Id )
open import Cubical hiding ( Id )
open import Cubical.FromStdLib
module _ {A : Set} {a : A} {P : A Set} where

View file

@ -1,7 +1,7 @@
module Cat.Category.Free where
open import Agda.Primitive
open import Cubical.PathPrelude hiding (Path)
open import Cubical hiding (Path)
open import Data.Product
open import Cat.Category as C

View file

@ -3,7 +3,7 @@
module Cat.Category.Pathy where
open import Level
open import Cubical.PathPrelude
open import Cubical
{-
module _ { '} {A : Set } {x : A}

View file

@ -4,7 +4,7 @@ module Cat.Category.Properties where
open import Agda.Primitive
open import Data.Product
open import Cubical.PathPrelude
open import Cubical
open import Cat.Category
open import Cat.Functor