This file contains 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
(*** Turing Machines in Coq *) | |
(** Some preliminary types we'll use *) | |
CoInductive CoList (A: Type) := CONS (a:A) (t:CoList A) | NIL. | |
Arguments CONS [A] _ _. | |
Arguments NIL [A]. | |
CoInductive Delay A := HERE (a:A) | LATER (_:Delay A). | |