;;; *****************************
;;; *  PORTABLE AI LAB  - IDSIA *
;;; *****************************
;;;  
;;; Filename:    lex-1 
;;; Module:      ATN AUGMENTED TRANSITION NETWORKS
;;; Author(s):      Mike Lenz - Fabio Baj 
;;; Short Desc:  A sample Lexicon file
;;;===================================================================

;;
;; Lexicon lex1 is for use with n1 through n4.
;;

(in-package :atn)
(setq *lexicon*
  '(
    (woman N) (house N) (mouse N) (man N) (donut N)
    (pizza N) (bus N) (book N) (hat N) (telescope N)
    (carlo PN) (paolo PN) (marco PN) (luca PN) (i PRON)
    (a DET) (the DET) (that DET) (this DET) (any DET)
    (sees V) (hits V) (sings V) (lacks V) (needs V)
    (wants V) (likes V) (knows V) (eats V) (saw V)
    (who WH) (which WH) (that WH)
    (that THAT)
    (and CONJ) (or CONJ) (but CONJ)
    (in PREP) (on PREP) (with PREP)
    (does AUX) (is AUX) (has AUX) (have AUX)
    )
)