Skip to content

ChartMappingSetup

FrancisBond edited this page Aug 13, 2012 · 6 revisions

This page describes how to take a grammar without chart mapping, and set up the basic infrastructure for chart mapping.

It is being written based on my (FrancisBond's) own expereinces with setting up Jacy, and should not in any way be considered a knowledgable introduction.

== What do you need ===

* types for token manipulation tmt.tdl * token-mapping-rules tmr/* * generic-lexical-entries gle.tdl

These are all read in your grammar definition language.tdl:

:begin :type.
   :include "matrix.tdl".
   :include "fundamentals.tdl".
   :include "rule-types.tdl".
   :include "principles.tdl".
   :include "letypes.tdl".
   :include "tmt.tdl".
:end :type.

:begin :instance :status token-mapping-rule.
   :include "tmr/prelude".
   :include "tmr/pos".
   :include "tmr/pos-ipa".
   :include "tmr/finis".
:end :instance.

:begin :instance :status generic-lex-entry.
   :include "gle.tdl".
:end :instance.
Clone this wiki locally