summaryrefslogtreecommitdiff
path: root/examples/wiki/LexRestaurant.gf
blob: 50436e079757ce42f5ee2815698cc4a735f933ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66

interface LexRestaurant = open Syntax in {

	oper
		restaurant_N		: N ;
		food_N				: N ;
		staff_N				: N ;
		wine_N				: N ;
		pizza_N				: N ;
		cheese_N			: N ;
		fish_N				: N ;
		dish_N				: N ;
		drink_N				: N ;
		dessert_N			: N ;

		recommend_V2		: V2 ;

		chinese_A			: A ;
		french_A			: A ;
		italian_A			: A ;
		japanese_A			: A ;
		mexican_A			: A ;
		thai_A				: A ;
		expensive_A			: A ;
		cheap_A				: A ;
		nice_A				: A ;
		clean_A				: A ;
		dirty_A				: A ;
		fresh_A				: A ;
		delicious_A			: A ;
		fatty_A				: A ;
		tasteless_A			: A ;
		authentic_A			: A ;
		efficient_A			: A ;
		courteous_A			: A ;
		helpful_A			: A ;
		friendly_A			: A ;
		personal_A			: A ;
		warm_A				: A ;
		prompt_A			: A ;
		attentive_A			: A ;
		inefficient_A		: A ;
		rude_A				: A ;
		impersonal_A		: A ;
		slow_A				: A ;
		unattentive_A		: A ;
		good_A				: A ;
		great_A				: A ;
		excellent_A			: A ;
		bad_A				: A ;
		awful_A				: A ;
		horrible_A			: A ;
		disgusting_A		: A ;
		boring_A			: A ;
		diverse_A			: A ;

		noAdv_AdV			: AdV ;
		strongly_AdV		: AdV ;
		completely_AdV		: AdV ;
		certainly_AdV		: AdV ;
		honestly_AdV		: AdV ;
		really_AdV			: AdV ;
		reluctantly_AdV		: AdV ;
		hardly_AdV			: AdV ;

}