2022-03-02 16:02:51 -06:00
|
|
|
{-# OPTIONS --rewriting #-}
|
|
|
|
|
2022-02-09 17:14:29 -06:00
|
|
|
module Properties where
|
|
|
|
|
2022-02-18 16:47:04 -06:00
|
|
|
import Properties.Contradiction
|
2022-02-09 17:14:29 -06:00
|
|
|
import Properties.Dec
|
2022-04-28 15:00:55 -05:00
|
|
|
import Properties.DecSubtyping
|
2022-02-18 16:47:04 -06:00
|
|
|
import Properties.Equality
|
2022-03-23 15:02:57 -05:00
|
|
|
import Properties.Functions
|
2022-02-11 14:38:35 -06:00
|
|
|
import Properties.Remember
|
2022-03-02 16:02:51 -06:00
|
|
|
import Properties.Step
|
|
|
|
import Properties.StrictMode
|
2022-03-23 15:02:57 -05:00
|
|
|
import Properties.Subtyping
|
2022-03-02 16:02:51 -06:00
|
|
|
import Properties.TypeCheck
|
2022-04-28 15:00:55 -05:00
|
|
|
import Properties.TypeNormalization
|