@@ -46,56 +46,62 @@ public class UniversalEnglishGrammaticalStructure extends GrammaticalStructure
46
46
47
47
private static final boolean USE_NAME = System .getProperty ("UDUseNameRelation" ) != null ;
48
48
49
- /*
49
+ /**
50
50
* Options for "Enhanced" representation:
51
51
*
52
- * - Process multi-word prepositions: No
53
- * - Add prepositions to relation labels: Yes
54
- * - Add prepositions only to nmod relations: No
55
- * - Add coordinating conjunctions to relation labels: Yes
56
- * - Propagate dependents: Yes
57
- * - Add "referent" relations: Yes
58
- * - Add copy nodes for conjoined Ps and PPs: No
59
- * - Turn quantificational modifiers into flat MWEs: No
60
- * - Add relations between controlling subject and controlled verbs: Yes
52
+ * <ul>
53
+ * <li> Process multi-word prepositions: No
54
+ * <li> Add prepositions to relation labels: Yes
55
+ * <li> Add prepositions only to nmod relations: No
56
+ * <li> Add coordinating conjunctions to relation labels: Yes
57
+ * <li> Propagate dependents: Yes
58
+ * <li> Add "referent" relations: Yes
59
+ * <li> Add copy nodes for conjoined Ps and PPs: No
60
+ * <li> Turn quantificational modifiers into flat MWEs: No
61
+ * <li> Add relations between controlling subject and controlled verbs: Yes
62
+ * </ul>
61
63
*
62
64
*/
63
65
public static final EnhancementOptions ENHANCED_OPTIONS = new EnhancementOptions (false , true , false , true , true , true ,
64
66
false , false , true );
65
67
66
- /*
68
+ /**
67
69
* Options for "Enhanced++" representation:
68
70
*
69
- * - Process multi-word prepositions: Yes
70
- * - Add prepositions to relation labels: Yes
71
- * - Add prepositions only to nmod relations: No
72
- * - Add coordinating conjunctions to relation labels: Yes
73
- * - Propagate dependents: Yes
74
- * - Add "referent" relations: Yes
75
- * - Add copy nodes for conjoined Ps and PPs: Yes
76
- * - Turn quantificational modifiers into flat MWEs: Yes
77
- * - Add relations between controlling subject and controlled verbs: Yes
71
+ * <ul>
72
+ * <li> Process multi-word prepositions: Yes
73
+ * <li> Add prepositions to relation labels: Yes
74
+ * <li> Add prepositions only to nmod relations: No
75
+ * <li> Add coordinating conjunctions to relation labels: Yes
76
+ * <li> Propagate dependents: Yes
77
+ * <li> Add "referent" relations: Yes
78
+ * <li> Add copy nodes for conjoined Ps and PPs: Yes
79
+ * <li> Turn quantificational modifiers into flat MWEs: Yes
80
+ * <li> Add relations between controlling subject and controlled verbs: Yes
81
+ * </ul>
78
82
*
79
83
*/
80
84
public static final EnhancementOptions ENHANCED_PLUS_PLUS_OPTIONS = new EnhancementOptions (true , true , false , true , true , true ,
81
85
true , true , true );
82
86
83
87
84
88
85
- /*
89
+ /**
86
90
* Options for "Collapsed" representation.
87
91
* This representation is similar to the "collapsed" SD representation
88
92
* without any "Extra" relations.
89
93
*
90
- * - Process multi-word prepositions: Yes
91
- * - Add prepositions to relation labels: Yes
92
- * - Add prepositions only to nmod relations: Yes
93
- * - Add coordinating conjunctions to relation labels: Yes
94
- * - Propagate dependents: No
95
- * - Add "referent" relations: No
96
- * - Add copy nodes for conjoined Ps and PPs: Yes
97
- * - Turn quantificational modifiers into flat MWEs: No
98
- * - Add relations between controlling subject and controlled verbs: No
94
+ * <ul>
95
+ * <li> Process multi-word prepositions: Yes
96
+ * <li> Add prepositions to relation labels: Yes
97
+ * <li> Add prepositions only to nmod relations: Yes
98
+ * <li> Add coordinating conjunctions to relation labels: Yes
99
+ * <li> Propagate dependents: No
100
+ * <li> Add "referent" relations: No
101
+ * <li> Add copy nodes for conjoined Ps and PPs: Yes
102
+ * <li> Turn quantificational modifiers into flat MWEs: No
103
+ * <li> Add relations between controlling subject and controlled verbs: No
104
+ * </ul>
99
105
*
100
106
*/
101
107
@ Deprecated
0 commit comments