This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Require Export Omega. | |
Require Export List. | |
Axiom classic : forall P : Prop, P \/ not P. | |
Module ListTheory. | |
Section General. | |
Import ListNotations. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Control.Monad.IO.Class | |
import Control.Monad.Trans.Class | |
import Control.Monad.Trans.Except | |
import Control.Monad.Trans.State.Strict | |
import Data.IORef | |
import qualified Data.List as List | |
import qualified Data.Map.Strict as Map | |
import qualified Data.Set as Set | |
import Data.Unique |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ndc. | |
kind parity type -> type -> type. | |
type pair (A -> B -> parity A B). | |
kind term type. | |
type fapp (string -> list term -> term). | |
kind formula type. | |
type atom (string -> list term -> formula). |
NewerOlder