src/Pure/ProofGeneral/pgip.ML
author bulwahn
Tue, 05 Apr 2011 09:38:23 +0200
changeset 42230 594480d25aaa
parent 29606 fedb8be05f24
permissions -rw-r--r--
deriving bounded_forall instances in quickcheck_exhaustive

(*  Title:      Pure/ProofGeneral/pgip.ML
    Author:     David Aspinall

Prover-side PGIP abstraction.  
Not too closely tied to Isabelle, to help with reuse/porting.
*)

signature PGIP =
sig
    include PGIPTYPES
    include PGIPMARKUP
    include PGIPINPUT
    include PGIPOUTPUT
end

structure Pgip : PGIP = 
struct
   open PgipTypes
   open PgipMarkup
   open PgipInput
   open PgipOutput
end