2022-03-03 06:02:51 +08:00
|
|
|
{-# OPTIONS --rewriting #-}
|
|
|
|
|
2022-02-10 07:14:29 +08:00
|
|
|
module Properties where
|
|
|
|
|
2022-02-19 06:47:04 +08:00
|
|
|
import Properties.Contradiction
|
2022-02-10 07:14:29 +08:00
|
|
|
import Properties.Dec
|
2022-04-29 04:00:55 +08:00
|
|
|
import Properties.DecSubtyping
|
2022-02-19 06:47:04 +08:00
|
|
|
import Properties.Equality
|
2022-03-24 04:02:57 +08:00
|
|
|
import Properties.Functions
|
2022-02-12 04:38:35 +08:00
|
|
|
import Properties.Remember
|
2022-03-03 06:02:51 +08:00
|
|
|
import Properties.Step
|
|
|
|
import Properties.StrictMode
|
2022-03-24 04:02:57 +08:00
|
|
|
import Properties.Subtyping
|
2022-03-03 06:02:51 +08:00
|
|
|
import Properties.TypeCheck
|
2022-04-29 04:00:55 +08:00
|
|
|
import Properties.TypeNormalization
|