1
0
forked from GitHub/gf-core

Early work on LPGF compiler

This commit is contained in:
John J. Camilleri
2021-01-22 15:17:36 +01:00
parent 93b81b9f13
commit cd5881d83a
2 changed files with 71 additions and 64 deletions

View File

@@ -1,16 +1,7 @@
-- | Linearisation-only PGF format
-- Closely follows description in Section 2 of Angelov, Bringert, Ranta (2009)
-- "PGF: A Portable Run-Time Format for Type-Theoretical Grammars"
module LPGF (
LPGF,
abstractName,
linearize, linearizeConcr,
readLPGF,
-- internal/testing
encodeFile,
zero
) where
module LPGF where
import PGF (Language, readLanguage, showLanguage)
import PGF.CId