/* Copyright (C) 1996   */
1. lr : (SLR/CLR table constructor)
   usage: mlr -c morphological_connection_table_filr 
              -i input_grammar_file 
              -o output_LRtable_file

     For SLR table, you should modify the following two lines in config.h
	
        #define  CLR  1
        #define  SLR  0

     and for CLR table, 

        #define  CLR  0
        #define  SLR  1

2. The grammar should have the following format
 
       (<start> <--> (<s>))
       (<s> <--> (<np> <vp>))
       (<np> <--> (n p))

that is, all the nonterminal symbols should be enclosed with "<  >",
the start symbol should be "<start>". You can also refer to the
example grammar "exm.gra". 


3. If the format of your grammar is as follows:

       s-->np,vp.
       np-->n,p.

the program "grform" in this subdirectory can change it to the format of 2.
    

