diff --git a/gmcs/choices.py b/gmcs/choices.py index c2868aae0..717257c63 100644 --- a/gmcs/choices.py +++ b/gmcs/choices.py @@ -616,6 +616,11 @@ def postparse_uprev(self): self.convert_30_to_31() if self.version < 32: self.convert_31_to_32() + if self.version < 33: + self.convert_32_to_33() + if self.version < 34: + self.convert_33_to_34() + @@ -718,6 +723,29 @@ def has_adp_case(self, case = '', check_opt = False): return False + def has_det_case(self, case = '', check_opt = False): + """ + Returns True iff the target language has inflecting determiners + which agree with nouns in CASE. + """ + + for det in self.get('det'): + opt = det.get('opt') + if opt or not check_opt: + for feat in det.get('feat', []): + if self.has_case(feat, case): + return True + + for det_pc in self.get('det-pc'): + for lrt in det_pc['lrt']: + for feat in lrt.get('feat', []): + if feat['name'] == 'case': + return True + + return False + + + def has_optadp_case(self, case = ''): """ Returns True iff the target language has optional case-marking @@ -767,6 +795,13 @@ def has_dirinv(self): return 'scale' in self.choices + def has_gender(self): + return 'gender' in self.choices + + def has_png(self): + return ('pernum' in self.choices + or 'number' in self.choices or 'gender' in self.choices) + def has_SCARGS(self): """ Returns True iff the target language requires the SC-ARGS feature, @@ -786,6 +821,19 @@ def has_SCARGS(self): return result + def has_diverse_ques_particles(self): + # First figure out if there are diverse particles: + oblig = 0 + imp = 0 + for qpart in self.get('q-particle'): + if qpart['wh'] == 'oblig': + oblig += 1 + elif qpart['wh'] == 'imp': + imp += 1 + return (oblig > 0 and imp > 0) + + + # patterns() # Create and return a list containing information about the @@ -1214,9 +1262,10 @@ def features(self): # Questions - if 'q-infl' in self.choices: - features += [ ['question', 'plus|plus', '', 'verb', 'y'] ] - + if 'q-infl' in self.choices and not 'wh-q-infl' in self.choices: + features += [ ['question', 'polar|polar', '', 'verb', 'y'] ] + elif 'q-infl' in self.choices and 'wh-q-infl' in self.choices: + features += [ ['question', 'polar|polar;wh|wh;both|both;no|no', '', 'verb', 'y'] ] # Information Structure infostr_values = 'focus|focus;topic|topic;contrast|contrast;semantic-focus|non-contrastive-focus;contrast-focus|contrastive-focus;aboutness-topic|non-contrastive-topic;contrast-topic|contrastive-topic;focus-or-topic|focus-or-topic;contrast-or-focus|contrast-or-focus;contrast-or-topic|contrast-or-topic;non-topic|non-topic;non-focus|non-focus;bg|background' #mkg_values = 'fc|focus;tp|topic;fc-only|focus-only;tp-only|topic-only;fc-+-tp|focus-and-topic;non-tp|non-topic;non-fc|non-focus;unmkg|unmarking' @@ -1326,7 +1375,7 @@ def features(self): # convert_value(), followed by a sequence of calls to convert_key(). # That way the calls always contain an old name and a new name. def current_version(self): - return 32 + return 34 def convert_value(self, key, old, new, partial=False): if key in self: @@ -2292,6 +2341,30 @@ def convert_31_to_32(self): if strat.get('possessum-type')=='non-affix': if not strat.get('possessum-mark-order'): strat['possessum-mark-order'] = hc + + def convert_32_to_33(self): + if self.get('q-part') == 'on': + orth = self.get('q-part-orth') + self.delete('q-part-orth') + self['q-particle'] = ChoiceList(full_key='q-particle') + cdict = ChoiceDict(full_key = 'q-particle1') + cdict['orth'] = orth + self['q-particle'].append(cdict) + + + def convert_33_to_34(self): + """ + The feature question's value "plus" was renamed "polar". + """ + if self.get('q-infl') == 'on': + for cat in ['verb-pc']: + for pc in self.get(cat): + for lrt in pc['lrt']: + for feat in lrt['feat']: + if feat['name'] == 'question' and feat['value'] == 'plus': + feat['value'] = 'polar' + + ######################################################################## # FormData Class # This Class acts like form data which would normally diff --git a/gmcs/constants.py b/gmcs/constants.py index da89134ff..ad0c2cc03 100644 --- a/gmcs/constants.py +++ b/gmcs/constants.py @@ -11,13 +11,13 @@ ''' - ### Choices for values of checkboxes, radio buttons ### ON = 'on' # Choice convention for checked box YES = 'yes' # Choice convention for selected radio button ORTH = 'orth' # Choice convention for orthographies associated with stems and affixes. + ### Section names ### WORD_ORDER = 'word-order' # Choices section associated with word order subpage @@ -33,3 +33,26 @@ OV_ORDERS = ['sov', 'ovs', 'osv', 'v-final'] VFINAL = ['sov','osv','v-final'] VO_ORDERS = ['svo', 'vos', 'vso', 'v-initial'] + +### WH-QUESTIONS + +IN_SITU = 'in-situ' # No question phrase fronting +EMBED_INSITU = 'embed-insitu' # Embedded in situ questions (when fronting is also possible; that's rare) +MTRX_FRONT = 'front-matrix' # Question phrases fronting in matrix clauses +WH_QUE_PTCL = 'wh-q-part' # Question particle for constituent questions +WH_INFL = 'wh-q-infl' # Inflectional paradigm for constituent questions +MULTI = 'multi' # Multiple (e.g. fronting) +ALL_OBLIG = 'all-oblig' # All question phrases are fronted obligatorily +SG_OBLIG = 'single-oblig' # One question phrase is obligatorily fronted +SINGLE = 'single' +NO_MULTI = 'no-multi-ques' # No multiple questions in one clause +PIED = 'pied-pip' # Pied piping +PIED_ADP = 'pied-pip-adp' # Pied piping of specifically adpositions +OBL_PIP_NOUN = 'oblig-pied-pip-noun' # Obligatory pied piping of nouns +OBL_PIP_ADP = 'oblig-pied-pip-adp' # Obligatory pied piping of adpositions +MTRX_FR_OPT = 'matrix-front-opt' # Optionality of fronting in matrix clauses + + +### LEXICAL TYPE NAMES (SOME); see lexbase.py +WH_PRO = 'wh-pronoun-noun-lex' +INTER = 'inter' # Interrogative words flag \ No newline at end of file diff --git a/gmcs/customize.py b/gmcs/customize.py index a2fcef8c5..4a1e3d07a 100755 --- a/gmcs/customize.py +++ b/gmcs/customize.py @@ -15,6 +15,7 @@ from gmcs import tdl from gmcs.choices import ChoicesFile from gmcs.linglib import adnominal_possession +from gmcs.linglib import adverbs_adpositions from gmcs.linglib import agreement_features from gmcs.linglib import argument_optionality from gmcs.linglib import case @@ -32,6 +33,7 @@ from gmcs.linglib import valence_change from gmcs.linglib import verbal_features from gmcs.linglib import word_order +from gmcs.linglib import wh_ques from gmcs.linglib import yes_no_questions from gmcs.utils import format_comment_block @@ -484,6 +486,10 @@ def customize_matrix(path, arch_type, destination=None, force_dest=False): # do on the other TDL files. NOTE: This needs to be called # before customize_lexicon() and customize_inflection() lexical_items.insert_ids(ch) + # Currently, yes-no questions need to go before the lexicon + # because the lexicon needs to know whether there are obligatory question particles, + # to determine the head on the question-embedding verb. + yes_no_questions.customize_yesno_questions(mylang, ch, rules, lrules, hierarchies,roots) # The following might modify hierarchies in some way, so it's best # to customize those components and only have them contribute their @@ -513,8 +519,6 @@ def customize_matrix(path, arch_type, destination=None, force_dest=False): features.process_cfv_list(mylang, ch, hierarchies, to_cfv) - - # Call the other customization functions agreement_features.customize_agreement_features(mylang, hierarchies) adnominal_possession.customize_adnominal_possession(mylang,ch,rules,irules,lexicon,hierarchies) @@ -522,9 +526,13 @@ def customize_matrix(path, arch_type, destination=None, force_dest=False): valence_change.customize_valence_change(mylang, ch, lexicon, rules, lrules, hierarchies) word_order.customize_word_order(mylang, ch, rules) coordination.customize_coordination(mylang, ch, lexicon, rules, irules) - yes_no_questions.customize_yesno_questions(mylang, ch, rules, lrules, hierarchies) clausalmods.customize_clausalmods(mylang, ch, lexicon, rules, roots, trigger) clausalcomps.customize_clausalcomps(mylang,ch,lexicon,rules) + adverbs_adpositions.customize_adv_adp(ch,mylang,rules) + wh_ques.customize_wh_ques(mylang,ch,rules,roots) + + # Customization having to do with punctuation, [incr tsdb()], + # parsers, roots, and vpm. customize_punctuation(grammar_path) customize_test_sentences(grammar_path) customize_itsdb(grammar_path) diff --git a/gmcs/deffile.py b/gmcs/deffile.py index 036956639..550649d5c 100755 --- a/gmcs/deffile.py +++ b/gmcs/deffile.py @@ -547,6 +547,7 @@ class MatrixDefFile: 'tense-aspect-mood':'Tense, Aspect and Mood', 'evidentials': 'Evidentials', 'other-features':'Other Features', 'sentential-negation':'Sentential Negation', 'coordination':'Coordination', 'matrix-yes-no':'Matrix Yes/No Questions', + 'wh-q':'Constituent (Wh-) Questions', 'info-str':'Information Structure', 'arg-opt':'Argument Optionality', 'clausal-comp':'Clausal Complements', @@ -565,6 +566,7 @@ class MatrixDefFile: 'evidentials': 'Evidentials', 'other-features':'OtherFeatures', 'sentential-negation':'SententialNegation', 'coordination':'Coordination', 'matrix-yes-no':'YesNoQ', + 'wh-q':'WhQ', 'info-str':'InformationStructure', 'arg-opt':'ArgumentOptionality', 'clausal-comp':'ClausalComplements', diff --git a/gmcs/feature_type_use.py b/gmcs/feature_type_use.py new file mode 100644 index 000000000..6847a43f3 --- /dev/null +++ b/gmcs/feature_type_use.py @@ -0,0 +1,7 @@ +# Attempt to flag specific features which were added to the grammar by a component. +# One such feature is INIT; it is not needed in all grammars but can be added by the Word Order library, +# the clausal complements library, the clausal modifiers library, and the Wh-questions library +# (and possibly other libraries). + +USED_FEATURES = {'INIT':False} +USED_TYPES = {'qdet':False,'qpro':False,'qadv':False,'qverb':False} \ No newline at end of file diff --git a/gmcs/linglib/adnominal_possession.py b/gmcs/linglib/adnominal_possession.py index b754efcc1..04a6cc1de 100644 --- a/gmcs/linglib/adnominal_possession.py +++ b/gmcs/linglib/adnominal_possession.py @@ -115,7 +115,7 @@ CAT [ VAL [ SPR < [ LOCAL.CAT.HEAD det,\ OPT + ] >,\ COMPS olist,\ - SUBJ olist ],\ + SUBJ olist, SPEC < > ],\ HEAD noun & [ PRON + ] ] ],\ LKEYS.ALTKEYREL #altkeyrel & noun-relation &\ [ PRED "pron_rel",\ @@ -778,11 +778,11 @@ def customize_possessum_irules(strat,mylang,rules,ch,strat_num,mod_spec,mark_loc mylang.add(possessum_rule_name+':= cat-change-only-lex-rule & \ [ SYNSEM.LOCAL.CAT [ HEAD #head,\ POSSESSUM possessum-'+strat_num+',\ - VAL [ COMPS #comps,\ + VAL [ SPEC #spec, COMPS #comps,\ SPR < [ LOCAL [ CAT [ VAL.SPR < >,\ HEAD +nd ] ] ] > ] ] ,\ DTR.SYNSEM.LOCAL [ CAT [ HEAD #head & [ PRON - ],\ - VAL.COMPS #comps ] ] ].',merge=True) + VAL [ COMPS #comps, SPEC #spec ] ] ] ].',merge=True) # Add constraints to possessor rule for mod version @@ -794,17 +794,17 @@ def customize_possessum_irules(strat,mylang,rules,ch,strat_num,mod_spec,mark_loc if mark_loc=='possessum' or mark_loc=='both': mylang.add(possessum_rule_name+':= val-change-with-ccont-lex-rule & \ [ SYNSEM.LOCAL.CAT [ POSSESSUM possessum-'+strat_num+',\ - VAL [ SPR #spr, \ - COMPS <[ OPT - ,\ + VAL [ SPEC #spec, SPR #spr, \ + COMPS.FIRST [ OPT - ,\ LOCAL [ CAT cat-sat & [ HEAD +np,\ VAL.SPR < > ], \ - CONT.HOOK [ INDEX #possessor ] ] ]> ] ],\ + CONT.HOOK [ INDEX #possessor ] ] ] ] ],\ C-CONT [ HOOK #hook ,\ RELS.LIST < '+POSS_REL+' >,\ HCONS 0-alist,\ ICONS 0-alist ],\ DTR.SYNSEM.LOCAL [ CAT [ HEAD.PRON -,\ - VAL.SPR #spr ],\ + VAL [ SPR #spr, SPEC #spec ] ],\ CONT.HOOK #hook & [ INDEX #possessum,\ LTOP #lbl ] ] ].',merge=True) @@ -837,14 +837,14 @@ def customize_possessum_irules(strat,mylang,rules,ch,strat_num,mod_spec,mark_loc mylang.add(possessum_rule_name+':= cat-change-only-lex-rule & \ [ SYNSEM.LOCAL.CAT [ HEAD #head,\ POSSESSUM possessum-'+strat_num+',\ - VAL [ SPR #spr ] ],\ + VAL [ SPEC #spec, SPR #spr ] ],\ C-CONT [ HOOK #hook ,\ RELS 0-alist,\ HCONS 0-alist,\ ICONS 0-alist ],\ DTR.SYNSEM.LOCAL [ CONT.HOOK #hook,\ CAT [ HEAD #head & [ PRON - ],\ - VAL.SPR #spr ] ] ].',merge=True) + VAL [ SPR #spr, SPEC #spec ] ] ] ].',merge=True) # Add agreement features to the possessum affix if strat.get('possessum-affix-agr')=='agree': @@ -975,7 +975,7 @@ def customize_possessor_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod mylang.add('possessor-adp-lex-'+strat_num+' '+POSSESSOR_ADP_LEX) # Make sure no other adps are going to show up where possessor adp should: - mylang.add('basic-adposition-lex :+ [ SYNSEM.LOCAL.CAT [ HEAD.POSSESSOR nonpossessive ,\ + mylang.add('basic-adposition-lex :+ [ SYNSEM.LOCAL.CAT [ HEAD.POSSESSOR nonpossessive,\ POSSESSUM nonpossessive ] ].') # Check if ordering info needs to be added to adp @@ -1028,7 +1028,7 @@ def customize_possessor_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod mylang.add('possessor-adp-lex-'+strat_num+' := \ [ SYNSEM.LOCAL [ CAT [ POSTHEAD '+ph+',\ HEAD [ POSSESSOR possessor-'+strat_num+',\ - MOD.FIRST.LOCAL [ CAT [ HEAD.PRON -,\ + MOD.FIRST.LOCAL [ CAT [ HEAD noun & [ PRON - ],\ VAL.SPR < [ ] > ] ] ] ],\ CONT [ HCONS 0-alist ] ] ] .') @@ -1036,7 +1036,8 @@ def customize_possessor_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod if mark_loc=='possessor': mylang.add('possessor-adp-lex-'+strat_num+' := \ [ SYNSEM.LOCAL [ CAT [ VAL [ COMPS.FIRST.LOCAL [ CONT.HOOK.INDEX #possessor ] ],\ - HEAD.MOD.FIRST.LOCAL [ CONT.HOOK [ INDEX #possessum,\ + HEAD.MOD.FIRST.LOCAL [ CAT.HEAD noun, ' + ' CONT.HOOK [ INDEX #possessum,\ LTOP #lbl ] ] ],\ CONT [ RELS.LIST < '+POSS_REL+' > ] ] ].') @@ -1139,7 +1140,7 @@ def customize_possessum_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod mylang.add('possessum-noun-lex-'+strat_num+' '+POSSESSUM_NOUN_LEX) mylang.add('possessum-noun-lex-'+strat_num+' := \ - [ SYNSEM.LOCAL [ CAT [ VAL.SPR < [ LOCAL.CAT.HEAD.POSSESSOR possessor-'+strat_num+' ] >,\ + [ SYNSEM.LOCAL [ CAT [ VAL [ SPEC < >, SPR < [ LOCAL.CAT.HEAD.POSSESSOR possessor-'+strat_num+' ] > ],\ HEAD [ POSSESSOR nonpossessive ],\ POSSESSUM possessum-'+strat_num+' ] ] ].',merge=True) @@ -1158,14 +1159,14 @@ def customize_possessum_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod mylang.add('possessum-noun-lex-'+strat_num+' '+POSSESSUM_NOUN_LEX) mylang.add('possessum-noun-lex-'+strat_num+' := \ - [ SYNSEM.LOCAL [ CAT [ VAL.SPR < [ LOCAL.CAT.HEAD.POSSESSOR possessor-'+strat_num+' ] >,\ + [ SYNSEM.LOCAL [ CAT [ VAL [ SPEC < >, SPR < [ LOCAL.CAT.HEAD.POSSESSOR possessor-'+strat_num+' ] > ],\ HEAD [ POSSESSOR nonpossessive ],\ POSSESSUM possessum-'+strat_num+' ] ] ].',merge=True) if mark_loc=='possessum-with-pron': mylang.add('possessum-noun-lex-'+strat_num+' '+POSSESSUM_NOUN_LEX_W_PRON) - mylang.add('possessum-noun-lex-'+strat_num+' := [ SYNSEM.LOCAL [ CAT [ VAL.SPR < [ LOCAL.CAT.HEAD.POSSESSOR possessor-'+strat_num+' ] >,\ + mylang.add('possessum-noun-lex-'+strat_num+' := [ SYNSEM.LOCAL [ CAT [ VAL [ SPEC < >, SPR < [ LOCAL.CAT.HEAD.POSSESSOR possessor-'+strat_num+' ] > ],\ HEAD [ POSSESSOR nonpossessive ],\ POSSESSUM possessum-'+strat_num+' ] ] ].',merge=True) if order_manip: @@ -1185,7 +1186,7 @@ def customize_possessum_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod [ SYNSEM.LOCAL [ CAT [ POSSESSUM possessum-'+strat_num+',\ HEAD noun & [ POSSESSOR nonpossessive,\ INIT '+init+' ],\ - VAL [ COMPS < #possessum-comp & [ OPT -,\ + VAL [ SPEC < >, COMPS < #possessum-comp & [ OPT -,\ LOCAL [ CONT.HOOK #hook &\ [ INDEX #possessum,\ LTOP #lbl ] ,\ @@ -1194,7 +1195,7 @@ def customize_possessum_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod POSSESSUM nonpossessive ] ] ],\ #possessor-comp & [ OPT -,\ LOCAL [ CAT [ POSSESSUM nonpossessive,\ - VAL.SPR < >,\ + VAL [ SPR < >, COMPS < > ],\ HEAD +np '+possessor_constr+' ],\ CONT.HOOK.INDEX #possessor ] ] >,\ SPR #spr ] ],\ @@ -1210,7 +1211,7 @@ def customize_possessum_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod [ SYNSEM.LOCAL [ CAT [ POSSESSUM possessum-'+strat_num+',\ HEAD noun & [ POSSESSOR nonpossessive,\ INIT '+init+' ],\ - VAL [ COMPS < #possessum-comp & [ OPT -,\ + VAL [ SPEC < >, COMPS < #possessum-comp & [ OPT -,\ LOCAL [ CONT.HOOK #hook & [ INDEX #possessum ] ,\ CAT [ VAL.SPR #spr & < [ ] >,\ HEAD noun & [ POSSESSOR nonpossessive ],\ @@ -1254,7 +1255,7 @@ def customize_possessum_lexicon(strat,mylang,ch,lexicon,strat_name,strat_num,mod if mark_loc=='possessum-with-pron': pron_type=noun_id(strat) mylang.add(pron_type+' :=\ - [ SYNSEM.LOCAL [ CAT.HEAD.MOD.FIRST.LOCAL.CAT.POSSESSUM.POSS-AGR #head-png,\ + [ SYNSEM.LOCAL [ CAT.HEAD.MOD.FIRST.LOCAL.CAT [ HEAD noun, POSSESSUM.POSS-AGR #head-png ],\ CONT.HOOK.INDEX.PNG #head-png ] ].') mylang.add(noun_type+' := possessum-noun-lex-'+strat_num+'.') @@ -1325,7 +1326,7 @@ def customize_possessor_pron_lexicon(strat,mylang,ch,lexicon,strat_name,strat_nu [ SYNSEM.LOCAL [ CAT [ POSTHEAD '+ph+',\ HEAD [ POSSESSOR possessor-pron-'+strat_num+',\ MOD < [ OPT -,\ - LOCAL [ CAT [ HEAD.PRON -,\ + LOCAL [ CAT [ HEAD noun & [ PRON - ],\ VAL [ SPR < [ ] >,\ COMPS < > ] ],\ CONT.HOOK [ INDEX #possessum,\ @@ -1372,8 +1373,7 @@ def customize_possessor_pron_lexicon(strat,mylang,ch,lexicon,strat_name,strat_nu # Add non-PNG features (only enabled for mod-like prons): instance_tmp={} - for key in list(pron_inst.keys()): - + for key in list(pron_inst.keys()): new_key=key.replace('feat','skip') new_key=new_key.replace('non-png-skip','feat') instance_tmp[new_key]=pron_inst.get(key) @@ -1389,7 +1389,7 @@ def customize_possessor_pron_lexicon(strat,mylang,ch,lexicon,strat_name,strat_nu mylang.add('poss-unary-phrase-pron-'+strat_num+' := [ SYNSEM.LOCAL.CAT.VAL.SPEC.FIRST.LOCAL.CAT.POSSESSUM possessum-pron-'+strat_num+' ].',section='phrases') if mod_spec=='mod': - mylang.add(noun_type+' := [ SYNSEM.LOCAL.CAT.HEAD.MOD < [ LOCAL.CAT.POSSESSUM possessum-pron-'+strat_num+'] > ].') + mylang.add(noun_type+' := [ SYNSEM.LOCAL.CAT.HEAD.MOD < [ LOCAL.CAT [ HEAD noun, POSSESSUM possessum-pron-'+strat_num+'] ] > ].') # Add affixal markings: if strat.get('possessum-mark-type')=='affix': @@ -1406,7 +1406,7 @@ def customize_possessor_pron_lexicon(strat,mylang,ch,lexicon,strat_name,strat_nu if mod_spec=='mod': mylang.add(noun_type+' := \ [ SYNSEM.LOCAL [ CONT.HOOK.INDEX.PNG #png,\ - CAT.HEAD.MOD.FIRST.LOCAL.CAT.POSSESSUM.POSS-AGR #png ] ].') + CAT.HEAD.MOD.FIRST.LOCAL.CAT [ HEAD noun, POSSESSUM.POSS-AGR #png ] ] ].') if strat.get('possessum-mark-type')=='non-affix': diff --git a/gmcs/linglib/adverbs_adpositions.py b/gmcs/linglib/adverbs_adpositions.py new file mode 100644 index 000000000..6e47b9bd6 --- /dev/null +++ b/gmcs/linglib/adverbs_adpositions.py @@ -0,0 +1,31 @@ +''' +This is not a fully fledged library. +Below is what was added along with the Constituent (Wh-) Questions library, mostly for testing purposes. +olzama@uw.edu +''' + +from gmcs.utils import get_name,TDLencode, orth_encode + +from gmcs import constants + +# Constants + +HEAD_ADJ = '''my-head-adj-phrase := head-adj-int-phrase & + [ HEAD-DTR.SYNSEM.LOCAL.CAT [ HEAD +nvr, VAL [ SUBJ clist, COMPS clist ] ], + NON-HEAD-DTR.SYNSEM.LOCAL.CAT [ HEAD +jrp, VAL.COMPS < > ] ]. + ''' + +ADJ_HEAD = '''my-adj-head-phrase := adj-head-int-phrase & + [ HEAD-DTR.SYNSEM [ LOCAL.CAT [ HEAD +nvr ] ], + NON-HEAD-DTR.SYNSEM.LOCAL.CAT [ HEAD +jrp, VAL.COMPS < > ] ]. + ''' + +def customize_adv_adp(ch, mylang, rules): + if len(ch.get('adv',[])) > 0 or len(ch.get('normadp',[])) > 0: #need to handle also adjectives here + mylang.add_literal(';;; Head Adjunct rules',section='phrases') + mylang.add_literal('; For intersective adjuncts with underspecified attachment locations:',section='phrases') + mylang.add(HEAD_ADJ,section='phrases') + mylang.add(ADJ_HEAD,section='phrases') + mylang.add('bare-np-phrase := [ SYNSEM.LIGHT - ].') + rules.add('head-adj := my-head-adj-phrase.') + rules.add('adj-head := my-adj-head-phrase.') diff --git a/gmcs/linglib/auxiliaries.py b/gmcs/linglib/auxiliaries.py index b999b9a27..35da806fa 100644 --- a/gmcs/linglib/auxiliaries.py +++ b/gmcs/linglib/auxiliaries.py @@ -34,8 +34,7 @@ def define_arg_str_and_valency(aux, auxcomp, ch, mylang, negaux): norder = ch.get('comp-neg-order-head-comp') supertypename = set_supertypename(auxcomp) basic_typedef = supertypename + ' := aux-lex & \ - [ SYNSEM.LOCAL.CAT.VAL [ SPR < >, \ - SPEC < > ] ].' + [ SYNSEM.LOCAL.CAT.VAL [ SPEC < > ] ].' mylang.add(basic_typedef) # EKN 03-02-2018 Add [ CASE real-case ] to args of auxes iff @@ -54,8 +53,7 @@ def define_arg_str_and_valency(aux, auxcomp, ch, mylang, negaux): COMPS < #comps > ], \ ARG-ST < #comps & \ [ LOCAL.CAT [ VAL [ SUBJ < >, \ - COMPS < >, \ - SPR < >, \ + COMPS < > \ SPEC < > ], \ HEAD verb ]] > ].' if ch.get('multiple-aux') == 'no': @@ -350,7 +348,7 @@ def get_users_type_name(aux): userstypename = name + '-aux-lex' return userstypename -def add_auxiliaries_to_lexicon(userstypename, sem, aux, lexicon, trigger, hierarchies): +def add_auxiliaries_to_lexicon(userstypename, sem, aux, lexicon, trigger): for stem in aux.get('stem',[]): orth = orth_encode(stem.get('orth')) id = stem.get('name') @@ -374,16 +372,16 @@ def add_auxiliaries_to_lexicon(userstypename, sem, aux, lexicon, trigger, hierar lexicon.add(typedef, merge=True) else: tense = aspect = mood = evidential = '' + for feat in aux.get('feat',[]): - value = hierarchies[feat.get('name')].get_type_covering(feat.get('value').split(', ')) if feat.get('name') == 'tense': - tense = value + tense = feat.get('value') if feat.get('name') == 'aspect': - aspect = value + aspect = feat.get('value') if feat.get('name') == 'mood': - mood = value + mood = feat.get('value') if feat.get('name') == 'evidential': - evidential = value + evidential = feat.get('value') grdef = TDLencode(id) +'_gr := arg0e_gtr & \ [ CONTEXT [ RELS.LIST < [ ' @@ -426,7 +424,7 @@ def customize_auxiliaries(mylang, ch, lexicon, trigger, hierarchies): define_arg_str_and_valency(aux, auxcomp, ch, mylang, negaux) create_semantics(sem, aux, auxcomp, mylang, ch, hierarchies, negaux) - add_auxiliaries_to_lexicon(userstypename, sem, aux, lexicon, trigger, hierarchies) + add_auxiliaries_to_lexicon(userstypename, sem, aux, lexicon, trigger) diff --git a/gmcs/linglib/case.py b/gmcs/linglib/case.py index 4d16604a1..04a43c168 100644 --- a/gmcs/linglib/case.py +++ b/gmcs/linglib/case.py @@ -199,7 +199,7 @@ def customize_trigger_rules(adp_type, trigger): # customize_case_adpositions() # Create the appropriate types for case-marking adpositions -def customize_case_adpositions(mylang, lexicon, trigger, ch): +def customize_case_adpositions(mylang, lexicon, trigger, ch, case_pos): cases = case_names(ch) # features = ch.features() to_cfv = [] @@ -210,8 +210,8 @@ def customize_case_adpositions(mylang, lexicon, trigger, ch): ';;; Case marking adpositions are constrained not to\n' + \ ';;; be modifiers.' mylang.add_literal(comment) - - mylang.add('+np :+ [ CASE case ].', section='addenda') + case_pos.add('adp') + #mylang.add('+np :+ [ CASE case ].', section='addenda') # EKN 2018-04-14 Case marking adps need to be marked as nonpossessive poss = True if ch.get('poss-strat') or ch.get('poss-pron') else False @@ -519,6 +519,42 @@ def customize_verb_case(mylang, ch): [ SYNSEM.LOCAL.CAT.VAL.SUBJ < [ LOCAL.CAT.HEAD.CASE-MARKED + ] > ].' mylang.add(typedef) +''' +OZ 2020-06-09 +This is a reduced duplicate of the customize_verb_case() function; I did +not want to make it any more long or complex. +''' +def get_verb_case(ch): + cases = case_names(ch) + mycases = {'tran':None,'intran':None} + for p in ch.patterns(): + if not ('(case unspecified)' in p[1]): + rule_pattern = p[2] + p = p[0].split(',') + if not rule_pattern: + c = p[0].split('-') # split 'agentcase-patientcase' + if p[0] == 'trans' or len(c) > 1: # transitive + if p[0] == 'trans': + a_case = '' + o_case = '' + a_head = ch.case_head() + o_head = ch.case_head() + else: + a_case = canon_to_abbr(c[0], cases) + o_case = canon_to_abbr(c[1], cases) + a_head = ch.case_head(c[0]) + o_head = ch.case_head(c[1]) + mycases['tran']={'A':a_case,'AH':a_head,'O':o_case,'OH':o_head} + + else: # intransitive + if c[0] == 'intrans': + s_case = '' + s_head = ch.case_head() + else: + s_case = canon_to_abbr(c[0], cases) + s_head = ch.case_head(c[0]) + mycases['intran'] = {'S':s_case,'SH':s_head} + return mycases ############## # VALIDATION # diff --git a/gmcs/linglib/clausalcomps.py b/gmcs/linglib/clausalcomps.py index 99538211c..cc4780851 100644 --- a/gmcs/linglib/clausalcomps.py +++ b/gmcs/linglib/clausalcomps.py @@ -1,8 +1,9 @@ from gmcs.utils import get_name,TDLencode, orth_encode -from gmcs import constants +from gmcs import constants, feature_type_use from gmcs.linglib import lexbase + ###################################################################### # Clausal Complements # Create the type definitions associated with the user's choices @@ -11,6 +12,9 @@ ###################################################################### # Constants (specific to this module) +#TODO: It should probably all live in constants.py +from gmcs.constants import MTRX_FRONT, SINGLE, MULTI + COMPS = 'comps' # choice name for clausal complement strategies COMP = 'comp' # reserved head name for complementizers; should be a constant on some other page? # Also, the name for the choice for complementizer of a clausal complement strategy. @@ -81,7 +85,7 @@ def add_complementizers_to_lexicon(lexicon,ch): def add_types_to_grammar(mylang,ch,rules,have_complementizer): if have_complementizer: mylang.set_section(COMPLEX) - add_complementizer_supertype(mylang) + add_complementizer_supertype(mylang,ch) wo = ch.get(constants.WORD_ORDER) init = use_init(ch, mylang, wo) extra = extra_needed(ch,mylang) @@ -90,7 +94,7 @@ def add_types_to_grammar(mylang,ch,rules,have_complementizer): customize_clausal_verb(clausalverb,mylang,ch,cs,extra) typename = add_complementizer_subtype(cs, mylang,ch,extra) if cs[COMP] else None if not additional_hcr_needed(cs,wo): - constrain_wrt_quest_part(cs,wo,ch,mylang,typename) + constrain_wrt_comp(cs,wo,ch,mylang) if wo in OV or wo in VO: general, additional = determine_head_comp_rule_type(ch.get(constants.WORD_ORDER),cs) customize_order(ch, cs, mylang, rules, typename, init,general,additional) @@ -99,35 +103,28 @@ def add_types_to_grammar(mylang,ch,rules,have_complementizer): if extra: constrain_for_extra(wo,general, additional, cs, mylang) elif wo == 'free': - constrain_complementizer(wo,cs,mylang,typename) - + constrain_wrt_comp(cs,wo,ch,mylang) def constrain_for_extra(wo,general, additional, cs, mylang): if cs[EXTRA] and additional_hcr_needed(cs, wo): mylang.add(additional + '-phrase := [ NON-HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD.EXTRA + ].', merge=True) mylang.add(general + '-phrase := [ NON-HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD.EXTRA - ].', merge=True) -def constrain_wrt_quest_part(cs,wo,ch,mylang,typename): + +# TODO: This should be handled in word order, and there is already relevant code, though it is mostly +# about adpositions and auxiliaries. But it should be able to incorporate this there. +def constrain_wrt_comp(cs,wo,ch,mylang): additional = has_additional(ch,cs,wo) if additional: - mylang.add('head :+ [ INIT bool ].', section='addenda') - my_phrase = 'head-comp' if additional == 'comp-head' else 'comp-head' - path = 'SYNSEM.LOCAL.CAT.HEAD' - init_val = '+' if additional == 'head-comp' else '-' - default_init_val = '+' if init_val == '-' else '-' - constrain_lexitem_for_feature(typename,path,'INIT',default_init_val,mylang) - mylang.add(my_phrase + '-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD.INIT ' + default_init_val + ' ].', - merge=True,section='phrases') - mylang.add(additional + '-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD.INIT ' + init_val + ' ].', + mylang.add(additional + '-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD +nv ].', merge=True,section='phrases') - #quest_part_name = TDLencode(ch.get('q-part-orth')) - constrain_lexitem_for_feature('qpart-lex-item',path,'INIT',init_val,mylang) -''' -Did the word order library added a HCR constrained for HEAD comp on the HEAD-DTR? (For question particles). -If so, constrain complementizers and HCR accordingly. -''' def has_additional(ch,cs,wo): + if wo == 'free': + if cs[AFT]: + return 'head-comp' + if cs[BEF]: + return 'comp-head' if wo in OV: if not cs[COMP] == 'before' and ch['q-part-order'] == 'before': return 'head-comp' @@ -194,7 +191,7 @@ def constrain_complementizer(wo,cs,mylang,typename): def use_init(ch, mylang, wo): init = False - if wo in OV or wo in VO or wo == 'free': + if wo in OV or wo in VO: for cs in ch.get(COMPS): is_flex = is_more_flexible_order(wo,cs) init = init_needed(wo, cs, mylang, is_flex) @@ -202,14 +199,15 @@ def use_init(ch, mylang, wo): break return init -def add_complementizer_supertype(mylang): +def add_complementizer_supertype(mylang,ch): mylang.add(lexbase.COMPLEMENTIZER, section=COMPLEX,merge=True) def add_complementizer_subtype(cs, mylang,ch,extra): id = cs.full_key typename = id + '-' + COMP_LEX_ITEM mylang.add(typename + ' := ' + COMP_LEX_ITEM + '.', section=COMPLEX) - mylang.add(typename + ' := [ SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.LOCAL.CAT.MC - ].',merge=True) + mylang.add(typename + ' := [ SYNSEM.LOCAL.CAT [ VAL.COMPS.FIRST.LOCAL.CAT.MC -,' + 'MC na-or-- ] ].',merge=True) constrain_for_features(typename,cs,mylang,'SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.',ch,is_nominalized_complement(cs)) if cs['cformvalue']: constrain_lexitem_for_feature(typename,'SYNSEM.LOCAL.CAT.HEAD','FORM',cs['cformvalue'],mylang) @@ -218,6 +216,18 @@ def add_complementizer_subtype(cs, mylang,ch,extra): mylang.add(typename + ':= [ SYNSEM.LOCAL.CAT.VAL.COMPS < [ LOCAL.CAT.HEAD.EXTRA + ] > ].',merge=True) elif cs[SAME] and not cs[EXTRA]: mylang.add(typename + ':= [ SYNSEM.LOCAL.CAT.VAL.COMPS < [ LOCAL.CAT.HEAD.EXTRA - ] > ].',merge=True) + if cs['ques'] == 'ques': # Should this be disallowed in validation? Or, is this the English "whether"? + mylang.add(typename + ':= [ SYNSEM.LOCAL [ CONT.HOOK.INDEX.SF ques,' + 'CAT.VAL.COMPS.FIRST [ NON-LOCAL.QUE.LIST < > ] ] ].', merge=True) + + elif cs['ques'] == 'prop': + mylang.add(typename + ':= [ SYNSEM.LOCAL.CONT.HOOK.INDEX.SF prop ].', merge=True) + # OZ 2020-05-09 The below doesn't work because it violates compositionality of semantics. Delete once sure. +# else: +# mylang.add(typename + ':= [ SYNSEM [ LOCAL [ CAT.VAL.COMPS < [ LOCAL.CONT.HOOK.INDEX.SF #sf ] >,' +# 'CONT.HOOK.INDEX.SF #sf ] ] ].', merge=True) + + return typename ''' @@ -412,15 +422,23 @@ def add_special_complementizer_HCR(additional, cs, general, mylang, rules, wo,is merge=True) rules.add(name + ' := ' + name + '-phrase.') -def determine_clausal_verb_comp_head(cs): +def determine_clausal_verb_comp_head(cs,ch): head = '' if cs[COMP]: - if cs[COMP] == 'oblig': + if cs[COMP] == 'oblig' and not cs['comp-q'] == 'on': head = 'comp' - elif cs[COMP] == 'opt': + else: head = '+vc' else: - head = 'noun' if is_nominalized_complement(cs) else 'verb' + if is_nominalized_complement(cs): + head = 'noun' + elif ch.has_diverse_ques_particles(): + if cs['ques'] == 'ques': + head = 'comp' + else: + head = 'verb' + else: + head = 'verb' return head @@ -586,7 +604,7 @@ def add_clausalcomp_verb_supertype(ch, mainorverbtype,mylang): [ SYNSEM.LOCAL.CAT.VAL.COMPS < #comps >,\ ARG-ST < [ LOCAL.CAT.HEAD ' + head + ' ],\ #comps &\ - [ LOCAL.CAT.VAL [ SPR < >, COMPS < >, SUBJ < > ] ] > ].' + [ LOCAL.CAT [ MC na-or--, VAL [ SPR < >, COMPS < >, SUBJ < > ] ] ] > ].' mylang.add(typedef,section='verblex') @@ -613,6 +631,25 @@ def customize_clausal_verb(clausalverb,mylang,ch,cs,extra): mylang.add(clausalverb + ' := [ SYNSEM.LOCAL.CAT.VAL.COMPS < [ LOCAL.CAT.HEAD.EXTRA '+ val + ' ] > ].' , merge=True) + if not is_nominalized_complement(cs): + if cs['ques'] == 'prop': + mylang.add(clausalverb + ' := [ SYNSEM [ LOCAL.CAT.VAL.COMPS < [ LOCAL [ CAT.WH.LOGICAL-OR.BOOL -, ' + ' CONT.HOOK.INDEX.SF prop ] ] >,' + 'NON-LOCAL.QUE 0-alist ] ].' + , merge=True) + elif cs['ques'] == 'ques': + mylang.add(clausalverb + ' := [ SYNSEM.LOCAL.CAT.VAL.COMPS < [ LOCAL.CONT.HOOK.INDEX.SF ques ] > ].' + , merge=True) + if ch.get(MTRX_FRONT) in [SINGLE, MULTI] and not ch.get('embed-insitu') == 'on': + mylang.add(clausalverb + ' := [ SYNSEM.LOCAL.CAT.VAL.COMPS < [ LOCAL.CAT.WH.LOGICAL-OR.BOOL + ] > ].' + , merge=True) + + if ch.get('wh-inv-embed') == 'on': + mylang.add(clausalverb + ':= [ SYNSEM.LOCAL.CAT.VAL.COMPS < [ LOCAL.CAT.HEAD.AUX + ] > ].', merge=True) + + # From the wh-questions library; disallow questions from crossing clause boundary + #if ch.get('front-across-cl') != 'on' or ch.get(''): + # mylang.add(clausalverb + ' := [ SYNSEM.LOCAL.CAT.VAL.COMPS < [ NON-LOCAL.QUE.LIST < > ] > ].', merge=True) ''' Semantically non-empty nominalization requires that @@ -641,7 +678,7 @@ def update_verb_lextype(ch,verb, vtype): for ccs in ch.get(COMPS): if val.endswith(ccs.full_key): suffix = val - head = determine_clausal_verb_comp_head(ccs) + head = determine_clausal_verb_comp_head(ccs,ch) if suffix: name = vtype[0:vtype.find('verb-lex')-1] #rest = 'clausal-verb-lex' diff --git a/gmcs/linglib/clausalmods.py b/gmcs/linglib/clausalmods.py index 13dbb1b1e..d8a8c5202 100644 --- a/gmcs/linglib/clausalmods.py +++ b/gmcs/linglib/clausalmods.py @@ -52,6 +52,7 @@ def create_head_subordinator_basic_lex_type(mylang, ch, cms): VAL [ COMPS < > ] ] ] ] > ],\ VAL [ SUBJ < >,\ SPR < >,\ + SPEC < >,\ COMPS < [ OPT -,\ LOCAL.CAT [ MC -,\ VAL.COMPS < >]] > ]]].') @@ -113,9 +114,10 @@ def create_adverb_subordinator_basic_lex_type(mylang): Create the basic subordinator lexical type if the subordinator is an adverb """ mylang.set_section('subordlex') - mylang.add('adverb-subord-lex-item := no-rels-hcons-lex-item &\ + mylang.add('adverb-subord-lex-item := no-rels-hcons-lex-item & basic-icons-lex-item &\ [ SYNSEM [ LOCAL [ CAT [ VAL [ SUBJ < >,\ SPR < >,\ + SPEC < >,\ COMPS < > ],\ HEAD adv & [ MOD < [ SUBORDINATED none,\ LOCAL intersective-mod &\ @@ -357,7 +359,7 @@ def add_non_branching_rules(mylang, rules, cms, ch): [ SYNSEM [ LOCAL [ CAT [ MC -,\ VAL [ SPR < >,\ COMPS < >,\ - SPEC < >,\ + SPEC < >,\ SUBJ #subj ],\ HEAD adp & [ MOD < [ LOCAL scopal-mod &\ [ CAT [ HEAD verb,\ @@ -432,9 +434,10 @@ def add_subordinators_matrix_pair_to_lexicon(mylang, lexicon, cms, ch): attachment (before/after a vp/s). Add each to lexicon. """ mylang.set_section('subordlex') - mylang.add('subord-pair-matrix-lex-item := basic-adverb-lex &\ + mylang.add('subord-pair-matrix-lex-item := basic-adverb-lex & basic-icons-lex-item &\ [ SYNSEM [ LOCAL [ CAT [ VAL [ SUBJ < >,\ SPR < >,\ + SPEC < >,\ COMPS < > ],\ HEAD.MOD < [ LOCAL scopal-mod & [ CAT [ MC +,\ HEAD verb ],\ @@ -589,6 +592,7 @@ def add_morphological_subord_rel(mylang, cms, ch, rules): [ SYNSEM [ LOCAL [ CAT [ MC -,\ VAL [ SUBJ #subj,\ SPR < >,\ + SPEC < >,\ COMPS < > ],\ HEAD adp & [ MOD < [ LOCAL scopal-mod &\ [ CAT [ HEAD verb,\ diff --git a/gmcs/linglib/coordination.py b/gmcs/linglib/coordination.py index 8e05ae83b..41868a17b 100644 --- a/gmcs/linglib/coordination.py +++ b/gmcs/linglib/coordination.py @@ -518,6 +518,19 @@ def customize_coordination(mylang, ch, lexicon, rules, irules): else: agrrules = [('', '')] + # olzama 2020-04-28 Add adverb coordination if adverbs are present. + # For now, I just hard coded Strategy 1 because I don't really know + # how this library works. Adverbs are unlikely to require agreement though? + if len(ch.get('adv')) > 0: + mylang.add('adv1-top-coord-rule := basic-adv-top-coord-rule & monopoly-top-coord-rule & \ + [ SYNSEM.LOCAL.COORD-STRAT "1" ].') + mylang.add('''adv1-mid-coord-rule := basic-adv-mid-coord-rule & monopoly-mid-coord-rule & + [ SYNSEM.LOCAL.COORD-STRAT "1" ].''') + mylang.add('''adv1-bottom-coord-rule := conj-first-bottom-coord-rule & adv-bottom-coord-phrase & + [ SYNSEM.LOCAL.COORD-STRAT "1" ].''') + rules.add('adv1-bottom-coord := adv1-bottom-coord-rule.') + rules.add('adv1-mid-coord := adv1-mid-coord-rule.') + rules.add('adv1-top-coord := adv1-top-coord-rule.') for pos in ('n', 'np', 'vp', 's'): # don't use noun-y agreement rules with VP or S diff --git a/gmcs/linglib/features.py b/gmcs/linglib/features.py index 09304bbc6..a2926bd14 100644 --- a/gmcs/linglib/features.py +++ b/gmcs/linglib/features.py @@ -11,6 +11,10 @@ def process_cfv_list(mylang, ch, hierarchies, to_cfv, tdlfile=None): customize_feature_values(mylang, ch, hierarchies, ch[ch_key], type_id, pos, tdlfile=tdlfile or mylang) +# olzama 2020-04-09 The below function has the benefit of serving many POS at once +# however it is very difficult to follow and debug. +# Consider improving it and perhaps even have several separate functions? + def customize_feature_values(mylang, ch, hierarchies, ch_dict, type_name, pos, features=None, cases=None, tdlfile=None): if not features: @@ -23,7 +27,9 @@ def customize_feature_values(mylang, ch, hierarchies, ch_dict, type_name, pos, f # TJT 2014-11-05: moving this up to get the proper geometry for case # get the feature geometry of CASE - if cases: + # OZ 2020-01-28 The above only works for case-marking adpositions + # but not for normal adpositions, for which CASE goes on the complement. + if cases and not pos == 'normadp': for f in features: if f[0] == 'case': case_geom = f[2] @@ -40,7 +46,9 @@ def customize_feature_values(mylang, ch, hierarchies, ch_dict, type_name, pos, f 'possessum-mod-mark': 'SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.', 'possessum-mod-mark2': 'SYNSEM.LOCAL.CAT.VAL.COMPS.REST.FIRST.', 'poss-pron-mod': 'SYNSEM.LOCAL.CAT.HEAD.MOD.FIRST.', - 'poss-pron-spec': 'SYNSEM.LOCAL.CAT.VAL.SPEC.FIRST.' } + 'poss-pron-spec': 'SYNSEM.LOCAL.CAT.VAL.SPEC.FIRST.', + 'nounadp': 'SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.', + 'normadp': 'SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.'} pos_geom_prefix = prefix_map[pos] if pos in prefix_map else 'SYNSEM.' iter_feat = 'feat' if pos != 'auxcomplement' else 'compfeature' @@ -74,6 +82,9 @@ def customize_feature_values(mylang, ch, hierarchies, ch_dict, type_name, pos, f 'xarg': 'LOCAL.CONT.HOOK.XARG.', # XARG for adjectives 'mod': 'LOCAL.CAT.HEAD.MOD.FIRST.', # MOD for adjectives 'comp': 'LOCAL.CAT.VAL.COMPS.FIRST.', # COMP for copulas + #'noun': 'LOCAL.CAT.VAL.SPEC.FIRST.', # olzama 2020-04-08 I think this was a bug. + # There was interference between this line for determiner inflection and prefix_map + # for full-form determiners. } for feat in ch_dict.get(iter_feat,[]): @@ -386,7 +397,22 @@ def customize_feature_values(mylang, ch, hierarchies, ch_dict, type_name, pos, f if ch.get('neg-head-feature') == 'on': tdlfile.add(type_name + ':= [ ARGS.FIRST.SYNSEM.LOCAL.CAT.HEAD.NEGATED - ].',merge=True) - elif (n == 'question' and v[0] == 'plus'): + elif (n == 'question' and v[0] == 'no'): + tdlfile.add(type_name + ':= \ + [ SYNSEM.LOCAL.CONT.HOOK.INDEX.SF prop ].', + merge=True) + + elif (n == 'question' and v[0] == 'polar'): + tdlfile.add(type_name + ':= \ + [ SYNSEM [ LOCAL.CONT.HOOK.INDEX.SF ques,' + 'NON-LOCAL.QUE.LIST < > ] ].', + merge=True) + elif (n == 'question' and v[0] == 'wh'): + tdlfile.add(type_name + ':= \ + [ SYNSEM [ LOCAL.CONT.HOOK.INDEX.SF ques,' + 'NON-LOCAL.QUE.LIST cons ] ].', + merge=True) + elif (n == 'question' and v[0] == 'both'): # ERB 2009-07-01 Adding in semantics for question affixes tdlfile.add(type_name + ':= \ [ SYNSEM.LOCAL.CONT.HOOK.INDEX.SF ques ].', diff --git a/gmcs/linglib/information_structure.py b/gmcs/linglib/information_structure.py index b56be2b29..478c54c93 100644 --- a/gmcs/linglib/information_structure.py +++ b/gmcs/linglib/information_structure.py @@ -213,7 +213,7 @@ infostr_dislocated_phrase = """ infostr-dislocated-phrase := narrow-focus & - [ SYNSEM.LOCAL.CAT [ MC +, VAL.SUBJ < > ], + [ SYNSEM [ LOCAL.CAT [ MC +, VAL.SUBJ < > ], NON-LOCAL.QUE.LIST < > ], C-CONT [ RELS 0-alist, HCONS 0-alist, ICONS.LIST < info-str & #icons & [ IARG1 #clause, IARG2 #index ] > ], @@ -494,10 +494,10 @@ def customize_information_structure_pos_once(mylang, ch, rules, infostr_type, in ph_types['head-comp-nmc-phrase'] = head_comp_nmc_phrase.replace('$', infostr_in_flr) ph_rules['head-comp-nmc-phrase'] = 'head-comp-nmc' tdl = """extracted-subj-phrase := basic-extracted-subj-phrase & - [ C-CONT [ RELS 0-alist, HCONS 0-alist, ICONS 0-alist ], + [ C-CONT [ RELS.LIST < >, HCONS.LIST < >, ICONS.LIST < > ], HEAD-DTR.SYNSEM [ L-PERIPH -, - LOCAL.CAT.VAL.COMPS < >, - NON-LOCAL.SLASH.LIST < [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" + LOCAL.CAT.VAL [ SUBJ.FIRST.LOCAL #slash & local, COMPS < > ], + NON-LOCAL.SLASH.LIST < #slash & [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" ph_types['extracted-subj-phrase'] = tdl.replace('$', infostr_in_flr) ph_rules['extracted-subj-phrase'] = 'extracted-subj' if wo == 'vso': @@ -513,8 +513,8 @@ def customize_information_structure_pos_once(mylang, ch, rules, infostr_type, in tdl = """extracted-subj-phrase := basic-extracted-subj-phrase & [ C-CONT [ RELS 0-alist, HCONS 0-alist, ICONS 0-alist ], HEAD-DTR.SYNSEM [ L-PERIPH -, - LOCAL.CAT.VAL.COMPS < >, - NON-LOCAL.SLASH.LIST < [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" + LOCAL.CAT.VAL [ SUBJ.FIRST.LOCAL #slash & local, COMPS < > ], + NON-LOCAL.SLASH.LIST < #slash & [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" ph_types['extracted-subj-phrase'] = tdl.replace('$', infostr_in_flr) ph_rules['extracted-subj-phrase'] = 'extracted-subj' # if infostr_type != 'topic-first': @@ -541,8 +541,8 @@ def customize_information_structure_pos_once(mylang, ch, rules, infostr_type, in tdl = """extracted-subj-phrase := basic-extracted-subj-phrase & [ C-CONT [ RELS 0-alist, HCONS 0-alist, ICONS 0-alist ], HEAD-DTR.SYNSEM [ R-PERIPH -, - LOCAL.CAT.VAL.COMPS < >, - NON-LOCAL.SLASH.LIST < [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" + LOCAL.CAT.VAL [ SUBJ.FIRST.LOCAL #slash & local, COMPS < > ], + NON-LOCAL.SLASH.LIST < #slash & [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" ph_types['extracted-subj-phrase'] = tdl.replace('$', infostr_in_flr) ph_rules['extracted-subj-phrase'] = 'extracted-subj' elif wo == 'svo': @@ -556,8 +556,8 @@ def customize_information_structure_pos_once(mylang, ch, rules, infostr_type, in tdl = """extracted-subj-phrase := basic-extracted-subj-phrase & [ C-CONT [ RELS 0-alist, HCONS 0-alist, ICONS 0-alist ], HEAD-DTR.SYNSEM [ R-PERIPH -, - LOCAL.CAT.VAL.COMPS < >, - NON-LOCAL.SLASH.LIST < [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" + LOCAL.CAT.VAL [ SUBJ.FIRST.LOCAL #slash & local, COMPS < > ], + NON-LOCAL.SLASH.LIST < #slash & [ CONT.HOOK.ICONS-KEY $ ] > ] ].""" ph_types['extracted-subj-phrase'] = tdl.replace('$', infostr_in_flr) ph_rules['extracted-subj-phrase'] = 'extracted-subj' elif wo == 'vso': @@ -588,7 +588,7 @@ def customize_information_structure_pos_once(mylang, ch, rules, infostr_type, in # [ SYNSEM.R-PERIPH +, # HEAD-DTR.SYNSEM [ R-PERIPH +, # LOCAL.CONT.HOOK.ICONS-KEY $, - # NON-LOCAL.SLASH d-alist ] ].""" + # NON-LOCAL.SLASH 0-dlist ] ].""" #ph_types['subj-head-phrase'] = tdl.replace('$', infostr) #ph_rules['subj-head-phrase'] = 'subj-head' ph_types['head-subj-nmc-phrase'] = head_subj_nmc_phrase.replace('$', infostr_in_flr) @@ -770,121 +770,121 @@ def customize_information_structure_pos_once(mylang, ch, rules, infostr_type, in elif wo == 'free': # future research pass - if pos == 'clause-initial' or infostr_type == 'topic-first': - ph_types['head-subj-phrase'] = """head-subj-phrase := - [ SYNSEM.L-PERIPH #periph, - HEAD-DTR.SYNSEM.L-PERIPH #periph ]..""" - tdl = """head-periph-subj-phrase := decl-head-subj-phrase & head-initial-head-nexus & - [ SYNSEM.L-PERIPH +, - HEAD-DTR.SYNSEM [ L-PERIPH +, - LOCAL [ CAT.VAL.COMPS < [], ... >, - CONT.HOOK.ICONS-KEY $ ] ] ].""" - ph_types['head-periph-subj-phrase'] = tdl.replace('$', infostr) - ph_rules['head-periph-subj-phrase'] = 'head-periph-subj' - - ph_types['subj-head-phrase'] = """subj-head-phrase := - [ SYNSEM.L-PERIPH -, - HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.COMPS < [], ... >, - NON-HEAD-DTR.SYNSEM.L-PERIPH - ].""" - tdl = """periph-subj-head-phrase := decl-head-subj-phrase & head-final-head-nexus & - [ SYNSEM.L-PERIPH +, - HEAD-DTR.SYNSEM [ L-PERIPH -, - LOCAL.CAT.VAL.COMPS < > ], - NON-HEAD-DTR.SYNSEM [ L-PERIPH +, - LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" - ph_types['periph-subj-head-phrase'] = tdl.replace('$', infostr) - ph_rules['periph-subj-head-phrase'] = 'periph-subj-head' - - ph_types['head-comp-phrase'] = """head-comp-phrase := - [ SYNSEM.L-PERIPH #periph, - HEAD-DTR.SYNSEM.L-PERIPH #periph ].""" - tdl = """head-periph-comp-phrase := basic-head-1st-comp-phrase & head-initial-head-nexus & - [ SYNSEM.L-PERIPH +, - HEAD-DTR.SYNSEM [ L-PERIPH +, - LOCAL [ CAT.VAL.SUBJ.FIRST [ ], - CONT.HOOK.ICONS-KEY $ ] ] ].""" - ph_types['head-periph-comp-phrase'] = tdl.replace('$', infostr) - ph_rules['head-periph-comp-phrase'] = 'head-periph-comp' - - ph_types['comp-head-phrase'] = """comp-head-phrase := - [ SYNSEM.L-PERIPH -, - HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.COMPS < [], ... >, - NON-HEAD-DTR.SYNSEM.L-PERIPH - ].""" - tdl = """periph-comp-head-phrase := basic-head-1st-comp-phrase & head-final-head-nexus & - [ SYNSEM.L-PERIPH +, - HEAD-DTR.SYNSEM [ L-PERIPH -, - LOCAL.CAT.VAL.SUBJ < > ], - NON-HEAD-DTR.SYNSEM [ L-PERIPH +, - LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" - ph_types['periph-comp-head-phrase'] = tdl.replace('$', infostr) - ph_rules['periph-comp-head-phrase'] = 'periph-comp-head' - - elif pos == 'clause-final': - ph_types['head-subj-phrase'] = """head-subj-phrase := - [ SYNSEM.R-PERIPH -, - HEAD-DTR.SYNSEM [ R-PERIPH na-or--, - LOCAL.CAT.VAL.COMPS.FIRST [ ] ] ].""" - tdl = """head-periph-subj-phrase := decl-head-subj-phrase & head-initial-head-nexus & - [ SYNSEM.R-PERIPH +, - HEAD-DTR.SYNSEM.R-PERIPH -, - NON-HEAD-DTR.SYNSEM [ R-PERIPH +, - LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" - ph_types['head-periph-subj-phrase'] = tdl.replace('$', infostr) - ph_rules['head-periph-subj-phrase'] = 'head-periph-subj' - - ph_types['subj-head-phrase'] = """subj-head-phrase := - [ SYNSEM.R-PERIPH +, - HEAD-DTR.SYNSEM [ R-PERIPH na-or-+, - LOCAL.CAT.MKG fc-only ] ].""" - tdl = """periph-subj-head-phrase := decl-head-subj-phrase & head-final-head-nexus & - [ SYNSEM.R-PERIPH +, - HEAD-DTR.SYNSEM [ R-PERIPH +, - LOCAL [ CAT.VAL.COMPS < [], ... >, - CONT.HOOK.ICONS-KEY $ ] ] ].""" - ph_types['periph-subj-head-phrase'] = tdl.replace('$', infostr) - ph_rules['periph-subj-head-phrase'] = 'periph-subj-head' - - ph_types['head-comp-phrase'] = """head-comp-phrase := - [ SYNSEM.R-PERIPH -, - HEAD-DTR.SYNSEM [ R-PERIPH na-or--, - LOCAL.CAT.VAL.SUBJ.FIRST [ ] ] ].""" - tdl = """head-periph-comp-phrase := basic-head-1st-comp-phrase & head-initial-head-nexus & - [ SYNSEM.R-PERIPH +, - HEAD-DTR.SYNSEM.R-PERIPH -, - NON-HEAD-DTR.SYNSEM [ R-PERIPH +, - LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" - ph_types['head-periph-comp-phrase'] = tdl.replace('$', infostr) - ph_rules['head-periph-comp-phrase'] = 'head-periph-comp' - - ph_types['comp-head-phrase'] = """comp-head-phrase := - [ SYNSEM.R-PERIPH +, - HEAD-DTR.SYNSEM [ R-PERIPH na-or-+, - LOCAL.CAT.MKG fc-only ] ].""" - tdl = """periph-comp-head-phrase := basic-head-1st-comp-phrase & head-final-head-nexus & - [ SYNSEM.R-PERIPH +, - HEAD-DTR.SYNSEM [ R-PERIPH +, - LOCAL [ CAT.VAL.SUBJ.FIRST [ ], - CONT.HOOK.ICONS-KEY $ ] ] ].""" - ph_types['periph-comp-head-phrase'] = tdl.replace('$', infostr) - ph_rules['periph-comp-head-phrase'] = 'periph-comp-head' - elif pos == 'preverbal': - ph_types['subj-head-phrase'] = 'subj-head-phrase := [ HEAD-DTR.SYNSEM.LIGHT - ].' - ph_types['comp-head-phrase'] = 'comp-head-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT -, HEAD-DTR.SYNSEM.LIGHT - ].' - ph_types['head-comp-phrase'] = 'head-comp-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT - ].' - ph_types['nf-subj-head-phrase'] = nf_subj_head_phrase_simple.replace('$', infostr) - ph_rules['nf-subj-head-phrase'] = 'nf-subj-head' - ph_types['nf-comp-head-phrase'] = nf_comp_head_phrase.replace('$', infostr) - ph_rules['nf-comp-head-phrase'] = 'nf-comp-head' - elif pos == 'postverbal': - ph_types['comp-head-phrase'] = 'comp-head-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT - ].' - ph_types['head-subj-phrase'] = 'head-subj-phrase := [ HEAD-DTR.SYNSEM.LIGHT - ].' - ph_types['head-comp-phrase'] = 'head-comp-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT -, HEAD-DTR.SYNSEM.LIGHT - ].' - ph_types['head-nf-subj-phrase'] = head_nf_subj_phrase.replace('$', infostr) - ph_rules['head-nf-subj-phrase'] = 'head-nf-subj' - ph_types['head-nf-comp-phrase'] = head_nf_comp_phrase.replace('$', infostr) - ph_rules['head-nf-comp-phrase'] = 'head-nf-comp' - else: - pass + # if pos == 'clause-initial' or infostr_type == 'topic-first': + # ph_types['head-subj-phrase'] = """head-subj-phrase := + # [ SYNSEM.L-PERIPH #periph, + # HEAD-DTR.SYNSEM.L-PERIPH #periph ]..""" + # tdl = """head-periph-subj-phrase := decl-head-subj-phrase & head-initial-head-nexus & + # [ SYNSEM.L-PERIPH +, + # HEAD-DTR.SYNSEM [ L-PERIPH +, + # LOCAL [ CAT.VAL.COMPS < [], ... >, + # CONT.HOOK.ICONS-KEY $ ] ] ].""" + # ph_types['head-periph-subj-phrase'] = tdl.replace('$', infostr) + # ph_rules['head-periph-subj-phrase'] = 'head-periph-subj' + # + # ph_types['subj-head-phrase'] = """subj-head-phrase := + # [ SYNSEM.L-PERIPH -, + # HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.COMPS < [], ... >, + # NON-HEAD-DTR.SYNSEM.L-PERIPH - ].""" + # tdl = """periph-subj-head-phrase := decl-head-subj-phrase & head-final-head-nexus & + # [ SYNSEM.L-PERIPH +, + # HEAD-DTR.SYNSEM [ L-PERIPH -, + # LOCAL.CAT.VAL.COMPS < > ], + # NON-HEAD-DTR.SYNSEM [ L-PERIPH +, + # LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" + # ph_types['periph-subj-head-phrase'] = tdl.replace('$', infostr) + # ph_rules['periph-subj-head-phrase'] = 'periph-subj-head' + # + # ph_types['head-comp-phrase'] = """head-comp-phrase := + # [ SYNSEM.L-PERIPH #periph, + # HEAD-DTR.SYNSEM.L-PERIPH #periph ].""" + # tdl = """head-periph-comp-phrase := basic-head-1st-comp-phrase & head-initial-head-nexus & + # [ SYNSEM.L-PERIPH +, + # HEAD-DTR.SYNSEM [ L-PERIPH +, + # LOCAL [ CAT.VAL.SUBJ.FIRST [ ], + # CONT.HOOK.ICONS-KEY $ ] ] ].""" + # ph_types['head-periph-comp-phrase'] = tdl.replace('$', infostr) + # ph_rules['head-periph-comp-phrase'] = 'head-periph-comp' + # + # ph_types['comp-head-phrase'] = """comp-head-phrase := + # [ SYNSEM.L-PERIPH -, + # HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.COMPS < [], ... >, + # NON-HEAD-DTR.SYNSEM.L-PERIPH - ].""" + # tdl = """periph-comp-head-phrase := basic-head-1st-comp-phrase & head-final-head-nexus & + # [ SYNSEM.L-PERIPH +, + # HEAD-DTR.SYNSEM [ L-PERIPH -, + # LOCAL.CAT.VAL.SUBJ < > ], + # NON-HEAD-DTR.SYNSEM [ L-PERIPH +, + # LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" + # ph_types['periph-comp-head-phrase'] = tdl.replace('$', infostr) + # ph_rules['periph-comp-head-phrase'] = 'periph-comp-head' + # + # elif pos == 'clause-final': + # ph_types['head-subj-phrase'] = """head-subj-phrase := + # [ SYNSEM.R-PERIPH -, + # HEAD-DTR.SYNSEM [ R-PERIPH na-or--, + # LOCAL.CAT.VAL.COMPS.FIRST [ ] ] ].""" + # tdl = """head-periph-subj-phrase := decl-head-subj-phrase & head-initial-head-nexus & + # [ SYNSEM.R-PERIPH +, + # HEAD-DTR.SYNSEM.R-PERIPH -, + # NON-HEAD-DTR.SYNSEM [ R-PERIPH +, + # LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" + # ph_types['head-periph-subj-phrase'] = tdl.replace('$', infostr) + # ph_rules['head-periph-subj-phrase'] = 'head-periph-subj' + # + # ph_types['subj-head-phrase'] = """subj-head-phrase := + # [ SYNSEM.R-PERIPH +, + # HEAD-DTR.SYNSEM [ R-PERIPH na-or-+, + # LOCAL.CAT.MKG fc-only ] ].""" + # tdl = """periph-subj-head-phrase := decl-head-subj-phrase & head-final-head-nexus & + # [ SYNSEM.R-PERIPH +, + # HEAD-DTR.SYNSEM [ R-PERIPH +, + # LOCAL [ CAT.VAL.COMPS < [], ... >, + # CONT.HOOK.ICONS-KEY $ ] ] ].""" + # ph_types['periph-subj-head-phrase'] = tdl.replace('$', infostr) + # ph_rules['periph-subj-head-phrase'] = 'periph-subj-head' + # + # ph_types['head-comp-phrase'] = """head-comp-phrase := + # [ SYNSEM.R-PERIPH -, + # HEAD-DTR.SYNSEM [ R-PERIPH na-or--, + # LOCAL.CAT.VAL.SUBJ.FIRST [ ] ] ].""" + # tdl = """head-periph-comp-phrase := basic-head-1st-comp-phrase & head-initial-head-nexus & + # [ SYNSEM.R-PERIPH +, + # HEAD-DTR.SYNSEM.R-PERIPH -, + # NON-HEAD-DTR.SYNSEM [ R-PERIPH +, + # LOCAL.CONT.HOOK.ICONS-KEY $ ] ].""" + # ph_types['head-periph-comp-phrase'] = tdl.replace('$', infostr) + # ph_rules['head-periph-comp-phrase'] = 'head-periph-comp' + # + # ph_types['comp-head-phrase'] = """comp-head-phrase := + # [ SYNSEM.R-PERIPH +, + # HEAD-DTR.SYNSEM [ R-PERIPH na-or-+, + # LOCAL.CAT.MKG fc-only ] ].""" + # tdl = """periph-comp-head-phrase := basic-head-1st-comp-phrase & head-final-head-nexus & + # [ SYNSEM.R-PERIPH +, + # HEAD-DTR.SYNSEM [ R-PERIPH +, + # LOCAL [ CAT.VAL.SUBJ.FIRST [ ], + # CONT.HOOK.ICONS-KEY $ ] ] ].""" + # ph_types['periph-comp-head-phrase'] = tdl.replace('$', infostr) + # ph_rules['periph-comp-head-phrase'] = 'periph-comp-head' + # elif pos == 'preverbal': + # ph_types['subj-head-phrase'] = 'subj-head-phrase := [ HEAD-DTR.SYNSEM.LIGHT - ].' + # ph_types['comp-head-phrase'] = 'comp-head-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT -, HEAD-DTR.SYNSEM.LIGHT - ].' + # ph_types['head-comp-phrase'] = 'head-comp-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT - ].' + # ph_types['nf-subj-head-phrase'] = nf_subj_head_phrase_simple.replace('$', infostr) + # ph_rules['nf-subj-head-phrase'] = 'nf-subj-head' + # ph_types['nf-comp-head-phrase'] = nf_comp_head_phrase.replace('$', infostr) + # ph_rules['nf-comp-head-phrase'] = 'nf-comp-head' + # elif pos == 'postverbal': + # ph_types['comp-head-phrase'] = 'comp-head-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT - ].' + # ph_types['head-subj-phrase'] = 'head-subj-phrase := [ HEAD-DTR.SYNSEM.LIGHT - ].' + # ph_types['head-comp-phrase'] = 'head-comp-phrase := [ SYNSEM.LOCAL.CAT.HC-LIGHT -, HEAD-DTR.SYNSEM.LIGHT - ].' + # ph_types['head-nf-subj-phrase'] = head_nf_subj_phrase.replace('$', infostr) + # ph_rules['head-nf-subj-phrase'] = 'head-nf-subj' + # ph_types['head-nf-comp-phrase'] = head_nf_comp_phrase.replace('$', infostr) + # ph_rules['head-nf-comp-phrase'] = 'head-nf-comp' + # else: + # pass elif wo == 'v2': if pos == 'clause-initial' or pos == 'preverbal' or infostr_type == 'topic-first': ph_types['nf-comp-head-phrase'] = nf_comp_head_phrase_v2.replace('$', infostr) @@ -958,23 +958,33 @@ def customize_information_structure_marker(mylang, ch, rules, irules, lexicon, t _orth = m['orth'].strip() _head = '' _light = 'luk' + _ph = '' if _cat == 'nouns': _head = 'noun' - _light = '-' + if not ch.get('focus-marking') == 'on': + _light = '-' + else: + _light = '+' + mylang.add('bare-np-phrase := [ SYNSEM.LIGHT - ].', section='phrases') elif _cat == 'verbs': _head = 'verb' _light = '+' else: #both _head = '+nv' + if _pos == 'before': + _ph = '-' + elif _pos == 'after': + _ph = '+' if _type == 'modifier': tdl = """infostr-marking-mod-lex := no-rels-hcons-lex-item & one-icons-lex-item & - [ SYNSEM.LOCAL [ CAT [ HEAD adv & [ MOD < [ LIGHT $ + [ SYNSEM [ LOCAL [ CAT [ HEAD adv & [ MOD < [ LIGHT $ LOCAL [ CAT.MKG [ FC na-or--, TP na-or-- ], CONT.HOOK [ INDEX #target, ICONS-KEY #icons] ] ] > ], VAL [ SUBJ < >, COMPS < >, SPR < >, SPEC < > ] ], - CONT.ICONS.LIST < #icons & [ IARG2 #target ] > ] ].""" + CONT.ICONS.LIST < #icons & [ IARG2 #target ] > ], + NON-LOCAL non-local-none ] ].""" tdl = tdl.replace('$', _light) add_lextypes(mylang, tdl) @@ -984,26 +994,30 @@ def customize_information_structure_marker(mylang, ch, rules, irules, lexicon, t LOCAL [ CAT.HEAD ' + _head + ', \ CONT.HOOK.ICONS-KEY ' + infostr + ' ] ] > ] ].' add_lextypes(mylang, tdl) + if _ph: + mylang.add(modifier_lex + ' := [ SYNSEM.LOCAL.CAT.POSTHEAD ' + _ph + ' ].') tdl = rule = '' - if _pos == 'before': - rule = 'adj-head-int := adj-head-int-phrase.' - rules.add(rule) - elif _pos == 'after': - rule = 'head-adj-int := head-adj-int-phrase.' - rules.add(rule) - else: #both - rule = 'adj-head-int := adj-head-int-phrase.' - rules.add(rule) - rule = 'head-adj-int := head-adj-int-phrase.' - rules.add(rule) + if ch.get('front-matrix') in ['', 'in-situ']: # Constituent questions library may add its own head-adj phrase + if _pos == 'before': + rule = 'adj-head-int := adj-head-int-phrase.' + rules.add(rule) + elif _pos == 'after': + rule = 'head-adj-int := head-adj-int-phrase.' + rules.add(rule) + else: #both + rule = 'adj-head-int := adj-head-int-phrase.' + rules.add(rule) + rule = 'head-adj-int := head-adj-int-phrase.' + rules.add(rule) orth = orth_encode(_orth) if _head == '+nv': + mylang.add('bare-np-phrase := [ SYNSEM.LIGHT - ].',section='phrases') modifier1 = TDLencode(_orth + '-marker-n') modifier2 = TDLencode(_orth + '-marker-v') tdl1 = modifier1 + ' := ' + modifier_lex + ' & \ - [ STEM < "' + orth + '" >, SYNSEM.LOCAL.CAT.HEAD.MOD < [ LIGHT -, LOCAL.CAT.HEAD noun ] > ].' + [ STEM < "' + orth + '" >, SYNSEM.LOCAL.CAT.HEAD.MOD < [ LIGHT +, LOCAL.CAT.HEAD noun ] > ].' tdl2 = modifier2 + ' := ' + modifier_lex + ' & \ [ STEM < "' + orth + '" >, SYNSEM.LOCAL.CAT.HEAD.MOD < [ LIGHT +, LOCAL.CAT.HEAD verb ] > ].' lexicon.add_literal(';;; Modifiers of expressing information structure') diff --git a/gmcs/linglib/lexbase.py b/gmcs/linglib/lexbase.py index dd62b22a9..48737a7c8 100644 --- a/gmcs/linglib/lexbase.py +++ b/gmcs/linglib/lexbase.py @@ -13,15 +13,15 @@ # OZ 2018-01-25 comps is not really a lexical type; # it is a complementation strategy that is defined by a complementizer type. # Ideally we would have complementizers as actual lexical items some day. -ALL_LEX_TYPES = ('noun', 'verb', 'det', 'aux', 'adj', 'cop', 'comps') +ALL_LEX_TYPES = ('noun', 'verb', 'det', 'aux', 'adj', 'cop', 'comps', 'adv', 'normadp', 'qverb') # types used for lexical rules (verb and aux are merged) # TJT 2014-08-15: adding "cop" # TJT 2014-08-15: changing to tuple for speed -LEXICAL_CATEGORIES = ('noun', 'verb', 'det', 'adj', 'cop') +LEXICAL_CATEGORIES = ('noun', 'verb', 'det', 'adj', 'cop', 'adv', 'qverb') # TJT 2014-09-03: Types not automatically added to mylanguage.tdl -NON_ESSENTIAL_LEX_CATEGORIES = ('det', 'adj', 'cop', 'comps') +NON_ESSENTIAL_LEX_CATEGORIES = ('det', 'adj', 'cop', 'comps', 'normadp', 'adv', 'qverb') # lexical_supertypes is a dictionary mapping the choices file # encodings to the actual lex-type identifiers of the supertypes. @@ -34,21 +34,152 @@ 'det':'determiner-lex', 'aux':'aux-lex', 'adj':'adj-lex', - 'comp':'comp-lex'} - + 'comp':'comp-lex', + 'adv': 'adverb-lex', + 'normadp': 'norm-adposition-lex', + 'qverb': 'interrogative-verb-lex'} # TYPE DEFINITIONS (that can be shared with other libraries) COMPLEMENTIZER = ''' - complementizer-lex-item := raise-sem-lex-item & basic-one-arg & - [ SYNSEM.LOCAL.CAT [ HEAD comp & + complementizer-lex-item := raise-sem-lex-item & basic-one-arg & basic-icons-lex-item & + [ SYNSEM [ LOCAL.CAT [ HEAD comp & [ MOD < > ], - VAL [ SPR < >, + VAL [ SPR < >, SPEC < >, SUBJ < >, - COMPS < #comp > ]], + COMPS < #comp > ] ], + L-QUE - ], ARG-ST < #comp & [ LOCAL.CAT [ HEAD verb, VAL [ SUBJ < >, - COMPS < > ]]] > ].''' - + COMPS < > ] ] ] > ].''' + + +QUES_CLITIC = ''' +ques-clitic-lex := no-hcons-lex-item & + [ SYNSEM [ LOCAL [ CAT [ VAL [ SPR < >, COMPS < >, SUBJ < >, SPEC < >], + HEAD adv & + [ MOD < [ LIGHT +, + LOCAL intersective-mod & + [ CAT [ HEAD +nvrpd ] ], + L-PERIPH +, + L-QUE - ] > ] ], + CONT.RELS.LIST < > ], + NON-LOCAL [ SLASH.LIST < >, + REL.LIST < >, + QUE.LIST < >, + YNQ.LIST < *top* > ] ] ]. +''' + +WH_PRONOUN = '''wh-pronoun-noun-lex := basic-wh-word-lex & norm-hook-lex-item & basic-icons-lex-item & non-mod-lex-item & zero-arg-que & + [ SYNSEM [ LOCAL [ CAT [ HEAD noun, + VAL [ SPR < >, + SUBJ < >, + COMPS < >, + SPEC < > ] ], + CONT [ RELS.LIST < [ LBL #larg, + ARG0 ref-ind & #arg0 ], + quant-relation & [ PRED "which_q_rel", + ARG0 #arg0, + RSTR #harg ] >, + HCONS.LIST < [ HARG #harg, + LARG #larg ] > ] ], + NON-LOCAL.QUE.LIST < #arg0 > ] ].''' + +ADV_ITEM = '''adverb-lex-item := intersective-adverb-lex & + [ SYNSEM [ LOCAL [ CAT [ VAL [ SUBJ < >, SPEC < >, + SPR < >, + COMPS < > ], + HEAD adv & + [ MOD < [ LOCAL [ CAT.HEAD verb, + CONT.HOOK [ CLAUSE-KEY #clause, LTOP #ltop ] ] ] > ] ], + CONT [ RELS.LIST < [ LBL #ltop, ARG0 event, + ARG1 #clause, ARG2 #ind ], + [ PRED #pred, ARG0 #ind, LBL #larg ],[ ARG0 #ind, RSTR #harg ] >, + HOOK.LTOP #ltop, + HCONS.LIST < qeq & [ HARG #harg, + LARG #larg ] > ] ], + LKEYS.KEYREL [ PRED #pred, ARG0 ref-ind & #ind, LBL #ltop ] ] ].''' + + +LOC_ADV_ITEM = '''loc-adverb-lex-item := adverb-lex-item & + [ SYNSEM.LOCAL.CONT.RELS.LIST.FIRST.PRED "loc_nonsp_rel" ].''' + +MANNER_ADV_ITEM = '''manner-adverb-lex-item := adverb-lex-item & + [ SYNSEM.LOCAL.CONT.RELS.LIST.FIRST.PRED "manner_nonsp_rel" ].''' + +ADV = '''adverb-lex := basic-non-wh-word-lex & adverb-lex-item & +[ SYNSEM [ LOCAL.CONT.RELS.LIST < [ ], [ ], [ PRED "exist_q_rel" ] >, + NON-LOCAL [ QUE 0-alist, YNQ 0-alist ] ] ].''' + +WH_ADV = '''wh-adverb-lex := basic-wh-word-lex & adverb-lex-item & zero-arg-que & +[ SYNSEM [ LOCAL.CONT.RELS.LIST < [ ], [ ARG0 #arg0 ], quant-relation & [ PRED "which_q_rel" ] >, + NON-LOCAL.QUE.LIST < #arg0 > ] ].''' + + +WH_DET = '''wh-determiner-lex := basic-wh-word-lex & basic-determiner-lex & non-mod-lex-item & zero-arg-nonslash & + [ SYNSEM [ LOCAL [ CAT [ VAL [ SPR < >, + SPEC.FIRST.LOCAL [ CONT.HOOK.INDEX #arg0 ], + COMPS < >, + SUBJ < > ] ] ], + NON-LOCAL.QUE.LIST < #arg0 > ] ].''' + +ADP_LEX = '''norm-adposition-lex := norm-sem-lex-item & no-hcons-lex-item & basic-intersective-mod-lex & basic-one-arg & + [ SYNSEM [ LOCAL [ CAT [ HEAD adp & [ MOD < [ LOCAL.CAT [ VAL.SPR cons, + WH.LOGICAL-OR.BOOL - ] ] > ], + WH or-and-minus, + VAL [ SPR < >, + SPEC < >, + SUBJ < >, + COMPS < #comp & [ L-QUE #lque, + LOCAL [ CAT [ HEAD noun, VAL.SPR < > ], + CONT.HOOK.INDEX #ind ], + NON-LOCAL #nonloc ] > ] ], + CONT.RELS.LIST < [ PRED #pred, ARG0 event, ARG1 event-or-ref-index ] > ], + LKEYS.KEYREL arg12-ev-relation & [ PRED #pred, ARG2 #ind ], + NON-LOCAL #nonloc, + L-QUE #lque ], + ARG-ST < #comp > ].''' + + +ITRG_VB = '''interrogative-verb-lex := basic-wh-word-lex & basic-verb-lex-super & non-mod-lex-item & +[ SYNSEM [ LOCAL [ CONT.HOOK [ INDEX.SF ques, XARG #xarg ], + CAT [ VAL [ SPR < >, + SPEC < >, + COMPS < >, + SUBJ < #subj > ] ] ] ], + ARG-ST.FIRST #subj & + [ LOCAL [ CAT cat-sat & + [ VAL [ SPR < >, + COMPS < >, SUBJ < >, SPEC < > ] ], + CONT.HOOK.INDEX #xarg ] ] ]. +''' + +ITRG_THREE_REL = ''' := interrogative-verb-lex & basic-icons-lex-item & norm-hook-lex-item & +[ ARG-ST < [ LOCAL [ CAT cat-sat & [ HEAD noun ], + CONT.HOOK [ INDEX ref-ind & #ind, + ICONS-KEY.IARG1 #clause ] ] ] >, + SYNSEM [ LKEYS.KEYREL event-relation & [ ARG1 #ind, ARG2 ref-ind & #ind2], + LOCAL.CONT [ HOOK.CLAUSE-KEY #clause, + RELS.LIST < [ ARG2 #ind2 ], + quant-relation & [ PRED "which_q_rel", + ARG0 #ind2, + RSTR #harg ], + noun-relation & [ LBL #larg, + ARG0 #ind2 ] >, + HCONS.LIST < [ HARG #harg, + LARG #larg ] > ] ] ].''' + +ITRG_FOUR_REL = ''' := interrogative-verb-lex & basic-icons-lex-item & norm-hook-lex-item & +[ ARG-ST < [ LOCAL [ CAT cat-sat & [ HEAD noun ], + CONT.HOOK [ INDEX ref-ind & #ind, + ICONS-KEY.IARG1 #clause ] ] ] >, + SYNSEM [ LKEYS.KEYREL event-relation & [ ARG1 #ind ], + LOCAL.CONT [ HOOK.CLAUSE-KEY #clause, + RELS.LIST < [ LBL #ltop, ARG0 #clause ], + [ LBL #ltop, ARG0 event, + ARG1 #clause, ARG2 #ind2 ], + [ ARG0 #ind2, LBL #larg ],[ PRED "which_q_rel", ARG0 #ind2, RSTR #harg ] >, + HCONS.LIST < [ HARG #harg, + LARG #larg ] > ] ] ].''' ############### ### CLASSES ### diff --git a/gmcs/linglib/lexical_items.py b/gmcs/linglib/lexical_items.py index 75cb15dda..e918beb11 100644 --- a/gmcs/linglib/lexical_items.py +++ b/gmcs/linglib/lexical_items.py @@ -1,9 +1,12 @@ from collections import defaultdict +from gmcs import feature_type_use + from gmcs.utils import get_name from gmcs.utils import TDLencode from gmcs.utils import orth_encode +from gmcs.linglib import lexbase from gmcs.linglib import case from gmcs.linglib import features from gmcs.linglib import auxiliaries @@ -14,11 +17,15 @@ from gmcs.linglib.lexicon import get_all_supertypes from gmcs.linglib.clausalmods import get_subord_stemids from gmcs.linglib.clausalmods import add_subord_name +from gmcs.feature_type_use import USED_TYPES # helper functions def verb_id(item): """Return the identifier for a verb lexical item.""" - return get_name(item) + '-verb-lex' + if not item.full_key.startswith('qverb'): + return get_name(item) + '-verb-lex' + else: + return get_name(item) + '-interrogative-verb-lex' def noun_id(item): """Return the identifier for a noun lexical item.""" @@ -40,6 +47,9 @@ def adp_id(item): """Return the identifier for an adposition lexical item.""" return get_name(item) + '-adp-lex' +def qpart_id(item): + """Return the identifier for a question particle lexical item.""" + return get_name(item) + '-lex' ########################################################## # insert_ids() @@ -225,17 +235,20 @@ def customize_verbs(mylang, ch, lexicon, hierarchies): auxorder = ch.get('aux-comp-order') vcluster = determine_vcluster(auxcomp, auxorder, wo, ch) + # OZ 2020-02-20 May need to push this down for question verbs. typedef = \ 'verb-lex := non-mod-lex-item & \ - [ SYNSEM.LOCAL.CAT.HEAD verb ].' + [ SYNSEM [ LOCAL.CAT.HEAD verb, L-QUE - ] ].' mylang.add(typedef) typedef = \ 'main-verb-lex := verb-lex & basic-verb-lex & \ - [ SYNSEM.LOCAL.CAT.HEAD.AUX - ].' + [ SYNSEM [ LOCAL.CAT.HEAD.AUX -,' \ + 'L-QUE - ] ].' mylang.add(typedef) typedef = \ - 'aux-lex := verb-lex & basic-icons-lex-item &\ - [ SYNSEM.LOCAL.CAT.HEAD.AUX + ].' + 'aux-lex := verb-lex & basic-icons-lex-item & \ + [ SYNSEM [ LOCAL.CAT.HEAD.AUX +,' \ + 'L-QUE - ] ].' mylang.add(typedef) if vcluster: @@ -246,10 +259,9 @@ def customize_verbs(mylang, ch, lexicon, hierarchies): vcluster = False mylang.add('verb-lex := basic-verb-lex & non-mod-lex-item.') - typedef = mainorverbtype + ' := \ - [ SYNSEM.LOCAL [ CAT.VAL [ SPR < >, \ - SPEC < >, \ - SUBJ < #subj > ], \ + typedef = mainorverbtype + ' := basic-non-wh-word-lex & \ + [ SYNSEM.LOCAL [ CAT [ VAL [ SPEC < >, \ + SUBJ < #subj > ] ], \ CONT.HOOK.XARG #xarg ], \ ARG-ST < #subj & \ [ LOCAL [ CAT cat-sat & [ VAL [ SPR < >, \ @@ -314,7 +326,49 @@ def customize_verbs(mylang, ch, lexicon, hierarchies): cases = case.case_names(ch) for verb in ch.get('verb',[]): create_verb_lex_type(cases, ch, hierarchies, lexicon, mylang, verb) + if ch.get('wh-q-inter-verbs') == 'on': + mylang.add(lexbase.ITRG_VB) + for verb in ch.get('qverb',[]): + create_interrogative_verb_type(cases,ch,hierarchies,lexicon,mylang,verb) +def create_interrogative_verb_type(cases,ch,hierarchies,lexicon,mylang,verb): + vtype = verb_id(verb) + # clause-embedding verb's valence and its complement's head constraint: + vtype,head = clausalcomps.update_verb_lextype(ch,verb,vtype) + if verb['predtype'] in ['manner','loc']: + mylang.add(vtype + lexbase.ITRG_FOUR_REL) + elif verb['predtype'] == 'ref': + mylang.add(vtype + lexbase.ITRG_THREE_REL) + + features.customize_feature_values(mylang, ch, hierarchies, verb, vtype, 'verb', None, cases) + stems = verb.get('stem', []) + stems.extend(verb.get('bistem', [])) + for stem in stems: + add_itg_stem_to_lexicon(lexicon, stem, vtype, verb['predtype']) + +def add_itg_stem_to_lexicon(lexicon, stem, stype, predtype): + orthstr = orth_encode(stem.get('orth')) + vpred = stem.get('verbpred') + name = stem.get('name') + typedef = \ + TDLencode(name) + ' := ' + stype + ' & \ + [ STEM < "' + orthstr + '" >, \ + SYNSEM.LKEYS.KEYREL.PRED "_' + vpred + '_v_rel" ].' + lexicon.add(typedef) + npred = stem.get('nounpred') + if predtype == 'ref': + typedef = \ + TDLencode(name) + ' := [ SYNSEM.LOCAL.CONT.RELS.LIST < [], [], [ PRED "_' + npred + '_n_rel" ] > ] ].' + lexicon.add(typedef,merge=True) + elif predtype in ['manner','loc']: + if predtype == 'manner': + pred = 'manner_nonsp_rel' + elif predtype == 'loc': + pred = 'loc_nonsp_rel' + typedef = \ + TDLencode(name) + ' := [ SYNSEM.LOCAL.CONT.RELS.LIST < [], [PRED "_' + pred + '"], ' \ + '[ PRED "_' + npred + '_n_rel" ], [] > ] ].' + lexicon.add(typedef,merge=True) @@ -340,12 +394,12 @@ def create_verb_lex_type(cases, ch, hierarchies, lexicon, mylang, verb): add_stem_to_lexicon(lexicon, stem, vtype) -def add_stem_to_lexicon(lexicon, stem, vtype): +def add_stem_to_lexicon(lexicon, stem, stype): orthstr = orth_encode(stem.get('orth')) pred = stem.get('pred') name = stem.get('name') typedef = \ - TDLencode(name) + ' := ' + vtype + ' & \ + TDLencode(name) + ' := ' + stype + ' & \ [ STEM < "' + orthstr + '" >, \ SYNSEM.LKEYS.KEYREL.PRED "' + pred + '" ].' lexicon.add(typedef) @@ -386,7 +440,7 @@ def construct_supertype_names(cases, ch, stype_names, verb): else: #OZ 2018-01-03: This is awkward, has to do with the current format of the choices file... #We should not ideally end up here at all if we are not an intransitive verb... - #The reason we end up here is some clausal verbs will only have subject case specified. + #The reason we end up here is some clause-embedding verbs will only have subject case specified. if not s_case == 'trans': tivity += s_case tivity += '-' @@ -405,7 +459,7 @@ def main_or_verb(ch): def customize_determiners(mylang, ch, lexicon, hierarchies): - + from gmcs.constants import INTER, ON # Lexical type for determiners, if the language has any: if ch.get('has-dets') == 'yes': comment = \ @@ -415,10 +469,10 @@ def customize_determiners(mylang, ch, lexicon, hierarchies): # LLD 2016-04-04 changed basic-zero-arg to norm-zero-arg typedef = \ - 'determiner-lex := basic-determiner-lex & norm-zero-arg & \ - [ SYNSEM.LOCAL.CAT.VAL [ SPR < >, \ + 'determiner-lex := basic-determiner-lex & basic-non-wh-word-lex & norm-zero-arg & \ + [ SYNSEM.LOCAL.CAT [ VAL [ SPR < >, \ COMPS < >, \ - SUBJ < > ]].' + SUBJ < > ]]].' mylang.add(typedef) mylang.add('determiner-lex := non-mod-lex-item.') @@ -428,50 +482,65 @@ def customize_determiners(mylang, ch, lexicon, hierarchies): lexicon.add_literal(';;; Determiners') for det in ch.get('det',[]): - stype = 'determiner-lex' - dtype = det_id(det) - - mylang.add(dtype + ' := ' + stype + '.') - - has_inforstr_feat = False - for feat in det.get('feat', []): - if feat['name'] == "information-structure meaning": - has_inforstr_feat = True - mylang.add(dtype + ' := infostr-marking-determiner-lex.') - break - if not has_inforstr_feat: + if det[INTER] == ON: + if not USED_TYPES['qdet']: + mylang.add(lexbase.WH_DET) + USED_TYPES['qdet'] = True + add_determiner(ch, det, 'wh-determiner-lex', hierarchies, lexicon, mylang) + else: + add_determiner(ch, det, 'determiner-lex',hierarchies, lexicon, mylang) + +def add_determiner(ch, det, stype, hierarchies, lexicon, mylang): + dtype = det_id(det) + mylang.add(dtype + ' := ' + stype + '.') + if stype == 'determiner-lex': + mylang.add(dtype + ':= [ SYNSEM [ L-QUE -, ] ].') + has_inforstr_feat = False + for feat in det.get('feat', []): + if feat['name'] == "information-structure meaning": + has_inforstr_feat = True + mylang.add(dtype + ' := infostr-marking-determiner-lex.') + break + if not has_inforstr_feat: + if stype == 'determiner-lex': mylang.add(dtype + ' := no-icons-lex-item.') + elif stype == 'wh-determiner-lex': + mylang.add(dtype + ' := one-icons-lex-item.') - features.customize_feature_values(mylang, ch, hierarchies, det, dtype, 'det') + features.customize_feature_values(mylang, ch, hierarchies, det, dtype, 'det') - for stem in det.get('stem',[]): - orthstr = orth_encode(stem.get('orth')) - pred = stem.get('pred') - name = stem.get('name') - typedef = \ - TDLencode(name) + ' := ' + dtype + ' & \ + for stem in det.get('stem', []): + orthstr = orth_encode(stem.get('orth')) + pred = stem.get('pred') + name = stem.get('name') + typedef = \ + TDLencode(name) + ' := ' + dtype + ' & \ [ STEM < "' + orthstr + '" >, \ SYNSEM.LKEYS.KEYREL.PRED "' + pred + '" ].' - lexicon.add(typedef) + lexicon.add(typedef) def customize_misc_lex(ch, lexicon, trigger): # Question particle - if ch.get('q-part'): - orth = ch.get('q-part-orth') - orthstr = orth_encode(orth) - typedef = \ - TDLencode(orth) + ' := qpart-lex-item & \ - [ STEM < "' + orthstr + '" > ].' - lexicon.add(typedef) - grdef = TDLencode(orth) +'_gr := generator_rule & \ - [ CONTEXT [ RELS.LIST < [ ARG0.SF ques ] > ], \ - FLAGS.TRIGGER "' + TDLencode(orth) + '" ].' - trigger.add(grdef) + if ch.get('q-part') == 'on': + for qpart in ch.get('q-particle'): + parent = qpart_id(qpart) + orth = qpart['orth'] + orthstr = orth_encode(orth) + typedef = \ + TDLencode(orth) + ' := ' + parent + ' & \ + [ STEM < "' + orthstr + '" > ].' + lexicon.add(typedef) + grdef = TDLencode(orth) +'_gr := generator_rule & \ + [ CONTEXT [ RELS.LIST < [ ARG0.SF ques ] > ], \ + FLAGS.TRIGGER "' + TDLencode(orth) + '" ].' + trigger.add(grdef) def customize_nouns(mylang, ch, lexicon, hierarchies): + from gmcs.constants import INTER, ON, WH_PRO + # EKN 2018-01-26 Adding a PRON feature to mark all pronouns: mylang.add('head :+ [ PRON bool ].',section='addenda') @@ -484,7 +553,9 @@ def customize_nouns(mylang, ch, lexicon, hierarchies): if not det == '' and not seen[det]: seen[det] = True seenCount += 1 - + if noun.get(INTER): + USED_TYPES['qpro'] = True + mylang.add(lexbase.WH_PRONOUN) singlentype = (seenCount == 1) # Playing fast and loose with the meaning of OPT on SPR. Using @@ -497,11 +568,11 @@ def customize_nouns(mylang, ch, lexicon, hierarchies): # Adding that just in case we add the no-spr-noun-lex type. typedef = \ - 'noun-lex := basic-noun-lex & basic-one-arg & no-hcons-lex-item & \ - [ SYNSEM.LOCAL [ CAT.VAL [ SPR < #spr & [ LOCAL.CAT.HEAD det ] >, \ + 'noun-lex := basic-noun-lex & basic-non-wh-word-lex & basic-one-arg & no-hcons-lex-item & \ + [ SYNSEM [ LOCAL [ CAT [ VAL [ SPR < #spr & [ LOCAL.CAT.HEAD det ] >, \ COMPS < >, \ SUBJ < >, \ - SPEC < > ] ], \ + SPEC < > ] ] ] ], \ ARG-ST < #spr > ].' # EKN 2017-12-18 In some languages, possessor nouns or @@ -553,7 +624,7 @@ def customize_nouns(mylang, ch, lexicon, hierarchies): 'keeps such nouns out.') if ch.get('case-marking') != 'none': - if not ch.has_adp_case(): + if not ch.has_adp_case() and not ch.has_det_case(): mylang.add('noun :+ [ CASE case ].', section='addenda') # Add the lexical entries @@ -594,7 +665,8 @@ def customize_nouns(mylang, ch, lexicon, hierarchies): for noun in ch.get('noun',[]): ntype = noun_id(noun) det = noun.get('det') - pron = True if noun.get('pron')=='on' else False + pron = noun.get('pron') == ON + qpron = noun.get(INTER) == ON if noun.full_key in stopdets: det = '' @@ -603,11 +675,13 @@ def customize_nouns(mylang, ch, lexicon, hierarchies): #if singlentype or det == 'opt': # stype = 'noun-lex' - if not singlentype: + if not singlentype and not qpron: if det == 'obl': stype_names.append('obl-spr-noun-lex') elif det == 'imp': stype_names.append('no-spr-noun-lex') + if qpron: + stype_names.append(WH_PRO) if len(stype_names) == 0: mylang.add(ntype + ' := noun-lex .') else: @@ -617,6 +691,8 @@ def customize_nouns(mylang, ch, lexicon, hierarchies): mylang.add(ntype + ' := [ SYNSEM.LOCAL.CAT.HEAD.PRON + ].') features.customize_feature_values(mylang, ch, hierarchies, noun, ntype, 'noun') for stem in noun.get('stem', []): + # consider instead using (should be the same effect): + # add_stem_to_lexicon(lexicon, stem, ntype) orthstr = orth_encode(stem.get('orth')) pred = stem.get('pred') name = stem.get('name') @@ -625,10 +701,45 @@ def customize_nouns(mylang, ch, lexicon, hierarchies): SYNSEM.LKEYS.KEYREL.PRED "' + pred + '" ].' lexicon.add(typedef) +def customize_adverbs(mylang,ch,lexicon): + mylang.set_section('otherlex') + mylang.add_literal(';;; Adverbs') + lexicon.add_literal(';;; Adverbs') + loc_adv_added = False + manner_adv_added = False + if ch.get('adv'): + mylang.add(lexbase.ADV_ITEM) + for adv in ch.get('adv'): + stypes = [] + if adv['type'] == 'loc': + if not loc_adv_added: + mylang.add(lexbase.LOC_ADV_ITEM) + loc_adv_added = True + stypes.append('loc-adverb-lex-item') + elif adv['type'] == 'manner': + if not manner_adv_added: + mylang.add(lexbase.MANNER_ADV_ITEM) + manner_adv_added = True + stypes.append('manner-adverb-lex-item') + if adv['inter'] == 'on': + stypes.append('wh-adverb-lex') + mylang.add(lexbase.WH_ADV) + else: + stypes.append('adverb-lex') + mylang.add(lexbase.ADV) + supertypes = ' & '.join(stypes) + typename = adv['name'] + '-' + 'adverb-lex' + typedef = TDLencode(typename) + ' := ' + supertypes + '.' + mylang.add(typedef) + for stem in adv['stem']: + add_stem_to_lexicon(lexicon,stem,typename) + # TJT 2014-05-05 def customize_adjs(mylang, ch, lexicon, hierarchies, rules): # Add basic adjective definition + # OZ 2020-02-18 In fact, all adjectives must also inherit from either zero-norm-arg + # or from basic-one-arg. Otherwise the nonlocal values are underspecified. if ch.get('adj',[]): mylang.add("adj-lex := basic-intersective-adjective-lex.") @@ -933,8 +1044,14 @@ def customize_adjs(mylang, ch, lexicon, hierarchies, rules): section='lexrules') # Add the proper syntactic rules to rules.tdl - if adj_rules['head_adj']: rules.add("head-adj-int := head-adj-int-phrase.") - if adj_rules['adj_head']: rules.add("adj-head-int := adj-head-int-phrase.") + from gmcs.linglib.adverbs_adpositions import HEAD_ADJ, ADJ_HEAD + if adj_rules['head_adj']: + mylang.add(HEAD_ADJ, section='phrases') + rules.add("head-adj := my-head-adj-phrase.") + + if adj_rules['adj_head']: + mylang.add(ADJ_HEAD, section='phrases') + rules.add("adj-head := my-adj-head-phrase.") # Add the lexical entries to lexicon.tdl lexicon.add_literal(';;; Adjectives') @@ -970,7 +1087,6 @@ def customize_cops(mylang, ch, lexicon, hierarchies, trigger): COMPS < [ LOCAL.CAT cat-sat & [ HEAD.PRD +, VAL [ SUBJ < >, COMPS < > ] ] ] >, - SPR < >, SPEC < > ], CONT.HOOK.XARG #xarg ] ].''' % LEXICAL_SUPERTYPES['cop']) @@ -1014,6 +1130,30 @@ def customize_cops(mylang, ch, lexicon, hierarchies, trigger): # TODO: Add copula types to trigger.mtr +def customize_adpositions(mylang, lexicon, ch,hierarchies): + #If not constrained as below, prepositions will go as head daughters in head-subject rules + mylang.add('decl-head-subj-phrase :+ [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD +nvj ].') + #mylang.add('head-spec-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD noun ].') + mylang.add(lexbase.ADP_LEX) + if ch.get('has-aux') == 'yes': + mylang.add('norm-adposition-lex := [ SYNSEM.LOCAL.CAT.HEAD.MOD < [ LOCAL.CAT.HEAD.AUX - ] > ].') + supertype = 'norm-adposition-lex' + for adp in ch.get('normadp'): + typename = adp.full_key + '-' + supertype + mylang.add(typename + ' := ' + supertype + '.') + for stem in adp['stem']: + add_stem_to_lexicon(lexicon,stem,typename) + features.customize_feature_values(mylang,ch,hierarchies,adp,typename,'normadp') + if not feature_type_use.USED_FEATURES['INIT']: + feature_type_use.USED_FEATURES['INIT'] = True + mylang.add('head :+ [ INIT bool ].', section='addenda') + if adp['order'] == 'before': + mylang.add(typename + ' := ' + supertype + '& [ SYNSEM.LOCAL.CAT.HEAD.INIT + ].') + else: + mylang.add(typename + ' := ' + supertype + '& [ SYNSEM.LOCAL.CAT.HEAD.INIT - ].') + + + ###################################################################### # customize_lexicon() # Create the type definitions associated with the user's test @@ -1032,13 +1172,30 @@ def customize_lexicon(mylang, ch, lexicon, trigger, hierarchies, rules): customize_adjs(mylang, ch, lexicon, hierarchies, rules) mylang.set_section('otherlex') - to_cfv = case.customize_case_adpositions(mylang, lexicon, trigger, ch) + # Need to pick up other POS which inflect for case. + case_pos = set() + to_cfv = case.customize_case_adpositions(mylang, lexicon, trigger, ch, case_pos) + features.process_cfv_list(mylang, ch, hierarchies, to_cfv, tdlfile=lexicon) + # Specify CASE on determiners if needed: + if ch.has_det_case(): + case_pos.add('det') + if len(case_pos) == 2: + mylang.add('+npd :+ [ CASE case ].', section='addenda') + elif len(case_pos) == 1 and 'det' in case_pos: + mylang.add('+nd :+ [ CASE case ].', section='addenda') + elif len(case_pos) == 1 and 'adp' in case_pos: + mylang.add('+np :+ [ CASE case ].', section='addenda') + + if ch.has_adp_only_infostr(): to_cfv = information_structure.customize_infostr_adpositions(mylang, lexicon, trigger, ch) features.process_cfv_list(mylang, ch, hierarchies, to_cfv, tdlfile=lexicon) + if ch.get('normadp'): + customize_adpositions(mylang, lexicon,ch,hierarchies) + mylang.set_section('verblex') customize_verbs(mylang, ch, lexicon, hierarchies) @@ -1051,6 +1208,7 @@ def customize_lexicon(mylang, ch, lexicon, trigger, hierarchies, rules): mylang.set_section('otherlex') customize_determiners(mylang, ch, lexicon, hierarchies) + customize_adverbs(mylang,ch,lexicon) customize_misc_lex(ch, lexicon, trigger) # Used by the word order library, for different matrix-subordinate word order diff --git a/gmcs/linglib/lexicon.py b/gmcs/linglib/lexicon.py index 626c1ca42..ec698c44b 100644 --- a/gmcs/linglib/lexicon.py +++ b/gmcs/linglib/lexicon.py @@ -31,6 +31,9 @@ def lexical_type_hierarchy(choices, lexical_supertype): st = get_lexical_supertype('tverb', choices) lth.add_node(LexicalType('tverb', get_lt_name('tverb', choices), parents={st:lth.nodes[st]})) + + if lexical_supertype == 'qverb': + st = get_lexical_supertype('qverb',choices) for lst in lts_to_add: for lt in choices[lst]: st = get_lexical_supertype(lt.full_key, choices) @@ -39,7 +42,7 @@ def lexical_type_hierarchy(choices, lexical_supertype): # If we're dealing with a verb add nodes for all lexical entries # because bistems can give rise to flags that need to appear on # all verbs. - if lexical_supertype == 'verb': + if lexical_supertype in ['verb', 'qverb']: bistems = choices[lt.full_key]['bistem'] or [] stems = choices[lt.full_key]['stem'] or [] stems.extend(bistems) @@ -57,7 +60,7 @@ def get_lexical_supertype(lt_key, choices): return 'verb' elif lexical_category == 'verb': return case.interpret_verb_valence(choices[lt_key]['valence']) - elif lexical_category in ('noun', 'det', 'adj', 'cop'): # TJT Added adj, cop, removed aux + elif lexical_category in ('noun', 'det', 'adv', 'adj', 'cop','qverb'): # TJT Added adj, cop, removed aux return lexical_category return None @@ -552,6 +555,21 @@ def validate_lexicon(ch, vr): mess = 'You must specify a predicate for each verb you define.' vr.err(bistem.full_key + '_pred', mess) + for qv in ch.get('qverb'): + if not qv['predtype']: + mess = 'You must specify what kind of second predicate this verb contributes.' + vr.err(qv.full_key+'_predtype',mess) + for stem in qv['stem']: + if not stem['verbpred']: + mess = 'You must specify the event predicate this verb contributes.' + vr.err(stem.full_key+'_verbpred',mess) + if not stem['nounpred']: + mess = 'You must specify the second predicate this verb contributes.' + vr.err(stem.full_key+'_nounpred',mess) + if len(qv['bistem']) > 0: + mess = 'Bipartite stems are not yet supported for question verbs.' + vr.err(qv.full_key,mess) + if not (seenTrans and seenIntrans): mess = 'You should create intransitive and transitive verb classes.' vr.warn('verb1_valence', mess) @@ -821,7 +839,8 @@ def validate_lexicon(ch, vr): mess = 'You must specify a value for this feature.' vr.err(cf.full_key + '_value', mess) if name == 'evidential': - vr.err(cf.full_key + '_name', 'Evidentials should be specified as an auxiliary feature, not a complement feature.') + vr.err(cf.full_key + '_name', 'Evidentials should be specified as an auxiliary feature, ' + 'not a complement feature.') if not compform == 'yes': mess = 'You must specify the form of the verb in the complement, ' + \ @@ -954,7 +973,19 @@ def validate_lexicon(ch, vr): 'Please account for these cases: ' + ', '.join(not_covered) + '.' vr.err('adp1_opt', mess) - + for adp in ch.get('normadp'): + if len(adp['stem']) == 0: + mess = 'Please specify the spellings for this adposition type' + vr.err(adp.full_key+'_stem1_orth', mess) + if not adp['order']: + mess = 'Please specify the position for this adposition.' + vr.err(adp.full_key+'_order', mess) + + # Adverbs + for adv in ch.get('adv'): + if not adv['type']: + mess = 'Please select the type for this adverb.' + vr.err(adv.full_key+'_type',mess) # Features on all lexical types # TJT 2014-09-02: Adding adj and cop diff --git a/gmcs/linglib/morphotactics.py b/gmcs/linglib/morphotactics.py index 3836028aa..beead7098 100644 --- a/gmcs/linglib/morphotactics.py +++ b/gmcs/linglib/morphotactics.py @@ -565,6 +565,8 @@ def validate_supertypes(x): # in write_possessive_behavior() as well. elif not (pc.has_possessive() or pc.has_infostr()): x.supertypes.add('add-only-no-ccont-rule') + elif pc.has_infostr(): + x.supertypes.add('add-only-no-rels-hcons-rule') for r in pc.roots(): r.percolate_down(items=lambda x: x.supertypes, diff --git a/gmcs/linglib/negation.py b/gmcs/linglib/negation.py index 188483266..97e954d93 100644 --- a/gmcs/linglib/negation.py +++ b/gmcs/linglib/negation.py @@ -115,7 +115,7 @@ def customize_adv_neg(mylang, ch, lexicon, rules): mylang.add('''neg-adv-lex := basic-scopal-adverb-lex & [ SYNSEM.LOCAL.CAT [ VAL [ SPR < >, COMPS < >, - SUBJ < > ], + SUBJ < >, SPEC < > ], HEAD.MOD < [ LOCAL.CAT.HEAD verb ] > ]].''', 'Type for negative adverbs.') @@ -151,6 +151,9 @@ def customize_adv_neg(mylang, ch, lexicon, rules): [ STEM < \"'+ orthstr +'\" >,\ SYNSEM.LKEYS.KEYREL.PRED \"neg_rel\" ].') + # olzama 2020-04-22 Since this is for sentential negation, + # these rules should probably always be constrained to only + # take verby head daughters? I did not make any changes though. rules.add('adj-head-scop := adj-head-scop-phrase.') rules.add('head-adj-scop := head-adj-scop-phrase.', 'Rule instances for head-modifier structures. Corresponding types\n' + diff --git a/gmcs/linglib/wh_ques.py b/gmcs/linglib/wh_ques.py new file mode 100644 index 000000000..7bd8d053a --- /dev/null +++ b/gmcs/linglib/wh_ques.py @@ -0,0 +1,310 @@ +''' +Module to support the Constituent (Wh-) Questions library. +email olzama@uw.edu with both constituent and polar questions about the library. +''' + +from gmcs.utils import get_name,TDLencode, orth_encode + + +''' +CONSTANTS +''' + +WH_Q_PHR_NO_OR_SG_OBLIG_MULTI = ''' wh-ques-phrase := +[ SYNSEM.NON-LOCAL.QUE #que, + HEAD-DTR.SYNSEM.NON-LOCAL.QUE #que ].''' + +WH_Q_PHR = ''' wh-ques-phrase := basic-head-filler-phrase & interrogative-clause & head-final & +[ SYNSEM [ LOCAL.CAT [ WH.LOGICAL-OR.BOOL +, MC bool, + VAL #val, + HEAD verb ], NON-LOCAL.QUE 0-alist ], + HEAD-DTR.SYNSEM [ LOCAL.CAT [ VAL #val & [ SUBJ < >, + COMPS < > ] ] ], + NON-HEAD-DTR.SYNSEM [ NON-LOCAL.QUE.LIST < ref-ind >, + LOCAL.CONT.HOOK.ICONS-KEY focus ] ].''' + + +MAIN_WHQ = '''main-wh-ques-phrase := wh-ques-phrase & +[ HEAD-DTR.SYNSEM.LOCAL.CAT.MC na-or-+, + SYNSEM.LOCAL.CAT.MC + ]. +''' + +EMBED_WHQ = '''embed-wh-ques-phrase := wh-ques-phrase & +[ HEAD-DTR.SYNSEM.LOCAL.CAT.MC -, + SYNSEM.LOCAL.CAT.MC - ].''' + +EX_COMP = ''' extracted-comp-phrase := basic-extracted-comp-phrase.''' + +EX_SUBJ = ''' extracted-subj-phrase := basic-extracted-subj-phrase & +[ SYNSEM.LOCAL.CAT.HEAD verb ].''' + +IN_SITU_PHRASE = '''insitu-int-cl := interrogative-clause & head-only & +[ SYNSEM [ MODIFIED hasmod, + LOCAL.CAT [ VAL #val, + MC bool ], + NON-LOCAL [ SLASH.LIST < >, QUE.LIST < >, REL.LIST < >, YNQ #ynq ] ], + C-CONT [ RELS.LIST < >, + HCONS.LIST < > ], + HEAD-DTR.SYNSEM [ LOCAL.CAT [ HEAD verb, + VAL #val & + [ SUBJ < >, + COMPS < > ] ], + NON-LOCAL [ SLASH.LIST < >, + REL.LIST < >, + QUE.LIST < ref-ind, ... >, YNQ #ynq ] ] ].''' + +EX_DET_PHRASE = '''extracted-det-phrase := basic-extracted-arg-phrase & head-compositional & +[ SYNSEM [ LOCAL.CAT [ VAL [ SUBJ < >, COMPS < >, SPR < >, SPEC < > ] ] ], + HEAD-DTR.SYNSEM [ MODIFIED notmod, + LOCAL.CAT.VAL.SPR < gap & [ LOCAL #local & local & + [ CAT.HEAD det, + CONT.HOOK #hook ] ] >, + L-PERIPH -, + NON-LOCAL.SLASH.LIST < #local > ], + C-CONT [ RELS.LIST < >, + HCONS.LIST < >, + ICONS.LIST < >, + HOOK #hook ] ].''' + +BASIC_FILLER_SG = '''basic-filler-phrase :+ [ SYNSEM.NON-LOCAL.SLASH.LIST < >, + ARGS < [ SYNSEM [ LOCAL #slash, + NON-LOCAL.SLASH.LIST < > ] ], + [ SYNSEM.NON-LOCAL.SLASH.LIST < #slash > ] > ]. ''' + +FIRST_FILLER = '''1st-head-filler-phrase := basic-filler-phrase & head-compositional & +[ SYNSEM [ NON-LOCAL [ SLASH.LIST #slash, REL #rel, QUE 0-alist, YNQ 0-alist ] ], + ARGS < [ SYNSEM.LOCAL #local & [ CAT.HEAD +nrpd ] ], + [ SYNSEM.NON-LOCAL [ SLASH.LIST < #local . #slash >, + REL #rel & 0-alist ] ] > ].''' + +SEC_FILLER = '''2nd-head-filler-phrase := binary-phrase & phrasal & head-compositional & +[ SYNSEM.NON-LOCAL.SLASH.LIST < #firstarg . #otherargs >, + ARGS < [ SYNSEM.LOCAL #local ], + [ SYNSEM.NON-LOCAL [ SLASH.LIST [ FIRST #firstarg, REST < #local . #otherargs > ], + REL 0-alist ] ] > ].''' + +NC_SUBJ_HEAD = ''' +subj-head-nc-phrase := decl-head-subj-phrase & head-final & +[ SYNSEM.LOCAL.CAT [ MC - ], + HEAD-DTR.SYNSEM.LOCAL.CAT.VAL [ COMPS < > ] ]. + +''' + +from gmcs.constants import MTRX_FR_OPT, MTRX_FRONT, NO_MULTI, \ + SINGLE, MULTI, SG_OBLIG, ALL_OBLIG, EMBED_INSITU, ON, WH_INFL, \ + IN_SITU + + +# This function should be finished when/if WH feature is moved from matrix.tdl to customization +def customize_wh_feature(mylang,ch): + mylang.add('cat :+ [ WH and-or ].') + if ch.get(MTRX_FRONT): + mylang.add('wh-ques-phrase := [ SYNSEM.LOCAL.CAT.WH.LOGICAL-OR.BOOL + ].') + if len(ch.get('adv', [])) > 0 or len(ch.get('normadp', [])) > 0: + mylang.add('norm-adposition-lex := [ SYNSEM.LOCAL.CAT.WH or-and-plus ].') + + + +def customize_wh_ques(mylang,ch,rules,roots): + if (not ch.get(MTRX_FRONT)) and ch.get(WH_INFL) != 'on': + # If there are no wh-questions, need to put the default + # constraints to establish the semantic links between + # the filler and the gap and the extracted subject and the verb: + mylang.add(BASIC_FILLER_SG,section='phrases') + mylang.add(EX_SUBJ,section='phrases') + mylang.add('''clause :+ [ SYNSEM.NON-LOCAL.QUE 0-alist ]. ''') + else: + if ch.get('person') == '1-2-3': + mylang.add('wh-pronoun-noun-lex := [ SYNSEM.LOCAL.CONT.HOOK.INDEX.PNG.PER 3rd ].') + + # Either no fronting at all or single fronting + if (not ch.get(MTRX_FRONT)) or ch.get(MTRX_FRONT) == SINGLE: + if len(ch.get('adv', [])) > 0 or len(ch.get('normadp', [])) > 0: + if ch.get(NO_MULTI) != ON and not ch.get('wh-q-inter-verbs'): + mylang.add('''head-adj-int-phrase :+ [ HEAD-DTR.SYNSEM [ L-QUE -, + LOCAL.CAT.VAL [ SUBJ clist, COMPS clist ] ] ].''',section='addenda') + mylang.add('''adj-head-int-phrase :+ [ HEAD-DTR.SYNSEM.NON-LOCAL.SLASH 0-alist ].''',section='addenda') + + if (not ch.get(MTRX_FRONT) and ch.get(WH_INFL) != ON) : + mylang.add('''clause :+ [ SYNSEM.NON-LOCAL.QUE.LIST < > ]. ''') + if len(ch.get('adv', [])) > 0 or len(ch.get('normadp', [])) > 0: + mylang.add('''head-adj-int-phrase :+ [ NON-HEAD-DTR.SYNSEM.NON-LOCAL.QUE.LIST < > ]. ''',section='addenda') + + if ch.get(NO_MULTI) == ON: + mylang.add('''clause :+ [ SYNSEM.NON-LOCAL.QUE 0-1-alist ]. ''') + if ch.get(MTRX_FRONT) in [SINGLE]: + mylang.add('''wh-ques-phrase := [ HEAD-DTR.SYNSEM.NON-LOCAL.QUE 0-alist ].''') + if len(ch.get('adv', [])) > 0 or len(ch.get('normadp', [])) > 0: + mylang.add('''wh-adverb-lex := [ SYNSEM.LOCAL.CAT.HEAD.MOD < [ LOCAL.CAT.WH.LOGICAL-OR.BOOL - ] > ].''') + + mylang.add_literal(';;; Wh-question-related phrasal types',section='phrases') + + if ch.get(MTRX_FRONT) in [SINGLE, MULTI]: + mylang.add_literal('''; Do not allow extracting "And Kim"''') + mylang.add('''basic-head-filler-phrase :+ + [ ARGS < [ SYNSEM.LOCAL.COORD - ], [ SYNSEM.LOCAL.COORD - ] > ].''') + mylang.add(WH_Q_PHR,section='phrases') + if not ch.get('wh-inv-matrix') == ON: + mylang.add('wh-ques-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.MC na-or-+ ].') + else: + if not ch.get('wh-inv-embed') == ON: + mylang.add(MAIN_WHQ) + mylang.add(EMBED_WHQ) + else: + mylang.add('wh-ques-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.MC na-or-+ ].') + mylang.add_literal('; Complement extraction',section='phrases') + mylang.add(EX_COMP) + rules.add('ex-comp := extracted-comp-phrase.') + mylang.add_literal('; Adjunct extraction',section='phrases') + if ch.get(MTRX_FRONT) == MULTI: + rules.add('ex-adj-last := extracted-adj-last-phrase.') + rules.add('ex-adj-first := extracted-adj-first-phrase.') + # Free probably shouldn't belong here? check + if ch.get('word-order') in ['vos','svo','sov','free']: + if ch.get('pied-pip-adp') != 'on' or ch.get('oblig-pied-pip-adp') == ON: + mylang.add('extracted-comp-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.SUBJ cons ].',merge=True) + mylang.add('extracted-subj-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.COMPS < > ].',merge=True) + elif ch.get('word-order') in ['vso','osv','ovs']: + mylang.add('extracted-comp-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.SUBJ < > ].',merge=True) + + + + if ch.get(MTRX_FRONT) in [SINGLE]: + # With single fronting, can restrict SLASH to one element at most + mylang.add(BASIC_FILLER_SG,section='phrases') + mylang.add_literal('; Subject extraction') + mylang.add(EX_SUBJ) + rules.add('ex-subj := extracted-subj-phrase.') + if not ch.get('wh-inv-matrix') == ON: + rules.add('wh-ques := wh-ques-phrase.') + else: + if not ch.get('wh-inv-embed') == ON: + rules.add('main-whq := main-wh-ques-phrase.') + rules.add('embed-whq := embed-wh-ques-phrase.') + else: + rules.add('wh-ques := wh-ques-phrase.') + + if ch.get(MTRX_FR_OPT) == SG_OBLIG: + mylang.add('''head-adj-int-phrase :+ [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL [ SUBJ clist, COMPS clist ] ].''') + + if ch.get('wh-inv-matrix') == ON: + if not ch.get('wh-inv-notsubj') == ON: + mylang.add('wh-ques-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD.AUX + ].') + else: + mylang.add('extracted-subj-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD.AUX - ].') + if not ch.get('wh-inv-embed') == ON: + mylang.add('subj-head-phrase := [ SYNSEM.LOCAL.CAT.MC na-or-+,' + 'HEAD-DTR.SYNSEM.NON-LOCAL [ QUE.LIST < >, SLASH.LIST < > ] ].') + mylang.add('adj-head-int-phrase :+ [ NON-HEAD-DTR.SYNSEM.NON-LOCAL [ QUE.LIST < > ] ].') + mylang.add(NC_SUBJ_HEAD, section='phrases') + rules.add('nc-subjh := subj-head-nc-phrase.') + mylang.add('extracted-adj-first-phrase :+ ' + '[ SYNSEM.NON-LOCAL.SLASH.LIST < [ CAT.HEAD.MOD < [ LOCAL.CAT.HEAD [ INV - ] ] > ] >, ' + ' HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.COMPS < > ].') + + + if ch.get(MTRX_FRONT) in [MULTI]: + mylang.add(EX_SUBJ, section='phrases') + mylang.add('extracted-subj-phrase := [ HEAD-DTR.SYNSEM.L-QUE - ].') + rules.add('ex-subj := extracted-subj-phrase.') + mylang.add('wh-ques-phrase := [ HEAD-DTR.SYNSEM.NON-LOCAL.SLASH.LIST < [], ... > ].') + mylang.add(FIRST_FILLER) + # prevent adjunct extraction, as it will be done out of head-subj + if ch.get(MTRX_FR_OPT) == 'none-oblig': + mylang.add('1st-head-filler-phrase := [ SYNSEM.MODIFIED hasmod ].') + mylang.add('wh-ques-phrase := 1st-head-filler-phrase.') + rules.add('wh-ques := wh-ques-phrase.') + if ch.get(MTRX_FR_OPT) == ALL_OBLIG: + mylang.add(WH_Q_PHR_NO_OR_SG_OBLIG_MULTI) # QUE.LIST is empty + # Rule out structural ambiguity for sentences like "Who sleeps where?" + if ch.get('word-order') in ['svo', 'sov', 'osv' ]: + mylang.add('''head-adj-int-phrase :+ [ HEAD-DTR.SYNSEM [ L-QUE -, + LOCAL.CAT.VAL [ SUBJ clist, COMPS clist ] ] ].''',section='addenda') + if ch.get('word-order') == 'free': + mylang.add('''adj-head-int-phrase :+ [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.SUBJ clist ].''', merge=True) + mylang.add('''head-adj-int-phrase :+ [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.SUBJ clist ].''', merge=True) + # The below does not make sense? Why is it that I want to constrain these orders in this way? + # Needs better conceptualization, or even more likely, will go away as part of an improved analysis of wh. + if ch.get('word-order') in ['ovs', 'vos', 'vso']: + mylang.add('''adj-head-int-phrase :+ [ HEAD-DTR.SYNSEM.L-QUE - ].''',section='addenda') + + if (ch.get(MTRX_FRONT) in [SINGLE] and ch.get(MTRX_FR_OPT) == 'none-oblig'): + if ch.get('word-order') in ['ovs', 'vos', 'vso']: + mylang.add('''adj-head-int-phrase :+ [ NON-HEAD-DTR.SYNSEM.L-QUE - ].''',section='addenda') + + # If fronting is optional, need to use the peripheral feature to rule out ambiguity. + if (ch.get(MTRX_FRONT) == SINGLE) \ + or (ch.get(MTRX_FRONT) == MULTI and not ch.get(MTRX_FR_OPT) == ALL_OBLIG): + mylang.add('phrase-or-lexrule :+ [ SYNSEM.L-QUE #lque, ARGS.FIRST.SYNSEM.L-QUE #lque ].') + + # If the fronting isn't obligatory or if only one question phrase + # is obligatorily fronted, need also in-situ rules: + if (ch.get(MTRX_FRONT) == SINGLE and not ch.get(MTRX_FR_OPT) == SG_OBLIG) \ + or ch.get(MTRX_FRONT) == IN_SITU \ + or (ch.get(MTRX_FRONT) == MULTI and not ch.get(MTRX_FR_OPT) == ALL_OBLIG) \ + or ch.get(WH_INFL) == ON: + mylang.add_literal('; In-situ interrogative clause.',section='phrases') + mylang.add(IN_SITU_PHRASE) + rules.add('in-situ-ques := insitu-int-cl.') + if not ch.get(MTRX_FRONT) == IN_SITU: + if ch.get(EMBED_INSITU) == ON: + mylang.add('insitu-int-cl := [ SYNSEM.LOCAL.CAT.WH.LOGICAL-OR.BOOL + ].') + else: + mylang.add('insitu-int-cl := [ SYNSEM.LOCAL.CAT.WH.LOGICAL-OR.BOOL - ].') + else: + mylang.add('''insitu-int-cl := [ SYNSEM.LOCAL.CAT.WH.LOGICAL-OR.BOOL + ].''') + if ch.get(MTRX_FRONT) in [SINGLE,MULTI]: + mylang.add('insitu-int-cl := [ SYNSEM.L-QUE - ].') + if (ch.get(MTRX_FRONT) == SINGLE + and not ch.get(MTRX_FR_OPT) == SG_OBLIG) \ + and not ch.get(EMBED_INSITU) == ON: + mylang.add('insitu-int-cl := [ SYNSEM.LOCAL.CAT.MC + ].') + elif ch.get(MTRX_FRONT) == 'multi' and ch.get(MTRX_FR_OPT) == SG_OBLIG: + mylang.add('insitu-int-cl := [ SYNSEM.LOCAL.CAT.MC - ].') + # For non-free word orders, need to rule out structural ambiguity: + if ch.get('word-order') in ['svo', 'sov'] \ + and not (ch.get(MTRX_FRONT) == IN_SITU + or ch.get(WH_INFL) == ON): + mylang.add('subj-head-phrase := [ NON-HEAD-DTR.SYNSEM.NON-LOCAL.QUE.LIST < > ].') + + # Obligatory pied piping of both nouns and adpositions is the default. + # If there is no pied piping or it is optional, additional extraction rules are needed. + if ch.get(MTRX_FRONT) in [SINGLE, MULTI] and len(ch.get('det', [])) > 0: + if (not ch.get('pied-pip') == ON or (ch.get('pied-pip')==ON + and not (ch.get('oblig-pied-pip-noun')== ON))): + mylang.add_literal('; If there is no obligatory pied-piping, determiners ' + 'can be extracted separately:',section='phrasal') + mylang.add(EX_DET_PHRASE,section='phrases') + if ch.get('case'): + mylang.add('''extracted-det-phrase := + [ SYNSEM.LOCAL.CAT.HEAD.CASE #case, + HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.SPR.FIRST.LOCAL.CAT.VAL.SPEC.FIRST.LOCAL.CAT.HEAD.CASE #case ].''') + if ch.has_png(): + mylang.add('''extracted-det-phrase := + [ SYNSEM.LOCAL.CONT.HOOK.INDEX.PNG #png, + HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.SPR.FIRST.LOCAL.CAT.VAL.SPEC.FIRST.LOCAL.CONT.HOOK.INDEX.PNG #png ].''') + rules.add('ex-det := extracted-det-phrase.') + # The following would rule out "Which royal house did you see a member of?" + #if ch.get('pied-pip-adp') == 'on' and not ch.get('oblig-pied-pip-adp') == ON: + #mylang.add('extracted-comp-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD +vp ].') + #if ch.get('word-order') in ['vos', 'vso', 'ovs','v-initial']: + #mylang.add('head-spec-phrase := [ HEAD-DTR.SYNSEM.NON-LOCAL.SLASH.LIST < > ].') + #else: + # mylang.add('extracted-comp-phrase := [ HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD verb ].') + + if ch.get('pied-pip-adp') == ON and \ + ch.get('oblig-pied-pip-noun') != ON \ + and ch.get('oblig-pied-pip-adp') == ON: + mylang.add('norm-adposition-lex := [ SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.NON-LOCAL.SLASH.LIST < > ].') + + if ch.get('q-part') == ON: + if ch.get(MTRX_FRONT) == IN_SITU: + mylang.add('insitu-int-cl := [ SYNSEM.LOCAL.CAT.WH.LOGICAL-OR.BOOL + ].') + # Perhaps this special case below can be dealt with differently? + # Like with the WH feature? + if len(ch.get('q-particle')) == 1: + qpart = ch.get('q-particle')[1] # This is 1 and not 0 because the Choices len method is overriden; see Choices.py + if qpart['wh'] == 'oblig': + mylang.add('insitu-int-cl := [ SYNSEM.LOCAL.CAT.MC - ].') + elif ch.has_diverse_ques_particles(): + mylang.add('insitu-int-cl := [ SYNSEM.LOCAL.CAT.MC - ].') diff --git a/gmcs/linglib/word_order.py b/gmcs/linglib/word_order.py index 78974341c..aa2d01d34 100644 --- a/gmcs/linglib/word_order.py +++ b/gmcs/linglib/word_order.py @@ -75,7 +75,7 @@ def customize_major_constituent_order(wo, mylang, ch, rules): # head - comp and not from mod to mother, putting it back for other wo options # KPH 2017-12-14 Removed mc identity between non head daughter and mother in - # basic-head-mod. This is not the case for clausal modifiers (in whcih the modifer + # basic-head-mod. This is not the case for clausal modifiers (in which the modifer # is MC -). if not wo == 'v2': @@ -138,8 +138,12 @@ def customize_major_constituent_order(wo, mylang, ch, rules): if wo in ['vso', 'osv']: mylang.add('basic-head-opt-comp-phrase :+ [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.SUBJ < > ].', section='addenda') + if ch.get('q-part-order') == 'second': + mylang.add('basic-head-opt-comp-phrase :+ same-periph-unary-phrase & same-ynq-unary-phrase & mc-na-headed-phrase.') else: mylang.add('basic-head-opt-subj-phrase :+ [ HEAD-DTR.SYNSEM.LOCAL.CAT.VAL.COMPS < > ].', section='addenda') + if ch.get('q-part-order') == 'second': + mylang.add('basic-head-opt-subj-phrase :+ same-periph-unary-phrase & same-ynq-unary-phrase & mc-na-headed-phrase.') # ERB 2006-09-14 Free word order is a big fat special case: @@ -806,6 +810,14 @@ def determine_consistent_order(wo,hc,ch): if not adp_order in adporders: adporders.append(adp_order) + # OZ: The above is for info-str marking and case marking adpositions. + # The below is for "normal" adpositions (which have content relations). + for adp in ch.get('normadp',[]): + adp_order = adp.get('order') + if not adp_order in adporders: + adporders.append(adp_order) + + # ERB 2006-10-05 Fixing bug in free word order case. adporder = '' if len(adporders) == 2: diff --git a/gmcs/linglib/yes_no_questions.py b/gmcs/linglib/yes_no_questions.py index 7f77261be..fccd3d310 100644 --- a/gmcs/linglib/yes_no_questions.py +++ b/gmcs/linglib/yes_no_questions.py @@ -5,11 +5,37 @@ # Create the type definitions associated with the user's choices # about matrix yes/no questions. -def customize_yesno_questions(mylang, ch, rules, lrules, hierarchies): + +INT_CL = '''int-cl := head-only & interrogative-clause & + [ SYNSEM [ LOCAL.CAT [ HEAD +vc, VAL #val, + MC bool ], + NON-LOCAL non-local-none ], + HEAD-DTR.SYNSEM [ LOCAL.CAT [ MC na-or--, + VAL #val & [ SUBJ < >, COMPS < >, SPR < >, SPEC < > ] ], + NON-LOCAL [ YNQ.LIST < *top* >, SLASH.LIST < >, QUE.LIST < > ] ] ].''' + +DECL_CL = '''decl-cl := head-only & declarative-clause & same-ynq-unary-phrase & + [ SYNSEM.LOCAL.CAT [ VAL #val, + MC bool ], + HEAD-DTR.SYNSEM [ LOCAL.CAT [ MC na, + VAL #val ], + NON-LOCAL.YNQ.LIST < > ]].''' + +MC_NA = '''mc-na-headed-phrase := headed-phrase & + [ SYNSEM.LOCAL.CAT.MC na, + HEAD-DTR.SYNSEM.LOCAL.CAT.MC na ].''' + +SAME_PERIPH = '''same-periph-unary-phrase := + unary-phrase & [ SYNSEM [ L-PERIPH #periph ], + ARGS < [ SYNSEM [ L-PERIPH #periph ] ] > ].''' + +SAME_YNQ = '''same-ynq-unary-phrase := + unary-phrase & [ SYNSEM [ NON-LOCAL.YNQ #ynq ], + ARGS < [ SYNSEM [ NON-LOCAL.YNQ #ynq ] ] > ].''' + +def customize_yesno_questions(mylang, ch, rules, lrules, hierarchies,roots): qinvverb = ch.get('q-inv-verb') - qpartposthead = ch.get('q-part-order') - qpartform = ch.get('q-part-orth') if ch.get('q-inv'): comment = \ @@ -37,19 +63,21 @@ def customize_yesno_questions(mylang, ch, rules, lrules, hierarchies): same-hc-light-lex-rule & same-posthead-lex-rule & constant-lex-rule & - [ SYNSEM [ LOCAL.CAT [ HEAD verb & [ INV + ], + [ INFLECTED #infl, + SYNSEM [ LOCAL.CAT [ HEAD verb & [ INV + ], VAL [ COMPS < #subj . #comps >, SUBJ < >, SPR #spr, SPEC #spec ], MC na ], LKEYS #lkeys ], - DTR.SYNSEM [ LOCAL.CAT [ HEAD verb, + DTR [ INFLECTED #infl, + SYNSEM [ LOCAL.CAT [ HEAD verb, VAL [ SUBJ < #subj >, COMPS #comps, SPR #spr, SPEC #spec ]], - LKEYS #lkeys ]].''' + LKEYS #lkeys ]]].''' mylang.add(typedef, comment, section='lexrules') lrules.add('inv-lr := subj-v-inv-lrule.') @@ -88,7 +116,7 @@ def customize_yesno_questions(mylang, ch, rules, lrules, hierarchies): # ERB 2010-04-15 If we have a finite/non-finite disctintion, # the FORM value needs to be copied up. FIXME: More generally, # any verby head features should be copied by this rule. - # See notes on FORM and qpart below. + # See notes on FORM and q-part below. if 'form' in hierarchies: mylang.add(''' @@ -107,49 +135,105 @@ def customize_yesno_questions(mylang, ch, rules, lrules, hierarchies): typedef = ''' int-cl := interrogative-clause & head-only & - [ SYNSEM.LOCAL.CAT [ HEAD.INV +, + [ SYNSEM [ MODIFIED hasmod, + LOCAL.CAT [ HEAD [ INV + ], VAL #val, MC + ], - HEAD-DTR.SYNSEM.LOCAL.CAT [ MC na, + NON-LOCAL non-local-none ], + HEAD-DTR.SYNSEM [ LOCAL.CAT [ MC na, VAL #val & [SUBJ < >, - COMPS < >]], + COMPS < >] ], + NON-LOCAL non-local-none ], C-CONT.HOOK.INDEX.SF ques ].''' mylang.add(typedef, comment, section='phrases') - + #OZ 2020-07-03 This is to suppress ambiguity in "Which house do the cats sleep in?" + if ch.get('has-aux') == 'yes': + mylang.add('int-cl := [ SYNSEM.LOCAL.CAT.HEAD.AUX + ].') rules.add('int := int-cl.') - # ERB 2006-10-05 Moving away from the modifier analysis of question particles - # which I think doesn't handle the facts well. These look more like complementizers - # to me. - if ch.get('q-part'): - comment = \ - 'We treat question particles as complementizers.\n' + \ - 'Here is the lexical type for complementizers.' - typedef = lexbase.COMPLEMENTIZER - mylang.add(typedef, comment, section='complex') - - comment = 'Subtype for question particles. Constrains SF to ques.' - typedef = ''' - qpart-lex-item := complementizer-lex-item & - [ SYNSEM.LOCAL [ CONT.HOOK.INDEX.SF ques, - CAT.VAL.COMPS.FIRST.LOCAL.CAT.MC + ] ].''' - mylang.add(typedef, comment, section='complex') - - # ERB 2010-04-15 If we have a finite/non-finite distinction in the - # language, the qpart should insist on attaching to finite clauses - # only. An alternative would be to have it raise the FORM value, but - # I don't see any evidence for that just now. Using presence of 'form' - # in hierarchies to detect this situation. This could break if someone - # named their own feature "form", but the name-space validation should - # catch that. This works because customize_form() is called before - # customize_yesno_questions. This is an example of cross-library - # interaction. - - if 'form' in hierarchies: - mylang.add('qpart-lex-item := [ SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.LOCAL.CAT.HEAD.FORM finite ].') - - - - + # Clause-initial and clause-final particles are analyzed as complementizers: + if not ch.get('q-part-order') == 'second': + comment = \ + 'We treat question particles as complementizers.\n' + \ + 'Here is the lexical type for complementizers.' + typedef = lexbase.COMPLEMENTIZER + mylang.add(typedef, comment, section='complex') + + comment = 'Subtype for question particles. Constrains SF to ques.' + typedef = ''' + qpart-lex-item := complementizer-lex-item & + [ SYNSEM.LOCAL [ CONT.HOOK.INDEX.SF ques ] ].''' + mylang.add(typedef, comment, section='complex') + supertype = 'qpart-lex-item' + + # ERB 2010-04-15 If we have a finite/non-finite distinction in the + # language, the qpart should insist on attaching to finite clauses + # only. An alternative would be to have it raise the FORM value, but + # I don't see any evidence for that just now. Using presence of 'form' + # in hierarchies to detect this situation. This could break if someone + # named their own feature "form", but the name-space validation should + # catch that. This works because customize_form() is called before + # customize_yesno_questions. This is an example of cross-library + # interaction. + if 'form' in hierarchies: + mylang.add('qpart-lex-item := [ SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST.LOCAL.CAT.HEAD.FORM finite ].') + + # OZ: Second position clitics are treated as modifiers: + elif ch.get('q-part-order') == 'second': + mylang.add('''basic-binary-phrase :+ [ SYNSEM [ L-PERIPH #periph, + NON-LOCAL.YNQ.APPEND < #ynq1, + #ynq2 > ], + ARGS < [ SYNSEM [ L-PERIPH #periph, + NON-LOCAL.YNQ #ynq1 ] ], + [ SYNSEM [ L-PERIPH -, + NON-LOCAL.YNQ #ynq2 ] ] > ].''',section='addenda') + mylang.add('basic-head-mod-phrase-simple :+ ' + '[ HEAD-DTR.SYNSEM.L-PERIPH #periph, ' + 'NON-HEAD-DTR.SYNSEM.LOCAL.CAT.HEAD.MOD < [ L-PERIPH #periph ] > ].',section='addenda') + mylang.add(SAME_PERIPH,section='phrases') + mylang.add(SAME_YNQ,section='phrases') + mylang.add('bare-np-phrase := same-periph-unary-phrase & same-ynq-unary-phrase & [ SYNSEM.LIGHT - ].') + comment = 'Second position question particles are treated as modifiers.' + typedef = lexbase.QUES_CLITIC + mylang.add(typedef, comment, section='complex') + supertype = 'ques-clitic-lex' + # Constrain all other words to be YNQ-empty: + mylang.add('non-ynq-word := word-or-lexrule & [ SYNSEM.NON-LOCAL.YNQ.LIST < > ].') + mylang.add('basic-zero-arg :+ non-ynq-word.',section='addenda') + mylang.add('basic-one-arg :+ non-ynq-word.',section='addenda') + mylang.add('basic-two-arg :+ non-ynq-word.',section='addenda') + mylang.add('basic-three-arg :+ non-ynq-word.',section='addenda') + mylang.add('intersective-mod-lex :+ non-ynq-word.',section='addenda') + roots.add('root := [ SYNSEM.NON-LOCAL.YNQ.LIST < > ].') + mylang.add(INT_CL,section='phrases') + mylang.add(DECL_CL,section='phrases') + rules.add('int-cl := int-cl.') + #rules.add('decl-cl := decl-cl.') + mylang.add(MC_NA,section='phrases') + #mylang.add('binary-headed-phrase :+ mc-na-headed-phrase.',section='addenda') + + # Add subtypes for each question particle. + for qpart in ch.get('q-particle'): + typename = qpart.full_key + '-lex' + typedef = typename + ' := ' + supertype + '.' + mylang.add(typedef,section='complex') + if qpart['main'] == 'on' and qpart['embed'] != 'on': + mylang.add(typename + ' := [ SYNSEM.LOCAL.CAT [ MC #mc,' + 'VAL.COMPS.FIRST.LOCAL.CAT.MC #mc & + ] ].') + elif qpart['embed'] == 'on' and qpart['main'] != 'on': + mylang.add(typename + ' := [ SYNSEM.LOCAL.CAT [ MC #mc ' + 'VAL.COMPS.FIRST.LOCAL.CAT.MC #mc & - ] ].') + if qpart['wh'] == 'imp': + if ch.get('q-part-order') != 'second': + mylang.add(typename + ':= [ SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST ' + '[ LOCAL.CAT.WH or-and-minus ] ].') + else: + mylang.add(typename + ':= [ SYNSEM.LOCAL.CAT.HEAD.MOD.FIRST ' + '[ LOCAL.CAT.WH or-and-minus ] ].') + + elif qpart['wh'] == 'oblig': + if ch.get('q-part-order') != 'second': + mylang.add(typename + ':= [ SYNSEM.LOCAL.CAT.VAL.COMPS.FIRST ' + '[ LOCAL.CAT.WH or-and-plus ] ].') \ No newline at end of file diff --git a/gmcs/validate.py b/gmcs/validate.py index 33c980519..1afdd79ea 100755 --- a/gmcs/validate.py +++ b/gmcs/validate.py @@ -9,6 +9,7 @@ import os from gmcs import tdl +from gmcs import constants from gmcs.choices import ChoicesFile from gmcs.utils import get_name @@ -147,6 +148,7 @@ def add_message(self, text): 'basic-copula-verb-lex', 'adj-comp-copula-verb-lex', 'adj_incorporation-lex-rule', + 'wh-determiner-lex', ) # regex patterns for sets of names that are not available for @@ -1001,20 +1003,33 @@ def validate_coordination(ch, vr): def validate_yesno_questions(ch, vr): qinvverb = ch.get('q-inv-verb') qpartorder = ch.get('q-part-order') - qpartorth = ch.get('q-part-orth') - qinfltype = ch.get('q-infl-type') + #qpartorth = ch.get('q-part-orth') + #qinfltype = ch.get('q-infl-type') if ch.get('q-part'): + optionality_validation = False if not qpartorder: mess = 'If you chose the question particle strategy ' + \ 'for yes-no questions, you must specify ' + \ 'where the question particle appears.' vr.err('q-part-order', mess) - if not qpartorth: - mess = 'If you chose the question particle strategy ' + \ - 'for yes-no questions, you must specify ' + \ - 'the form of the question particle.' - vr.err('q-part-orth', mess) + for qpart in ch.get('q-particle'): + if not qpart['orth']: + mess = 'If you chose the question particle strategy ' + \ + 'for yes-no questions, you must specify ' + \ + 'the form of the question particle.' + vr.err('q-particle', mess) + if ch.get('q-part-allopt') == 'on': + if qpart['wh'] == 'imp' or qpart['wh'] == 'oblig': + optionality_validation = True + if optionality_validation: + mess = 'Either all particles are optional or each particle can be obligatory ' \ + 'or impossible; choose one or the other.' + vr.err ('q-part-allopt',mess) + + elif ch.get('q-part-all-opt') or len(ch.get('q-particle')) != 0 or qpartorder: + mess = 'You did not check the particle checkbox but made other choices about particles.' + vr.err('q-part-allopt', mess) if ch.get('q-inv'): # if qinvverb != 'aux' and qinvverb != 'main' and qinvverb != 'main-aux': @@ -1468,7 +1483,7 @@ def validate_clausalmods(ch, vr): mess = 'You must select a position for the subordinator.' vr.err(cms.full_key + '_subposition', mess) if not cms.get('subordinator-type'): - mess = 'You must makes a selection for whether the subordinator is an adverb or head.' + mess = 'You must make a selection for whether the subordinator is an adverb or head.' vr.err(cms.full_key + '_subordinator-type', mess) if cms.get('subordinator-type') == 'adverb': if not cms.get('adverb-attach'): @@ -1517,11 +1532,11 @@ def validate_clausalmods(ch, vr): if nominalized == True: mess = 'If multiple nominalization strategies are allowed in the grammar,' +\ ' and clausal modifiers require nominalization, the produced grammar' +\ - ' will allow any nominalinalization strategy for the clausal modifier strategy.' + ' will allow any nominalization strategy for the clausal modifier strategy.' vr.warn(feat.full_key + '_name', mess) - if cms.get('subordinaotor-type') == 'adverb': - mess = 'Nominalization is not supported of the adverb analysis.' - vr.err(cms.full_key + '_subordinator-type', mess) + if cms.get('subordinator-type') == 'adverb': + mess = 'Nominalization is not supported for the adverb analysis.' + vr.err(feat.full_key + '_name', mess) for feat in cms.get('feat'): if feat.get('name') == 'mood' or feat.get('name') == 'aspect': mess = 'Aspect and mood are not present on nominal projections,' +\ @@ -1762,6 +1777,93 @@ def validate_adnominal_possession(ch, vr): # 'and the possessor is not supported.' # vr.err(pron.full_key+'_possessum-agr',mess) +############################################################# +########### Constituent questions validation ################ +############################################################# + +def validate_wh_ques(ch, vr): + from gmcs.constants import ON,IN_SITU,MTRX_FRONT, WH_QUE_PTCL, \ + WH_INFL, MULTI, ALL_OBLIG, NO_MULTI, PIED, \ + PIED_ADP, OBL_PIP_NOUN, OBL_PIP_ADP, \ + MTRX_FR_OPT, SG_OBLIG + wh_q_strat = None + if ch.get(MTRX_FRONT): + wh_q_strat = MTRX_FRONT + elif ch.get(WH_QUE_PTCL) == ON: + wh_q_strat = WH_QUE_PTCL + elif ch.get(WH_INFL) == ON: + wh_q_strat = WH_INFL + elif ch.get('wh-q-inter-verbs') == ON: + wh_q_strat = 'wh-q-inter-verbs' + found_ques_word = True if ch.get('qverb') else False + if not found_ques_word: + for pos in ['noun','det','verb','adv']: + for type in ch.get(pos): + if type.get('inter') == ON: + found_ques_word = True + break + if wh_q_strat and not found_ques_word: + mess = 'Please specify question words on the Lexicon page' + vr.err(wh_q_strat,mess) + + #Pied piping only makes sense when there are determiners: + if (ch.get(PIED) == ON or ch.get(PIED_ADP) == ON) and not len(ch.get('det', [])) > 0: + mess = 'Pied piping only makes sense when there are determiners; specify a wh-determiner on the Lexicon page.' + vr.err(PIED, mess) + # Pied piping only makes sense when some fronting options were chosen + if (ch.get(PIED) == ON or ch.get(PIED_ADP) == ON) and \ + (ch.get(MTRX_FRONT)== None or ch.get(MTRX_FRONT)== IN_SITU): + mess = 'Pied piping only makes sense when fronting is possible; choose a fronting strategy.' + vr.err(PIED,mess) + # Pied piping obligatoriness only makes sense when there is pied piping + if ch.get(OBL_PIP_NOUN) == ON and not ch.get(PIED): + mess = 'You did not check pied piping itself but said it is obligatory' + vr.err(PIED, mess) + if ch.get(OBL_PIP_ADP) == ON and not ch.get(PIED_ADP): + mess = 'You did not check pied piping itself but said it is obligatory' + vr.err(PIED_ADP, mess) + + if ch.get(NO_MULTI) == ON: + if (ch.get(MTRX_FRONT) == MULTI + or ch.get(MTRX_FR_OPT) == ALL_OBLIG): + mess = 'You have made choices regarding multiple question fronting, ' \ + 'so you cannot say multiple questions are not allowed in one clause.' + vr.err(NO_MULTI,mess) + + if ch.get(MTRX_FRONT) == IN_SITU and ch.get(MTRX_FR_OPT) in [ALL_OBLIG,SG_OBLIG]: + mess = 'In-situ position and obligatory fronting are not compatible choices.' + vr.err(MTRX_FR_OPT,mess) + + if ch.get(MTRX_FR_OPT) != 'none-oblig' and ch.get('embed-insitu') == ON: + mess = 'This choice is only valid if fronting is optional.' + vr.err('embed-insitu', mess) + + if ch.get('wh-inv-matrix') == ON and not ch.get('q-inv') == ON: + mess = 'You did not check inversion on the Yes/No page.' + vr.err('wh-inv-matrix', mess) + + if ch.get('wh-inv-embed') == ON and not ch.get('wh-inv-matrix') == ON: + mess = 'To get inversion in embedded clauses, you must also have it in main clauses.' + vr.err('wh-inv-embed', mess) + + if ch.get('wh-inv-notsubj') == ON and not ch.get('wh-inv-matrix') == ON: + mess = 'This choice is only valid if inversion in matrix clauses is chosen.' + vr.err('wh-inv-notsubj', mess) + + if ch.get('focus-marking') == ON and not len(ch.get('c-focus-marker')) > 0: + mess = 'You must specify a contrastive focus marker for this choice to work. You do not need' \ + 'any other Information Structure choices.' + vr.err('focus-marking', mess) + + if ch.get('wh-q-inter-verbs') == ON and not len(ch.get('qverb')) > 0: + mess = 'You must specify at least one lexical type for question verbs on the Lexicon page.' + vr.err('wh-q-inter-verbs', mess) + + if ch.get('wh-q-inter-verbs') != ON and len(ch.get('qverb')) > 0: + mess = 'You must check this box if you specified any question verbs on the Lexicon page.' + vr.err('wh-q-inter-verbs', mess) + + def validate(ch, extra = False): """ @@ -1794,6 +1896,7 @@ def validate(ch, extra = False): validate_features(ch, vr) validate_hierarchy(ch, vr) validate_arg_opt(ch, vr) + validate_wh_ques(ch,vr) if extra: validate_extra_constraints(ch, vr) diff --git a/matrix-core/matrix.tdl b/matrix-core/matrix.tdl index 0cf6de8c4..6952df69c 100644 --- a/matrix-core/matrix.tdl +++ b/matrix-core/matrix.tdl @@ -148,8 +148,12 @@ lex-or-phrase-synsem := synsem-min & ; SSH (2013-03-05) L/R-PERIPH are newly added in order to constrain ; clause-initial/final focus. +; OZ 2020-01-28 Adding L-QUE feature to mark whether or not there +; is a wh-word at the left periphery. + synsem := synsem-min & - [ L-PERIPH luk, + [ L-QUE bool, + L-PERIPH luk, R-PERIPH luk ]. expressed-synsem := synsem. @@ -225,15 +229,22 @@ intersective-mod := local. non-local-min := avm. +; OZ 2020-09-01 Adding YNQ feature, for polar questions formed with second position clitics. +; Ivan li idet? +; Ivan Q arrive +; "Is it Ivan that is arriving?" [rus] +; This feature might actually better be moved to the customization system in the future. non-local := non-local-min & [ SLASH append-list, QUE append-list, - REL append-list ]. + REL append-list, + YNQ append-list ]. non-local-none := non-local & [ SLASH.LIST < >, QUE.LIST < >, - REL.LIST < > ]. + REL.LIST < >, + YNQ.LIST < > ]. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; CAT values @@ -254,13 +265,35 @@ cat-min := avm. ; SSH 2012-02-16 MKG stands for "MarKinG" which represents lexical ; markings for information structure. +; OZ 2020-03-30 Adding WH feature to model embedded questions, including embedding by +; Mandarin-like languages where a particle +; occurs with polar but not with constituent questions. +; The logical-or value of the feature come into play when we want to rule out +; sentences like "I ask Kim arrived." "Ask" should insist not only that its complement +; is SF ques (this alone won't work as by default clauses are prop-or-ques), but +; also that it is WH.BOOL +. A constituent question will be WH.BOOL + if the head-complement +; rule's mother's WH is the OR of its daughters. + +or-and := avm & +[ LOGICAL-OR logical-or, + LOGICAL-AND logical-and ]. + +or-and-minus := or-and & +[ LOGICAL-OR.BOOL -, + LOGICAL-AND.BOOL - ]. + +or-and-plus := or-and & +[ LOGICAL-OR.BOOL +, + LOGICAL-AND.BOOL + ]. + cat := cat-min & [ HEAD head-min, VAL valence-min, MC luk, MKG mkg, HC-LIGHT luk, - POSTHEAD bool ]. + POSTHEAD bool, + WH or-and ]. cat-sat := cat & [ VAL [ SPR olist, @@ -958,9 +991,113 @@ ocons := olist & cons & onull := olist & null. +; A list that is either empty or contains canonical-sysnems, +; so, no gaps. This is to rule out ambiguity when a head-adjunct +; phrase would attach both before and after complement/subject extraction. + +clist := list. + +oclist := clist & olist. + +ccons := clist & cons & + [ FIRST canonical-synsem, + REST clist ]. + +; OZ 2020-01-30 The below type isn't possible +; but possibly isn't needed either. + +;occons := ccons & ocons. + +cnull := clist & null. + +ocnull := cnull & onull. + ; The LinGO grammar also makes use of a prolist -- or list ; of synsems of type pro-ss. +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; Logical operations + +bool-wrapper := avm & + [ BOOL bool ]. + +logical-and := bool-wrapper & + [ BOOL #result, + AND list-of-bools-with-and & [ AND-RESULT #result ] ]. + +logical-or := bool-wrapper & + [ BOOL #result, + OR list-of-bools-with-or & [ OR-RESULT #result ] ]. + +logical-not := bool-wrapper & + [ BOOL #result, + NOT bool-wrapper & [ BOOL bool-with-not & [ RESULT-BOOL #result ] ] ]. + +list-of-bools-with-and := list & + [ AND-RESULT bool ]. + +cons-of-bools-with-and := list-of-bools-with-and & cons & + [ FIRST.BOOL bool-with-and & [ OTHER-BOOL #other, + RESULT-BOOL #result ], + REST list-of-bools-with-and & [ AND-RESULT #other ], + AND-RESULT #result ]. + +null-of-bools-with-and := list-of-bools-with-and & null & + [ AND-RESULT + ]. + +list-of-bools-with-or := list & + [ OR-RESULT bool ]. + +cons-of-bools-with-or := list-of-bools-with-or & cons & + [ FIRST.BOOL bool-with-or & [ OTHER-BOOL #other, + RESULT-BOOL #result ], + REST list-of-bools-with-or & [ OR-RESULT #other ], + OR-RESULT #result ]. + +null-of-bools-with-or := list-of-bools-with-or & null & + [ OR-RESULT - ]. + +bool-with-operation := bool & + [ RESULT-BOOL bool ]. + +bool-with-not := bool-with-operation. + ++-with-not := bool-with-not & + & + [ RESULT-BOOL - ]. + +--with-not := bool-with-not & - & + [ RESULT-BOOL + ]. + +bool-with-binary-operation := bool-with-operation & + [ OTHER-BOOL bool ]. + +bool-with-and := bool-with-binary-operation. + ++-with-and := bool-with-and & + & + [ OTHER-BOOL #result, + RESULT-BOOL #result ]. + +--with-and := bool-with-and & - & + [ RESULT-BOOL - ]. + +bool-with-or := bool-with-binary-operation. + ++-with-or := bool-with-or & + & + [ RESULT-BOOL + ]. + +--with-or := bool-with-or & - & + [ OTHER-BOOL #result, + RESULT-BOOL #result ]. + +; Sample usage, written by Guy Emerson: + +;my-and := *top* & +; [ TEST1 [ AND < [ BOOL + ], [ BOOL + ], [ BOOL + ], [ BOOL + ] > ], +; TEST2 [ AND < [ BOOL + ], [ BOOL - ] > ], +; TEST3 [ OR < [ BOOL + ], [ BOOL - ] > ], +; TEST4 [ OR < [ BOOL - ], [ BOOL - ] > ], +; TEST5 [ NOT [ BOOL - ] ], +; TEST6 [ OR < [ BOOL - ], [ NOT [ BOOL - ] ] > ] ]. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Lexical rules @@ -975,15 +1112,18 @@ onull := olist & null. ; SSH 2012-03-03 ICONS is newly added in lex-rule. +; OZ 2020-05-19 Adding WH feature for handling embedded constituent questions. lex-rule := phrase-or-lexrule & word-or-lexrule & [ NEEDS-AFFIX bool, - SYNSEM.LOCAL.CONT [ RELS.APPEND < #r1, #r2 >, + SYNSEM.LOCAL [ CAT.WH #wh, + CONT [ RELS.APPEND < #r1, #r2 >, HCONS.APPEND < #h1, #h2 >, - ICONS.APPEND < #i1, #i2 > ], + ICONS.APPEND < #i1, #i2 > ] ], DTR #dtr & word-or-lexrule & - [ SYNSEM.LOCAL.CONT [ RELS #r1, + [ SYNSEM.LOCAL [ CAT.WH #wh, + CONT [ RELS #r1, HCONS #h1, - ICONS #i1 ], + ICONS #i1 ] ], ALTS #alts ], C-CONT [ RELS #r2, HCONS #h2, @@ -1625,8 +1765,10 @@ head-compositional := headed-phrase & ; ERB 2007-01-21 COMPS olist is no longer a fair constraint on ; clauses, under current analysis. -clause := phrasal & - [ SYNSEM.NON-LOCAL.QUE.LIST < > ]. +; OZ 2020-01-25 Removing the QUE constraint to allow in-situ questions. + +clause := phrasal. ; & +; [ SYNSEM.NON-LOCAL.QUE.LIST < > ]. ; The following subtypes of clause will need more constraints, @@ -1671,13 +1813,13 @@ clause := phrasal & ; SSH 2012-05-07 ICONS ; SSH 2014-11-26 CLAUSE -> IARG1 +; OZ 2019-06-13 Removing QUE constraint to allow multiple wh-questions. basic-non-rel-clause := clause & head-compositional & [ SYNSEM.NON-LOCAL.REL.LIST < >, HEAD-DTR.SYNSEM [ LOCAL.CONT.HOOK [ INDEX #index, ICONS-KEY.IARG1 #index, CLAUSE-KEY #index ], - NON-LOCAL [ REL.LIST < >, - QUE.LIST < > ] ], + NON-LOCAL.REL.LIST < > ], C-CONT [ RELS.LIST < >, HCONS.LIST < > ] ]. @@ -1744,20 +1886,21 @@ imperative-clause := basic-non-rel-clause & ; Thus basic-filler-phrase does not inherit form headed-phrase. ; We provide a subtype, basic-head-filler-phrase, below, which does. +; OZ 2020-01-25 Relaxing QUE constraint +; to allow multiple wh-questions. + basic-filler-phrase := binary-phrase & phrasal & - [ SYNSEM [ LOCAL.CAT.VAL [ COMPS < >, - SPR < > ], - NON-LOCAL.SLASH.LIST < > ], - ARGS < [ SYNSEM [ LOCAL #slash & local & + [ SYNSEM [ LOCAL.CAT.VAL [ COMPS < >, SPEC < > ] ], + ARGS < [ SYNSEM [ LOCAL local & [ CAT.VAL [ SUBJ olist, COMPS olist, SPR olist ], CTXT.ACTIVATED + ], - NON-LOCAL.SLASH.LIST < > ] ], + NON-LOCAL [ SLASH append-list, QUE append-list, REL.LIST < >, YNQ append-list ] ] ], [ SYNSEM [ LOCAL.CAT [ VAL.COMPS olist ], - NON-LOCAL [ SLASH [ LIST < #slash > ], + NON-LOCAL [ SLASH append-list, REL.LIST < >, - QUE.LIST < > ] ] ] > ]. + QUE append-list, YNQ append-list ] ] ] > ]. ; ASF 2011-10-05 changed supertype 'headed-phrase' to more specific 'head-compostional' ; in order to make sure matrix.tdl provides the right semantics. @@ -1770,7 +1913,8 @@ nc-filler-phrase := binary-phrase & phrasal & SPR < > ], NON-LOCAL.SLASH.LIST < > ], ARGS < [ SYNSEM [ LOCAL.CAT [ VAL.COMPS olist ], - NON-LOCAL [ SLASH [ LIST < #slash > ], + NON-LOCAL [ SLASH append-list & + [ LIST < #slash > ], QUE.LIST < >, REL.LIST < > ] ] ], [ SYNSEM [ LOCAL #slash & local & @@ -1819,22 +1963,30 @@ nc-head-filler-phrase := nc-filler-phrase & head-compositional. ; JDC 2012-06-02 adding [HC-LIGHT -] to basic-head-* phrases ; (with the exception of except head-comps) +; OZ 2020-01-25 removing [ QUE 0-alist ] from the non-head daughter to allow in-situ questions. + +; OZ 2020-05-19 Adding WH feature for handling embedded constituent questions. + basic-head-subj-phrase := head-valence-phrase & head-compositional & basic-binary-headed-phrase & [ SYNSEM phr-synsem & - [ LOCAL.CAT [ HC-LIGHT -, - VAL [ SUBJ < >, + [ LOCAL.CAT [ WH [ LOGICAL-OR.OR < #or1, #or2 >, + LOGICAL-AND.AND < #and1, #and2 >], + HC-LIGHT -, + VAL [ SPEC #spec, + SUBJ < >, COMPS #comps, SPR #spr ] ] ], - HEAD-DTR.SYNSEM.LOCAL.CAT.VAL [ SUBJ < #synsem >, + HEAD-DTR.SYNSEM.LOCAL.CAT [ WH [ LOGICAL-OR #or1, LOGICAL-AND #and1 ], + VAL [ SPEC #spec, SUBJ < #synsem >, COMPS #comps, - SPR #spr ], + SPR #spr ] ], NON-HEAD-DTR.SYNSEM #synsem & canonical-synsem & - [ LOCAL [ CAT [ VAL [ SUBJ olist, + [ LOCAL [ CAT [ WH [ LOGICAL-OR #or2, LOGICAL-AND #and2 ], + VAL [ SUBJ olist, COMPS olist, SPR olist ] ] ], - NON-LOCAL [ SLASH.LIST < >, - QUE.LIST < >, + NON-LOCAL [ SLASH append-list, REL.LIST < > ] ], C-CONT [ RELS.LIST < >, HCONS.LIST < >, ICONS.LIST < > ] ]. @@ -1874,10 +2026,13 @@ basic-head-subj-nmc-phrase := head-valence-phrase & basic-binary-headed-phrase & ; ERB 2007-01-21 Removing non-clause, which doesn't seem to be doing ; any work any more. +; OZ 2020-05-19 Adding WH feature for handling embedded constituent questions. + basic-head-spec-phrase-super := head-valence-phrase & phrasal & binary-headed-phrase & [ INFLECTED infl-satisfied, - SYNSEM [ LOCAL.CAT [ VAL [ SUBJ #subj, + SYNSEM [ LOCAL.CAT [ WH [ LOGICAL-OR.OR < #or1, #or2 >, LOGICAL-AND.AND < #and1, #and2 > ], + VAL [ SUBJ #subj, COMPS #spcomps, SPR #spr, SPEC #spec ], @@ -1885,7 +2040,8 @@ basic-head-spec-phrase-super := head-valence-phrase & phrasal & HC-LIGHT - ], MODIFIED #modif ], HEAD-DTR [ INFLECTED infl-satisfied, - SYNSEM [ LOCAL [ CAT [ HEAD #head, + SYNSEM [ LOCAL [ CAT [ WH [ LOGICAL-OR #or1, LOGICAL-AND #and1 ], + HEAD #head, VAL [ SUBJ #subj, COMPS olist & #comps, SPR < #synsem & @@ -1895,7 +2051,7 @@ basic-head-spec-phrase-super := head-valence-phrase & phrasal & CONT.HOOK #hdhook ], MODIFIED #hmodif ] ], NON-HEAD-DTR.SYNSEM #synsem & - [ LOCAL [ CAT [ VAL [ SPEC < [ LOCAL [ CAT [ HEAD #head, + [ LOCAL [ CAT [ WH [ LOGICAL-OR #or2, LOGICAL-AND #and2 ], VAL [ SPEC < [ LOCAL [ CAT [ HEAD #head, VAL.COMPS #comps ], CONT.HOOK #hdhook ], MODIFIED #hmodif ] >, @@ -1918,21 +2074,26 @@ basic-head-spec-phrase := basic-head-spec-phrase-super & ; that does not pass up the MC feature..token id between mother and head ; daughter removed +; OZ 2020-05-19 Adding WH feature for handling embedded constituent questions. + basic-head-comp-phrase := head-valence-phrase & head-compositional & binary-headed-phrase & [ SYNSEM phr-synsem-min & - [ LOCAL.CAT [ VAL [ SUBJ #subj, + [ LOCAL.CAT [ WH [ LOGICAL-OR.OR < #or1, #or2 >, + LOGICAL-AND.AND < #and1, #and2 >], + VAL [ SUBJ #subj, SPEC #spec, SPR #spr ], POSTHEAD #ph, HC-LIGHT #light ], LIGHT #light ], - HEAD-DTR.SYNSEM [ LOCAL.CAT [ VAL [ SUBJ #subj, + HEAD-DTR.SYNSEM [ LOCAL.CAT [ WH [ LOGICAL-OR #or1, LOGICAL-AND #and1 ], + VAL [ SUBJ #subj, SPEC #spec, SPR #spr ], HC-LIGHT #light, POSTHEAD #ph ]], - NON-HEAD-DTR.SYNSEM canonical-synsem, + NON-HEAD-DTR.SYNSEM canonical-synsem & [ LOCAL.CAT.WH [ LOGICAL-OR #or2, LOGICAL-AND #and2 ] ], C-CONT [ RELS.LIST < >, HCONS.LIST < >, ICONS.LIST < > ] ]. @@ -1952,7 +2113,9 @@ basic-head-2nd-comp-phrase := basic-head-comp-phrase & REST < #synsem . #othercomps > ], NON-HEAD-DTR.SYNSEM #synsem ]. - +; OZ 2019-10-03 This looks awfully like the subject extraction rule, +; which by the way used to have an MC - constraint. Could they be +; merged? Or a supertype created at least? ; SSH 2013-04-08 non-canonical and non-matrix clausal head-comp-phrase ; This type cannot be a root node by itself ([MC -]). ; This typed phrase is supposed to be combined with a filler-phrase. @@ -2167,18 +2330,21 @@ marker-final-phrase := basic-binary-marker-phrase & ; SSH 2012-03-03 ICONS ; SSH 2013-02-19 deleting ICONS ? - ; EKN 2018-01-30 +; OZ 2020-05-19 Adding WH feature for handling embedded constituent questions. + basic-bare-np-phrase := head-only & head-valence-phrase & - [ SYNSEM.LOCAL.CAT.VAL [ SPR < >, + [ SYNSEM [ LOCAL.CAT [ WH #wh, + VAL [ SPR < >, SUBJ < >, - COMPS < > ], - HEAD-DTR.SYNSEM.LOCAL [ CAT [ HEAD noun, + COMPS < >, SPEC #spec ] ] ], + HEAD-DTR.SYNSEM.LOCAL [ CAT [ WH #wh, + HEAD noun, VAL [ SPR < unexpressed & [ LOCAL.CAT.HEAD +nd, OPT + ] >, SUBJ < >, - COMPS < > ] ], + COMPS < >, SPEC #spec ] ], CONT.HOOK [ INDEX #index, LTOP #larg ] ], C-CONT [ RELS.LIST < quant-relation & @@ -2192,18 +2358,30 @@ basic-bare-np-phrase := head-only & head-valence-phrase & ; Unary rules for extraction +; OZ 2020-05-19 These unary rules should normally copy up their +; WH value, like the bare NP rule. +; This rules out sentences like "Who did you ask arrived?", +; which is probably for the better. With underspecified WH here, +; such sentences will be admitted resulting in an MRS where the main verb +; is questioned, which is probably wrong semantics. In languages +; where such sentences are possible, perhaps some other mechanism +; is at place, not LDD/filler-gap. + basic-extracted-arg-phrase := head-valence-phrase & head-only & - [ SYNSEM.LIGHT - ]. + [ SYNSEM [ LIGHT -, LOCAL.CAT.WH #wh ], + HEAD-DTR.SYNSEM.LOCAL.CAT.WH #wh ]. basic-extracted-comp-phrase := basic-extracted-arg-phrase & head-compositional & [ SYNSEM canonical-synsem & - [ LOCAL.CAT [ VAL [ SUBJ #subj, + [ LOCAL.CAT [ VAL [ SPEC #spec, + SUBJ #subj, SPR #spr, COMPS #comps ], MC #mc ] ], HEAD-DTR [ SYNSEM - [ LOCAL.CAT [ VAL [ SUBJ #subj, + [ LOCAL.CAT [ VAL [ SPEC #spec, + SUBJ #subj, SPR #spr, COMPS < gap . #comps > ], MC #mc ] ] ], @@ -2215,17 +2393,20 @@ basic-extracted-comp-phrase := basic-extracted-arg-phrase & ; to analysis of subject extraction for English. ; ASF 2011-10-05 Added supertype 'head-compositional' to basic-extracted-subj-phrase ; in order to make sure matrix.tdl provides the right semantics for extracted subjects. +; OZ 2020-02-20 Removing COMPS constraints from mother and head daughter to accommodate +; extraction from VSO languages (possibly required in other situations, too). basic-extracted-subj-phrase := basic-extracted-arg-phrase & head-compositional & [ SYNSEM.LOCAL.CAT.VAL [ SUBJ < >, - SPR < >, - COMPS < > ], + COMPS #comps, + SPEC #spec, SPR #spr ], HEAD-DTR.SYNSEM [ LOCAL.CAT [ VAL [ SUBJ < gap & - [ LOCAL #local & local & + [ LOCAL local & [ CONT.HOOK.INDEX ref-ind ] ] >, - COMPS olist ], + SPR #spr, COMPS #comps, + SPEC #spec], MC na ], - NON-LOCAL.SLASH.LIST < #local > ], + NON-LOCAL.SLASH append-list ], C-CONT [ RELS.LIST < >, HCONS.LIST < >, ICONS.LIST < > ] ]. @@ -2235,60 +2416,121 @@ basic-extracted-subj-phrase := basic-extracted-arg-phrase & head-compositional & ; non-empty comps lists. The head-mod-phrase will pass up ; the COMPS requirement, whatever it was. -head-mod-phrase := head-nexus-phrase & +; OZ 2020-01-25 Changing the parent from head-nexus-phrase to head-nexus-rel +; phrase, to allow appending QUE values, for multiple questions. + +head-mod-phrase := head-nexus-rel-phrase & [ SYNSEM [ LOCAL.CAT.VAL [ SUBJ #subj, SPR #spr, - COMPS #comps ], + COMPS #comps, SPEC #spec ], MODIFIED hasmod ], HEAD-DTR.SYNSEM [ LOCAL.CAT.VAL [ SUBJ #subj, SPR #spr, - COMPS #comps ], + COMPS #comps, SPEC #spec ], NON-LOCAL [ REL.LIST < > ] ] ]. basic-extracted-adj-phrase := head-mod-phrase & head-only & phrasal. -extracted-adj-phrase := basic-extracted-adj-phrase & - [ SYNSEM [ LOCAL.CAT [ POSTHEAD #ph, +extracted-adj-phrase-simple := basic-extracted-adj-phrase & + [ SYNSEM [ LOCAL.CAT [ WH #wh, + VAL.SPEC < >, + POSTHEAD #ph, MC #mc ], - NON-LOCAL.SLASH.LIST - < [ CAT [ HEAD [ MOD < [ LOCAL intersective-mod & - [ CAT [ HEAD #head, - VAL #val, - POSTHEAD #ph, - MC #mc ], - CONT.HOOK #hook, - CTXT #ctxt ] ] > ], - VAL [ SUBJ olist, - COMPS olist, - SPR olist ] ] ] > ], + NON-LOCAL [ QUE #que, + YNQ #ynq ] ], HEAD-DTR.SYNSEM canonical-synsem & [ LOCAL local & - [ CAT [ HEAD #head, - VAL #val & [ SUBJ < synsem-min & - [ NON-LOCAL.SLASH.LIST < > ] > ], - POSTHEAD #ph, - MC #mc ], - CONT.HOOK #hook, - CTXT #ctxt ], - NON-LOCAL.SLASH.LIST < >, - MODIFIED notmod ], + [ CAT [ HEAD verb, + WH #wh, + VAL [ SUBJ < synsem-min >, SPEC < > ], + POSTHEAD #ph, + MC #mc ], + CONT.HOOK #hook ], + MODIFIED notmod, + NON-LOCAL [ QUE #que, SLASH append-list, YNQ #ynq ] ], C-CONT [ HOOK #hook, + RELS.LIST < >, HCONS.LIST < >, ICONS.LIST < > ] ]. +extracted-adj-phrase := extracted-adj-phrase-simple & + [ SYNSEM [ NON-LOCAL [ SLASH append-list-with-placeholder & + [ PLACEHOLDER.LIST < [ CAT + [ HEAD +rp & + [ MOD < [ LOCAL intersective-mod & + [ CAT [ HEAD #head, + POSTHEAD #ph, + MC #mc ], + CONT.HOOK #hook, + CTXT #ctxt ] ] > ], + VAL [ SPEC < >, + SUBJ olist, + COMPS olist, + SPR olist ] ] ] > ] ] ], + HEAD-DTR.SYNSEM canonical-synsem & + [ LOCAL local & + [ CAT [ HEAD #head, + POSTHEAD #ph, + MC #mc ], + CONT.HOOK #hook, + CTXT #ctxt ], + MODIFIED notmod ] ]. + +extracted-adj-only-phrase := extracted-adj-phrase-simple & + [ SYNSEM [ NON-LOCAL [ SLASH append-list & + [ LIST < [ CAT + [ HEAD +rp & + [ MOD < [ LOCAL intersective-mod & + [ CAT [ HEAD #head, + POSTHEAD #ph, + MC #mc ], + CONT.HOOK #hook, + CTXT #ctxt ] ] > ], + VAL [ SPEC < >, + SUBJ olist, + COMPS olist, + SPR olist ] ] ] > ] ] ], + HEAD-DTR.SYNSEM canonical-synsem & + [ LOCAL local & + [ CAT [ HEAD #head, + POSTHEAD #ph, + MC #mc ], + CONT.HOOK #hook, + CTXT #ctxt ], + MODIFIED notmod, + NON-LOCAL.SLASH 0-alist ] ]. + +; OZ 2020-07-01 This requires that any arguments are extracted prior to the adjunct. +extracted-adj-last-phrase := extracted-adj-phrase & + [ SYNSEM [ NON-LOCAL.SLASH append-list & + [ APPEND < #slash, #placeholder >, + PLACEHOLDER #placeholder ] ], + HEAD-DTR.SYNSEM.NON-LOCAL.SLASH #slash & [ LIST cons ] ]. + +; OZ 2020-07-01 This requires that any arguments are extracted after the adjunct. +extracted-adj-first-phrase := extracted-adj-phrase & + [ SYNSEM [ NON-LOCAL.SLASH append-list & + [ APPEND < #placeholder, #slash >, + PLACEHOLDER #placeholder ] ], + HEAD-DTR.SYNSEM.NON-LOCAL.SLASH #slash ]. + + ; ERB 2004-05-10 Bug fix: non-head daughter's MOD..LIGHT value should ; be matched to head-daughters LIGHT value. ; ASF (2008-11-03) for the v2 analysis, the MC feature cannot be shared between ; mother and non-head-daughter, token-identity removed ; TJT 2015-01-31 Adding [MOD.OPT -] to NON-HEAD-DTR to keep predicative ; adjectives out of optional subject constructions +; OZ 2020-01-25 Adding QUE append to support multiple questions. basic-head-mod-phrase-simple := head-mod-phrase & binary-headed-phrase & - [ SYNSEM [ LOCAL.CAT [ MKG #mkg ], + [ SYNSEM [ LOCAL.CAT [ MKG #mkg, WH [ LOGICAL-OR.OR < #or1, #or2 >, + LOGICAL-AND.AND < #and1, #and2 >] ], NON-LOCAL [ SLASH.APPEND < #s1, #s2 >, - REL.LIST < > ] ], + REL 0-alist, QUE.APPEND < #q1, #q2 > ] ], HEAD-DTR.SYNSEM - [ LOCAL [ CAT [ HEAD #head, + [ LOCAL [ CAT [ WH [ LOGICAL-OR #or1, LOGICAL-AND #and1 ], + HEAD #head, VAL #val, POSTHEAD #ph, MC #hmc, @@ -2297,11 +2539,11 @@ basic-head-mod-phrase-simple := head-mod-phrase & binary-headed-phrase & CLAUSE-KEY #clause ], AGR #agr ], NON-LOCAL #nonloc & - [ SLASH #s2 ], + [ SLASH #s2, QUE #q2 ], LIGHT #light, MODIFIED #modif ], NON-HEAD-DTR.SYNSEM - [ LOCAL [ CAT [ HEAD [ MOD < [ LOCAL local & + [ LOCAL [ CAT [ WH [ LOGICAL-OR #or2, LOGICAL-AND #and2 ], HEAD [ MOD < [ LOCAL local & [ CAT [ HEAD #head, VAL #val, POSTHEAD #ph, @@ -2317,7 +2559,7 @@ basic-head-mod-phrase-simple := head-mod-phrase & binary-headed-phrase & MKG #mkg ], CONT.HOOK [ ICONS-KEY.IARG1 #clause, CLAUSE-KEY #clause ] ], - NON-LOCAL [ SLASH #s1 ] ], + NON-LOCAL [ SLASH #s1, QUE #q1 ] ], C-CONT [ RELS.LIST < >, ICONS.LIST < > ] ]. ;;;2011-11-07 removing head-mod-phrase-simple @@ -2349,8 +2591,7 @@ adj-head-phrase := basic-head-mod-phrase-simple & head-final & head-adj-phrase := basic-head-mod-phrase-simple & head-initial & phrasal & [ SYNSEM.MODIFIED rmod, NON-HEAD-DTR.SYNSEM [ LOCAL.CAT [ VAL.SPR olist, - POSTHEAD + ], - NON-LOCAL.QUE.LIST < > ] ]. + POSTHEAD + ] ] ]. ; We split head-adj-phrase and adj-head-phrase into two each, ; one for intersective modifiers and one for scopal modifiers, in order to @@ -2387,9 +2628,9 @@ adv-null := adv-list & onull. ; rules? isect-mod-phrase := basic-head-mod-phrase-simple & head-compositional & - [ HEAD-DTR.SYNSEM.LOCAL [ CAT.MKG #mkg, CONT [ HOOK.LTOP #hand ] ], + [ HEAD-DTR.SYNSEM.LOCAL [ CAT [ MKG #mkg, WH #wh ], CONT [ HOOK.LTOP #hand ] ], NON-HEAD-DTR.SYNSEM.LOCAL [ CAT [ VAL.SPR adv-list, - HEAD.MOD < [ LOCAL intersective-mod & [ CAT.MKG #mkg ] ] > ], + HEAD.MOD < [ LOCAL intersective-mod & [ CAT [ MKG #mkg, WH #wh ] ] ] > ], CONT.HOOK.LTOP #hand ], C-CONT [ HCONS.LIST < >, ICONS.LIST < > ] ]. @@ -2832,19 +3073,34 @@ clausal-first-arg-trans-lex-item := basic-two-arg & one-icons-lex-item & ; changing: added cat-sat (PASSES all reg tests) -clausal-second-arg-trans-lex-item := basic-two-arg & one-icons-lex-item & +; OZ 2020-08-25 It is unclear at the moment why this had ICONS. +; It was causing a meaningless (underspecified) ICONS link between the clause-embedding +; verb and the embedded event. If later on this becomes clearer, the below +; commented out type can be brought back. +clausal-second-arg-trans-lex-item := basic-two-arg & basic-icons-lex-item & [ ARG-ST < [ LOCAL [ CAT cat-sat, - CONT.HOOK [ INDEX ref-ind & #ind, - ICONS-KEY.IARG1 #clause ] ] ], - [ LOCAL.CONT.HOOK [ LTOP #larg, - INDEX #target ] ] >, - SYNSEM [ LOCAL.CONT [ HOOK.CLAUSE-KEY #clause, - HCONS.LIST < qeq & [ HARG #harg, - LARG #larg ] >, - ICONS.LIST < [ IARG1 #clause, IARG2 #target ] > ], + CONT.HOOK [ INDEX ref-ind & #ind ] ] ], + [ LOCAL.CONT.HOOK.LTOP #larg ] >, + SYNSEM [ LOCAL.CONT [ HCONS.LIST < qeq & [ HARG #harg, + LARG #larg ] > ], LKEYS.KEYREL [ ARG1 #ind, ARG2 #harg ] ] ]. +; OZ 2020-08-25 See comment above. +;clausal-second-arg-trans-lex-item := basic-two-arg & one-icons-lex-item & +; [ ARG-ST < [ LOCAL [ CAT cat-sat, +; CONT.HOOK [ INDEX ref-ind & #ind, +; ICONS-KEY.IARG1 #clause ] ] ], +; [ LOCAL.CONT.HOOK [ LTOP #larg, +; INDEX #target ] ] >, +; SYNSEM [ LOCAL.CONT [ HOOK.CLAUSE-KEY #clause, +; HCONS.LIST < qeq & [ HARG #harg, +; LARG #larg ] >, +; ICONS.LIST < [ IARG1 #clause, IARG2 #target ] > ], +; LKEYS.KEYREL [ ARG1 #ind, +; ARG2 #harg ] ] ]. + + ; Kim told Sandy that Pat slept. ; Kim ga Sandy ni Pat ga neta to itta. ; Kim a dit a Sandy que Pat dormait. @@ -3253,6 +3509,7 @@ basic-scopal-mod-adj-lex := basic-adjective-lex & scopal-mod-lex. ;;; Adpositions +; Information structure-marking adpositions: basic-adposition-lex := single-rel-lex-item & basic-icons-lex-item & [ SYNSEM [ LOCAL [ CAT [ HEAD adp, @@ -3370,10 +3627,14 @@ basic-subord-conjunction-lex := basic-one-arg & R-HNDL #ltop2 ] ] ]. +basic-wh-word-lex := word & +[ SYNSEM [ L-QUE +, LOCAL.CAT.WH or-and-plus ] ]. + +basic-non-wh-word-lex := word & +[ SYNSEM [ L-QUE -, LOCAL.CAT.WH or-and-minus ] ]. ; Coming soon: ; Lexical type for negative particles like English "not" -; Lexical type for WH elements ; Documentation listing the phenomena handled by these lexical types. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -3409,7 +3670,7 @@ basic-conj-lex := norm-zero-arg & no-hcons-lex-item & conj-lex := basic-conj-lex & single-rel-lex-item & [ SYNSEM [ LOCAL [ CAT [ HEAD conj & [ MOD null ], - VAL [ SPR < >, + VAL [ SPR < >, SPEC < >, COMPS < >, SUBJ < > ]], CONT [ HOOK [ LTOP #ltop, @@ -3432,16 +3693,17 @@ nosem-conj-lex := basic-conj-lex & ; Coordination phrases and rules coord-phrase := binary-phrase & [ SYNSEM [ LOCAL [ COORD-STRAT #cstrat, - CAT [ HEAD.MOD #mod, + CAT [ WH.LOGICAL-OR.OR #wh, + HEAD.MOD #mod, VAL #val ] ], - NON-LOCAL #nl ], - LCOORD-DTR #ldtr & sign & [ SYNSEM [ LOCAL [ CAT [ HEAD.MOD #mod, + NON-LOCAL [ SLASH #slash, REL #rel, QUE #que2, YNQ.APPEND < #ynq1, #ynq2 > ] ], + LCOORD-DTR #ldtr & sign & [ SYNSEM [ LOCAL [ CAT [ WH.LOGICAL-OR.OR #wh, HEAD.MOD #mod, VAL #val ] ], - NON-LOCAL #nl ] ], + NON-LOCAL [ SLASH #slash, REL #rel, QUE append-list, YNQ #ynq1 ] ] ], RCOORD-DTR #rdtr & sign & [ SYNSEM [ LOCAL [ COORD-STRAT #cstrat, - CAT [ HEAD.MOD #mod, + CAT [ WH.LOGICAL-OR.OR #wh, HEAD.MOD #mod, VAL #val ] ], - NON-LOCAL #nl ] ], + NON-LOCAL [ SLASH #slash, REL #rel, QUE #que2, YNQ #ynq2 ] ] ], ARGS < #ldtr, #rdtr > ]. topormid-coord-phrase := coord-phrase & @@ -3461,9 +3723,9 @@ mid-coord-rule := topormid-coord-phrase & COORD-REL implicit-coord-rel ]]. bottom-coord-phrase := phrase & - [ SYNSEM.NON-LOCAL #nl, + [ SYNSEM.NON-LOCAL [ SLASH #slash, REL #rel, QUE #que, YNQ append-list ], CONJ-DTR sign, - NONCONJ-DTR sign & [ SYNSEM.NON-LOCAL #nl ] ]. + NONCONJ-DTR sign & [ SYNSEM.NON-LOCAL [ SLASH #slash, REL #rel, QUE #que, YNQ append-list ] ] ]. unary-bottom-coord-rule := bottom-coord-phrase & unary-phrase & [ SYNSEM.LOCAL [ CAT [ HEAD.MOD #mod, @@ -3708,11 +3970,11 @@ np-bottom-coord-phrase := bottom-coord-phrase & ; Event Coordination rules (for verbs and adjectives) event-coord-phrase := coord-phrase & - [ SYNSEM.LOCAL.CONT.HOOK.INDEX [ E #tam ], + [ SYNSEM.LOCAL.CONT.HOOK.INDEX [ E #tam, SF #sf ], LCOORD-DTR.SYNSEM.LOCAL.CONT.HOOK.LTOP #lhndl, RCOORD-DTR.SYNSEM.LOCAL [ COORD-REL [ L-HNDL #lhndl, R-HNDL #rhndl, - R-INDEX.E #tam ], + R-INDEX [ E #tam, SF #sf ] ], CONT.HOOK.LTOP #rhndl ]]. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -3769,7 +4031,7 @@ adv-bottom-coord-phrase := bottom-coord-phrase & vp-coord-phrase := event-coord-phrase & [ SYNSEM.LOCAL.CAT [ HEAD verb, VAL.SUBJ < [ ] > ], - LCOORD-DTR.SYNSEM.LOCAL.CAT.HEAD verb, + LCOORD-DTR.SYNSEM [ LOCAL.CAT.HEAD verb, NON-LOCAL.QUE.LIST < > ], RCOORD-DTR.SYNSEM.LOCAL.CAT.HEAD verb ]. basic-vp-top-coord-rule := vp-coord-phrase & @@ -3791,9 +4053,10 @@ vp-bottom-coord-phrase := bottom-coord-phrase & ; S Coordination rules s-coord-phrase := event-coord-phrase & - [ SYNSEM.LOCAL.CAT [ HEAD verb, + [ SYNSEM [ LOCAL.CAT [ HEAD verb, VAL.SUBJ < > ], - LCOORD-DTR.SYNSEM.LOCAL.CAT.HEAD verb, + NON-LOCAL non-local-none ], + LCOORD-DTR.SYNSEM [ LOCAL.CAT.HEAD verb, NON-LOCAL.QUE.LIST < > ], RCOORD-DTR.SYNSEM.LOCAL.CAT.HEAD verb ]. basic-s-top-coord-rule := s-coord-phrase & @@ -3806,10 +4069,12 @@ basic-s-mid-coord-rule := s-coord-phrase & HCONS.LIST < > ]]. s-bottom-coord-phrase := bottom-coord-phrase & - [ SYNSEM.LOCAL.CAT [ HEAD verb, + [ SYNSEM [ LOCAL.CAT [ HEAD verb, VAL.SUBJ < > ], - NONCONJ-DTR.SYNSEM.LOCAL.CAT [ HEAD verb, - VAL.SUBJ < > ]]. + NON-LOCAL non-local-none ], + NONCONJ-DTR.SYNSEM [ LOCAL.CAT [ HEAD verb, + VAL.SUBJ < > ], + NON-LOCAL non-local-none ]]. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/tests/regression/choices/adv-s-vp-v-min b/tests/regression/choices/adv-s-vp-v-min new file mode 100644 index 000000000..bd1d1b5fa --- /dev/null +++ b/tests/regression/choices/adv-s-vp-v-min @@ -0,0 +1,98 @@ + +version=32 + +section=general +language=adv-underpec-loc-svo + +section=word-order +word-order=svo +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=obl + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=obl + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + det1_name=def + det1_stem1_orth=the + det1_stem1_pred=_the_q_rel + adv1_name=loc + adv1_type=loc + adv1_stem1_orth=there + adv1_stem1_pred=_place_n_rel + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=the cat sleeps + sentence3_orth=the cat sees the house + sentence4_orth=the cat sleeps in the house + sentence5_orth=the cat sleeps there + sentence6_orth=there the cat sleeps + sentence7_orth=the cat there sleeps + sentence8_orth=the there cat sleeps + sentence8_star=on + sentence9_orth=the cat sees the house there + sentence10_orth=the cat sees there the house + sentence11_orth=the cat there sees the house + sentence12_orth=the there cat sees the house + sentence12_star=on + sentence13_orth=the cat sees the there house + sentence13_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh-dev-ckt-mini b/tests/regression/choices/wh-dev-ckt-mini new file mode 100644 index 000000000..51d048439 --- /dev/null +++ b/tests/regression/choices/wh-dev-ckt-mini @@ -0,0 +1,230 @@ + +version=34 + +section=general +language=wh-mini-chukchee + +section=word-order +word-order=free +has-dets=no +has-aux=no + +section=number + number1_name=sg + number2_name=pl + +section=person +person=1-2-3 +first-person=none + +section=gender + gender1_name=masc + +section=case +case-marking=erg-abs +erg-abs-erg-case-name=ergative +erg-abs-abs-case-name=absolutive + +section=adnom-poss + poss-pron1_type=non-affix + poss-pron1_agr=non-agree + poss-pron1_mod-spec=spec + poss-pron1_order=head-final + poss-pron1_instance1_name=your + poss-pron1_instance1_orth=gənin + poss-pron1_instance1_feat1_name=number + poss-pron1_instance1_feat1_value=sg + poss-pron1_instance1_feat2_name=person + poss-pron1_instance1_feat2_value=2nd + poss-pron1_possessum-mark=no + +section=direct-inverse + +section=tense-aspect-mood +tense-definition=choose +past=on +future=on +nonpast=on +nonfuture=on + aspect1_name=progressive + aspect1_supertype1_name=aspect + aspect2_name=perfective + aspect2_supertype1_name=aspect + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +wh-q-inter-verbs=on + +section=info-str + +section=arg-opt +subj-drop=subj-drop-all +subj-mark-drop=subj-mark-drop-req +subj-mark-no-drop=subj-mark-no-drop-opt +subj-con=subj-con-always +obj-drop=obj-drop-all +obj-mark-drop=obj-mark-drop-req +obj-mark-no-drop=obj-mark-no-drop-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun2_name=who + noun2_inter=on + noun2_det=imp + noun2_stem1_orth=maki + noun2_stem1_pred=_person_n_rel + noun3_name=cn + noun3_feat1_name=case + noun3_feat1_value=abs + noun3_det=imp + noun3_stem1_orth=ekək + noun3_stem1_pred=_son_n_rel + noun3_stem2_orth=umqə + noun3_stem2_pred=_bear_n_rel + verb1_name=iv + verb1_valence=abs + verb1_stem1_orth=jatč + verb1_stem1_pred=_come_v_rel + verb1_stem2_orth=qit + verb1_stem2_pred=_freeze_v_rel + verb1_stem3_orth=lejw + verb1_stem3_pred=_walk_v_rel + verb2_name=tv + verb2_valence=erg-abs + verb2_stem1_orth=jallaju + verb2_stem1_pred=_take_v_rel + qverb1_name=be-what + qverb1_predtype=ref + qverb1_stem1_orth=mik + qverb1_stem1_verbpred=be + qverb1_stem1_nounpred=person + qverb2_name=do-what + qverb2_feat1_name=case + qverb2_feat1_value=abs + qverb2_feat1_head=subj + qverb2_predtype=ref + qverb2_stem3_orth=req + qverb2_stem3_verbpred=do + qverb2_stem3_nounpred=thing + adv1_name=when + adv1_stem1_orth=tite + adv1_stem1_pred=_place_a_rel + adv1_inter=on + adv1_type=loc + adv3_name=now + adv3_stem1_orth=igirkej + adv3_stem1_pred=_right.now_a_rel + adv3_stem2_orth=tite + adv3_stem2_pred=_sometimes_a_rel + adv3_stem3_orth=nutku + adv3_stem3_pred=_here_a_rel + adv3_type=loc + +section=morphology + verb-pc1_name=aspect-pref + verb-pc1_order=prefix + verb-pc1_inputs=verb-pc4 + verb-pc1_lrt1_feat1_name=aspect + verb-pc1_lrt1_feat1_value=progressive + verb-pc1_lrt1_feat1_head=verb + verb-pc1_lrt1_lri2_inflecting=yes + verb-pc1_lrt1_lri2_orth=nǝ- + verb-pc2_name=aspect-suf + verb-pc2_order=suffix + verb-pc2_inputs=verb-pc4 + verb-pc2_forbid1_others=verb-pc1 + verb-pc2_lrt1_feat1_name=aspect + verb-pc2_lrt1_feat1_value=progressive + verb-pc2_lrt1_feat1_head=verb + verb-pc2_lrt1_lri1_inflecting=yes + verb-pc2_lrt1_lri1_orth=-ərkənəm + verb-pc4_name=pernum + verb-pc4_obligatory=on + verb-pc4_order=suffix + verb-pc4_inputs=verb1, verb2, qverb1, qverb2 + verb-pc4_forbid1_others=verb-pc6 + verb-pc4_lrt6_feat1_name=person + verb-pc4_lrt6_feat1_value=1st, 2nd + verb-pc4_lrt6_feat1_head=subj + verb-pc4_lrt6_feat3_name=number + verb-pc4_lrt6_feat3_value=sg + verb-pc4_lrt6_feat3_head=subj + verb-pc4_lrt6_feat4_name=tense + verb-pc4_lrt6_feat4_value=nonfuture + verb-pc4_lrt6_feat4_head=verb + verb-pc4_lrt6_lri1_inflecting=yes + verb-pc4_lrt6_lri1_orth=-iγət + verb-pc4_lrt7_name=zero + verb-pc4_lrt7_feat1_name=number + verb-pc4_lrt7_feat1_value=sg + verb-pc4_lrt7_feat1_head=subj + verb-pc4_lrt7_lri1_inflecting=no + verb-pc4_lrt8_feat1_name=number + verb-pc4_lrt8_feat1_value=pl + verb-pc4_lrt8_feat1_head=subj + verb-pc4_lrt8_feat2_name=person + verb-pc4_lrt8_feat2_value=3rd + verb-pc4_lrt8_feat2_head=subj + verb-pc4_lrt8_feat3_name=case + verb-pc4_lrt8_feat3_value=abs + verb-pc4_lrt8_feat3_head=subj + verb-pc4_lrt8_lri1_inflecting=yes + verb-pc4_lrt8_lri1_orth=-ənti + verb-pc5_name=cs + verb-pc5_order=prefix + verb-pc5_inputs=verb1, verb2, qverb1, qverb2 + verb-pc5_lrt1_valchg1_operation=obj-add + verb-pc5_lrt1_valchg1_inputs=intrans + verb-pc5_lrt1_valchg1_predname=applicative + verb-pc5_lrt1_valchg1_argpos=pre + verb-pc5_lrt1_valchg1_argtype=np + verb-pc5_lrt1_lri1_inflecting=yes + verb-pc5_lrt1_lri1_orth=n- + verb-pc6_name=pernum-pref + verb-pc6_obligatory=on + verb-pc6_order=prefix + verb-pc6_inputs=verb-pc5 + verb-pc6_forbid1_others=verb-pc4 + verb-pc6_lrt1_name=ine + verb-pc6_lrt1_feat1_name=number + verb-pc6_lrt1_feat1_value=sg + verb-pc6_lrt1_feat1_head=subj + verb-pc6_lrt1_feat2_name=number + verb-pc6_lrt1_feat2_value=sg + verb-pc6_lrt1_feat2_head=obj + verb-pc6_lrt1_feat3_name=person + verb-pc6_lrt1_feat3_value=1st + verb-pc6_lrt1_feat3_head=obj + verb-pc6_lrt1_feat4_name=person + verb-pc6_lrt1_feat4_value=2nd + verb-pc6_lrt1_feat4_head=subj + verb-pc6_lrt1_lri1_inflecting=yes + verb-pc6_lrt1_lri1_orth=ine- + +section=toolbox-import + +section=test-sentences + sentence1_orth=req-ərkənəm igirkej gənin ekək + sentence7_orth=ine-n-req + sentence8_orth=nə-req-iγət + sentence9_orth=umqə nutku lejw tite? + sentence10_orth=mik-ənti + sentence11_orth=mik-iγət + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh-dev-mini-japanese b/tests/regression/choices/wh-dev-mini-japanese new file mode 100644 index 000000000..6dad61c34 --- /dev/null +++ b/tests/regression/choices/wh-dev-mini-japanese @@ -0,0 +1,174 @@ + +version=33 + +section=general +language=wh-japanese + +section=word-order +word-order=sov +has-dets=yes +noun-det-order=noun-det +has-aux=no + +section=number + +section=person +person=1-2-3 +first-person=none + +section=gender + gender1_name=masc + +section=case +case-marking=nom-acc +nom-acc-nom-case-name=nom +nom-acc-acc-case-name=acc + +section=adnom-poss + poss-strat1_order=head-final + poss-strat1_mod-spec=spec + poss-strat1_mark-loc=neither + poss-strat1_pronoun-allow=yes + poss-pron1_type=non-affix + poss-pron1_agr=non-agree + poss-pron1_mod-spec=spec + poss-pron1_order=head-final + poss-pron1_instance1_name=his + poss-pron1_instance1_orth=kareno + poss-pron1_instance1_feat1_name=gender + poss-pron1_instance1_feat1_value=masc + poss-pron1_possessum-mark=no + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-part=on +q-part-order=after +q-part-allopt=on + q-particle1_orth=no + q-particle1_main=on + q-particle1_embed=on + q-particle2_orth=ka + q-particle2_embed=on + +section=wh-q +front-matrix=in-situ + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + comps1_clause-pos-same=on + comps1_comp-pos-after=on + comps1_comp=opt + comps1_stem1_orth=to + +section=clausalmods + +section=lexicon + noun1_name=cpn + noun1_feat1_name=person + noun1_feat1_value=3rd + noun1_det=opt + noun1_stem1_orth=Kim + noun1_stem1_pred=_Mary_n_rel + noun1_stem2_orth=Sandy + noun1_stem2_pred=_Sandy_n_rel + noun1_stem3_orth=haha + noun1_stem3_pred=_mother_n_rel + noun1_stem4_orth=hito + noun1_stem4_pred=_man_n_rel + noun2_name=ques + noun2_inter=on + noun2_feat1_name=person + noun2_feat1_value=3rd + noun2_det=imp + noun2_stem1_orth=nani + noun2_stem1_pred=_thing_n_rel + noun2_stem2_orth=dare + noun2_stem2_pred=_person_n_rel + noun3_name=1sg + noun3_pron=on + noun3_feat1_name=case + noun3_feat1_value=nom + noun3_feat2_name=person + noun3_feat2_value=1st + noun3_det=imp + noun3_stem1_orth=boku + noun3_stem1_pred=_boku_n_rel + verb1_name=iv + verb1_valence=nom + verb1_stem1_orth=kuru + verb1_stem1_pred=_come_v_rel + verb2_name=tv + verb2_valence=nom-acc + verb2_stem1_orth=yonda + verb2_stem1_pred=_read_rel + verb2_stem2_orth=katta + verb2_stem2_pred=_buy_v_rel + verb2_stem3_orth=semeta + verb2_stem3_pred=_criticize_v_rel + verb3_name=embed + verb3_valence=trans,comps1 + verb3_stem1_orth=itta + verb3_stem1_pred=_said_v_rel + verb3_stem2_orth=sitteiru + verb3_stem2_pred=_know_v_rel + det1_name=ques + det1_inter=on + det1_stem1_orth=dono + det1_stem1_pred=_which_q_rel + +section=morphology + noun-pc1_name=case + noun-pc1_obligatory=on + noun-pc1_order=suffix + noun-pc1_inputs=noun1, noun2 + noun-pc1_lrt1_name=nom + noun-pc1_lrt1_feat1_name=case + noun-pc1_lrt1_feat1_value=nom + noun-pc1_lrt1_feat1_head=itself + noun-pc1_lrt1_lri1_inflecting=yes + noun-pc1_lrt1_lri1_orth=-wa + noun-pc1_lrt1_lri2_inflecting=yes + noun-pc1_lrt1_lri2_orth=-ga + noun-pc1_lrt2_name=acc + noun-pc1_lrt2_feat1_name=case + noun-pc1_lrt2_feat1_value=acc + noun-pc1_lrt2_feat1_head=itself + noun-pc1_lrt2_lri1_inflecting=yes + noun-pc1_lrt2_lri1_orth=-o + +section=toolbox-import + +section=test-sentences + sentence1_orth=Kim-wa nani-o yonda no + sentence2_orth=Kim-wa nani-o yonda + sentence3_orth=Sandy-wa Kim-ga nani-o yonda ka sitteiru + sentence4_orth=dare-ga kuru + sentence5_orth=dare-ga kuru no + sentence7_orth=dare-ga kuru ka + sentence7_star=on + sentence8_orth=Sandy-wa Kim-ga nani-o yonda no sitteiru + sentence9_orth=Sandy-wa Kim-ga nani-o yonda sitteiru + sentence10_orth=no dare-ga kuru + sentence10_star=on + sentence11_orth=ka dare-ga kuru + sentence11_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh-dev-rus b/tests/regression/choices/wh-dev-rus new file mode 100644 index 000000000..b695c9062 --- /dev/null +++ b/tests/regression/choices/wh-dev-rus @@ -0,0 +1,918 @@ + +version=33 + +section=general +language=Russian +iso-code=rus +punctuation-chars=discard-all + +section=word-order +word-order=free +has-dets=yes +noun-det-order=det-noun +has-aux=no +subord-word-order=same + +section=number + number1_name=sg + number2_name=pl + +section=person +person=1-2-3 +first-person=none + +section=gender + gender1_name=masc + gender2_name=fem + gender3_name=neut + +section=case +case-marking=nom-acc +nom-acc-nom-case-name=nom +nom-acc-acc-case-name=acc + case1_name=instr + case2_name=gen + case3_name=dat + case4_name=prep + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood +tense-definition=choose +past=on +present=on +future=on +perimper=on +subjind=on + +section=evidentials + +section=other-features +form-fin-nf=on + form-subtype1_name=chto + form-subtype1_supertype=form + form-subtype2_name=kak + form-subtype2_supertype=form + feature1_name=animacy + feature1_type=index + feature1_cat=noun + feature1_new=no + feature1_existing=bool + +section=sentential-negation +neg-exp=1 +adv-neg=on +neg-mod=v +neg-order=before +neg-adv-orth=не + +section=coordination + cs1_n=on + cs1_np=on + cs1_vp=on + cs1_s=on + cs1_pat=mono + cs1_mark=word + cs1_orth=и + cs1_order=before + cs1_csap1_pat=fr1 + cs1_csap1_target=all + fr1_feat1_name=case + fr1_feat1_rule1_left=same + fr1_feat1_rule1_right=same + fr1_feat1_rule1_par=same + fr1_feat2_name=number + fr1_feat2_rule1_left=any + fr1_feat2_rule1_right=any + fr1_feat2_rule1_par=pl + +section=matrix-yes-no +q-part=on +q-part-order=second + q-particle1_orth=ли + q-particle1_main=on + q-particle1_embed=on + q-particle1_wh=imp + +section=wh-q +front-matrix=multi +matrix-front-opt=none-oblig +pied-pip=on +pied-pip-adp=on +oblig-pied-pip-adp=on + +section=info-str +c-focus-pos=clause-initial + c-focus-marker1_type=modifier + c-focus-marker1_pos=after + c-focus-marker1_cat=nouns, verbs + c-focus-marker1_orth=же + +section=arg-opt +subj-drop=subj-drop-all +subj-mark-drop=subj-mark-drop-not +subj-mark-no-drop=subj-mark-no-drop-not +subj-con=subj-con-always + +section=nominalclause + ns1_name=low + ns1_level=low + ns1_nmzRel=yes + +section=clausal-comp + comps1_clause-pos-same=on + comps1_comp-pos-before=on + comps1_comp=opt + comps1_stem1_orth=что + comps1_ques=prop + comps2_clause-pos-same=on + comps2_ques=ques + +section=clausalmods + +section=lexicon + noun1_name=common + noun1_det=opt + noun2_name=masc + noun2_supertypes=noun1 + noun2_feat1_name=gender + noun2_feat1_value=masc + noun2_det=opt + noun3_name=fem + noun3_supertypes=noun1 + noun3_feat1_name=gender + noun3_feat1_value=fem + noun3_det=opt + noun4_name=neut + noun4_supertypes=noun1 + noun4_feat1_name=gender + noun4_feat1_value=neut + noun4_det=opt + noun5_name=anim + noun5_supertypes=noun1 + noun5_feat1_name=animacy + noun5_feat1_value=+ + noun5_det=opt + noun6_name=inan + noun6_feat1_name=animacy + noun6_feat1_value=- + noun6_det=opt + noun7_name=decl1 + noun7_det=opt + noun8_name=decl1-inan + noun8_supertypes=noun3, noun6, noun7 + noun8_det=opt + noun8_stem3_orth=книг + noun8_stem3_pred=_book_n_rel + noun8_stem4_orth=диссертаци + noun8_stem4_pred=_dissertation_n_rel + noun9_name=decl1-anim + noun9_supertypes=noun3, noun5, noun7 + noun9_det=opt + noun9_stem1_orth=Маш + noun9_stem1_pred=_Masha_n_rel + noun9_stem2_orth=женщин + noun9_stem2_pred=_woman_n_rel + noun10_name=decl2 + noun10_feat1_name=gender + noun10_feat1_value=masc + noun10_det=opt + noun11_name=decl2-anim + noun11_supertypes=noun2, noun5, noun10 + noun11_det=opt + noun11_stem1_orth=студент + noun11_stem1_pred=_student_n_rel + noun11_stem2_orth=профессор + noun11_stem2_pred=_professor_n_rel + noun11_stem3_orth=Иван + noun11_stem3_pred=_Ivan_n_rel + noun11_stem4_orth=человек + noun11_stem4_pred=_person_n_rel + noun12_name=decl2-inan + noun12_supertypes=noun2, noun6, noun10 + noun12_det=opt + noun12_stem1_orth=сон + noun12_stem1_pred=_dream_n_rel + noun12_stem2_orth=город + noun12_stem2_pred=_город_n_rel + noun13_name=1sg-pron + noun13_pron=on + noun13_feat1_name=number + noun13_feat1_value=sg + noun13_feat2_name=person + noun13_feat2_value=1st + noun13_feat3_name=case + noun13_feat3_value=nom + noun13_det=imp + noun13_stem1_orth=я + noun13_stem1_pred=_1sg_n_rel + noun14_name=2sg-pron + noun14_pron=on + noun14_feat1_name=number + noun14_feat1_value=sg + noun14_feat2_name=person + noun14_feat2_value=2nd + noun14_feat3_name=case + noun14_feat3_value=nom + noun14_det=imp + noun14_stem1_orth=ты + noun14_stem1_pred=_2sg_n_rel + noun15_name=ques + noun15_inter=on + noun15_det=imp + noun16_name=ques-nom-anim + noun16_supertypes=noun15 + noun16_feat1_name=case + noun16_feat1_value=nom + noun16_feat2_name=animacy + noun16_feat2_value=+ + noun16_stem1_orth=кто + noun16_stem1_pred=_person_n_rel + noun17_name=ques-acc-gen-anim + noun17_supertypes=noun15 + noun17_feat1_name=case + noun17_feat1_value=acc, gen + noun17_feat2_name=animacy + noun17_feat2_value=+ + noun17_stem1_orth=кого + noun17_stem1_pred=_person_n_rel + noun18_name=ques-nom-acc-inan + noun18_supertypes=noun15 + noun18_feat1_name=case + noun18_feat1_value=nom, acc + noun18_feat2_name=animacy + noun18_feat2_value=- + noun18_stem1_orth=что + noun18_stem1_pred=_thing_n_rel + noun19_name=ques-gen-inan + noun19_supertypes=noun15 + noun19_feat1_name=case + noun19_feat1_value=gen + noun19_feat2_name=animacy + noun19_feat2_value=- + noun19_stem1_orth=чего + noun19_stem1_pred=_thing_n_rel + noun20_name=ques-dat + noun20_supertypes=noun15 + noun20_feat1_name=case + noun20_feat1_value=dat + noun20_stem1_orth=кому + noun20_stem1_pred=_person_n_rel + noun20_stem2_orth=чему + noun20_stem2_pred=_thing_n_rel + noun21_name=1pl-pron + noun21_pron=on + noun21_feat1_name=case + noun21_feat1_value=nom + noun21_feat2_name=number + noun21_feat2_value=pl + noun21_feat3_name=person + noun21_feat3_value=1st + noun21_det=imp + noun21_stem1_orth=мы + noun21_stem1_pred=_мы_n_rel + noun22_name=3sg-masc + noun22_pron=on + noun22_feat1_name=case + noun22_feat1_value=nom + noun22_feat2_name=number + noun22_feat2_value=sg + noun22_feat3_name=person + noun22_feat3_value=3rd + noun22_feat4_name=gender + noun22_feat4_value=masc + noun22_det=imp + noun22_stem1_orth=он + noun22_stem1_pred=_3sg_n_rel + verb1_name=intran + verb1_valence=nom + verb1_stem1_orth=ид + verb1_stem1_pred=_go_v_rel + verb1_stem2_orth=леж + verb1_stem2_pred=_lie_v_rel + verb1_stem3_orth=приеха + verb1_stem3_pred=_arrived_v_rel + verb2_name=tran + verb2_feat1_name=case + verb2_feat1_value=acc, gen + verb2_feat1_head=obj + verb2_feat2_name=case + verb2_feat2_value=nom + verb2_feat2_head=subj + verb2_valence=trans + verb2_stem1_orth=пиш + verb2_stem1_pred=_write_v_rel + verb2_stem2_orth=пис + verb2_stem2_pred=_write_v_rel + verb2_stem3_orth=вид + verb2_stem3_pred=_see_v_rel + verb2_stem5_orth=слыш + verb2_stem5_pred=_hear_v_rel + verb2_stem6_orth=чита + verb2_stem6_pred=_read_v_rel + verb2_stem7_orth=купи + verb2_stem7_pred=_buy_v_rel + verb3_name=ditran + verb3_valence=nom-acc + verb3_stem1_orth=да + verb3_stem1_pred=_give_v_rel + verb4_name=think + verb4_valence=nom,comps1 + verb4_stem4_orth=дума + verb4_stem4_pred=_think_v_rel + verb4_stem5_orth=зна + verb4_stem5_pred=_know_v_rel + verb4_stem6_orth=понима + verb4_stem6_pred=_understand_v_rel + verb4_stem7_orth=виж + verb4_stem7_pred=_see_v_rel + verb4_stem8_orth=вид + verb4_stem8_pred=_saw_v_rel + verb4_stem9_orth=слыш + verb4_stem9_pred=_hear_v_rel + verb6_name=ask + verb6_valence=nom,comps2 + verb6_stem1_orth=спрашива + verb6_stem1_pred=_ask_v_rel + verb6_stem2_orth=зна + verb6_stem2_pred=_know_v_rel + verb6_stem3_orth=понима + verb6_stem3_pred=_understand_v_rel + verb6_stem4_orth=виж + verb6_stem4_pred=_see_v_rel + verb6_stem5_orth=вид + verb6_stem5_pred=_saw_v_rel + verb6_stem6_orth=слыш + verb6_stem6_pred=_hear_v_rel + det1_name=deix + det1_stem1_orth=эт + det1_stem1_pred=_this_q_rel + det2_name=int + det2_inter=on + det2_stem1_orth=скольк + det2_stem1_pred=_how-many_q_rel + det2_stem2_orth=как + det2_stem2_pred=_which_q_rel + det2_stem3_orth=котор + det2_stem3_pred=_which_q_rel + det3_name=how-many-uninfl + det3_inter=on + det3_stem1_orth=сколько + det3_stem1_pred=_how-many_q_rel + det3_feat1_name=case + det3_feat1_value=gen + adv1_name=wh-loc + adv1_stem1_orth=куда + adv1_stem1_pred=_loc_a_rel + adv1_stem2_orth=где + adv1_stem2_pred=_loc_a_rel + adv1_inter=on + adv1_type=loc + adv2_name=wh-manner + adv2_stem1_orth=как + adv2_stem1_pred=_manner_a_rel + adv2_inter=on + adv2_type=manner + adv3_name=wh-time + adv3_stem1_orth=когда + adv3_stem1_pred=_time_a_rel + adv3_inter=on + adv3_type=loc + adv4_name=sure + adv4_stem1_orth=точно + adv4_stem1_pred=_for.sure_a_rel + adv4_type=manner + normadp1_stem1_orth=в + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + normadp1_feat1_name=case + normadp1_feat1_value=acc, prep + normadp2_stem1_orth=из + normadp2_stem1_pred=_from_p_rel + normadp2_order=before + normadp2_feat1_name=case + normadp2_feat1_value=gen + +section=morphology + noun-pc1_name=case1 + noun-pc1_obligatory=on + noun-pc1_order=suffix + noun-pc1_inputs=noun11 + noun-pc1_lrt1_name=nom1 + noun-pc1_lrt1_feat1_name=case + noun-pc1_lrt1_feat1_value=nom + noun-pc1_lrt1_feat1_head=itself + noun-pc1_lrt1_feat2_name=number + noun-pc1_lrt1_feat2_value=sg + noun-pc1_lrt1_feat2_head=itself + noun-pc1_lrt1_lri1_inflecting=no + noun-pc1_lrt2_name=acc-gen1 + noun-pc1_lrt2_feat1_name=case + noun-pc1_lrt2_feat1_value=acc, gen + noun-pc1_lrt2_feat1_head=itself + noun-pc1_lrt2_feat2_name=number + noun-pc1_lrt2_feat2_value=sg + noun-pc1_lrt2_feat2_head=itself + noun-pc1_lrt2_lri1_inflecting=yes + noun-pc1_lrt2_lri1_orth=а + noun-pc1_lrt3_name=instr1 + noun-pc1_lrt3_feat1_name=case + noun-pc1_lrt3_feat1_value=instr + noun-pc1_lrt3_feat1_head=itself + noun-pc1_lrt3_feat2_name=number + noun-pc1_lrt3_feat2_value=sg + noun-pc1_lrt3_feat2_head=itself + noun-pc1_lrt3_lri1_inflecting=yes + noun-pc1_lrt3_lri1_orth=ом + noun-pc2_name=case2 + noun-pc2_obligatory=on + noun-pc2_order=suffix + noun-pc2_inputs=noun7 + noun-pc2_lrt1_name=sg-nom2 + noun-pc2_lrt1_feat1_name=case + noun-pc2_lrt1_feat1_value=nom + noun-pc2_lrt1_feat1_head=itself + noun-pc2_lrt1_feat2_name=number + noun-pc2_lrt1_feat2_value=sg + noun-pc2_lrt1_feat2_head=itself + noun-pc2_lrt1_lri1_inflecting=yes + noun-pc2_lrt1_lri1_orth=а + noun-pc2_lrt1_lri2_inflecting=yes + noun-pc2_lrt1_lri2_orth=я + noun-pc2_lrt2_name=sg-acc2 + noun-pc2_lrt2_feat1_name=case + noun-pc2_lrt2_feat1_value=acc + noun-pc2_lrt2_feat1_head=itself + noun-pc2_lrt2_feat2_name=number + noun-pc2_lrt2_feat2_value=sg + noun-pc2_lrt2_feat2_head=itself + noun-pc2_lrt2_lri1_inflecting=yes + noun-pc2_lrt2_lri1_orth=у + noun-pc2_lrt2_lri2_inflecting=yes + noun-pc2_lrt2_lri2_orth=ю + noun-pc2_lrt3_name=sg-gen2 + noun-pc2_lrt3_feat1_name=case + noun-pc2_lrt3_feat1_value=gen + noun-pc2_lrt3_feat1_head=itself + noun-pc2_lrt3_feat2_name=number + noun-pc2_lrt3_feat2_value=sg + noun-pc2_lrt3_feat2_head=itself + noun-pc2_lrt3_lri1_inflecting=yes + noun-pc2_lrt3_lri1_orth=и + noun-pc2_lrt4_name=pl-nom2 + noun-pc2_lrt4_feat1_name=case + noun-pc2_lrt4_feat1_value=nom, acc + noun-pc2_lrt4_feat1_head=itself + noun-pc2_lrt4_feat2_name=number + noun-pc2_lrt4_feat2_value=pl + noun-pc2_lrt4_feat2_head=itself + noun-pc2_lrt4_lri1_inflecting=yes + noun-pc2_lrt4_lri1_orth=и + noun-pc2_lrt5_name=pl-gen2 + noun-pc2_lrt5_feat1_name=case + noun-pc2_lrt5_feat1_value=gen + noun-pc2_lrt5_feat1_head=itself + noun-pc2_lrt5_feat2_name=number + noun-pc2_lrt5_feat2_value=pl + noun-pc2_lrt5_feat2_head=itself + noun-pc2_lrt5_lri1_inflecting=no + noun-pc2_lrt6_name=dat1 + noun-pc2_lrt6_feat1_name=case + noun-pc2_lrt6_feat1_value=dat + noun-pc2_lrt6_feat1_head=itself + noun-pc2_lrt6_feat2_name=number + noun-pc2_lrt6_feat2_value=sg + noun-pc2_lrt6_feat2_head=itself + noun-pc2_lrt6_lri1_inflecting=yes + noun-pc2_lrt6_lri1_orth=е + noun-pc2_lrt7_name=pl-prep1 + noun-pc2_lrt7_feat1_name=case + noun-pc2_lrt7_feat1_value=prep + noun-pc2_lrt7_feat1_head=itself + noun-pc2_lrt7_feat2_name=number + noun-pc2_lrt7_feat2_value=pl + noun-pc2_lrt7_feat2_head=itself + noun-pc2_lrt7_lri1_inflecting=yes + noun-pc2_lrt7_lri1_orth=ах + noun-pc2_lrt7_lri2_inflecting=yes + noun-pc2_lrt7_lri2_orth=ях + noun-pc2_lrt8_name=prep1 + noun-pc2_lrt8_feat1_name=case + noun-pc2_lrt8_feat1_value=prep + noun-pc2_lrt8_feat1_head=itself + noun-pc2_lrt8_feat2_name=number + noun-pc2_lrt8_feat2_value=sg + noun-pc2_lrt8_feat2_head=itself + noun-pc2_lrt8_lri1_inflecting=yes + noun-pc2_lrt8_lri1_orth=е + noun-pc5_name=case5 + noun-pc5_obligatory=on + noun-pc5_order=suffix + noun-pc5_inputs=noun12 + noun-pc5_lrt1_name=nom-acc5 + noun-pc5_lrt1_feat1_name=case + noun-pc5_lrt1_feat1_value=nom, acc + noun-pc5_lrt1_feat1_head=itself + noun-pc5_lrt1_lri1_inflecting=no + noun-pc5_lrt2_name=gen5 + noun-pc5_lrt2_feat1_name=case + noun-pc5_lrt2_feat1_value=gen + noun-pc5_lrt2_feat1_head=itself + noun-pc5_lrt2_lri1_inflecting=yes + noun-pc5_lrt2_lri1_orth=а + noun-pc5_lrt3_name=insr5 + noun-pc5_lrt3_feat1_name=case + noun-pc5_lrt3_feat1_value=instr + noun-pc5_lrt3_feat1_head=itself + noun-pc5_lrt3_lri1_inflecting=yes + noun-pc5_lrt3_lri1_orth=ом + verb-pc1_name=pernum-tense + verb-pc1_obligatory=on + verb-pc1_order=suffix + verb-pc1_inputs=verb + verb-pc1_lrt1_name=1sg-pres + verb-pc1_lrt1_feat1_name=number + verb-pc1_lrt1_feat1_value=sg + verb-pc1_lrt1_feat1_head=subj + verb-pc1_lrt1_feat2_name=person + verb-pc1_lrt1_feat2_value=1st + verb-pc1_lrt1_feat2_head=subj + verb-pc1_lrt1_feat3_name=tense + verb-pc1_lrt1_feat3_value=present + verb-pc1_lrt1_feat3_head=verb + verb-pc1_lrt1_feat4_name=form + verb-pc1_lrt1_feat4_value=finite + verb-pc1_lrt1_feat4_head=verb + verb-pc1_lrt1_lri1_inflecting=yes + verb-pc1_lrt1_lri1_orth=у + verb-pc1_lrt1_lri2_inflecting=yes + verb-pc1_lrt1_lri2_orth=ю + verb-pc1_lrt2_name=2sg-pres + verb-pc1_lrt2_feat1_name=number + verb-pc1_lrt2_feat1_value=sg + verb-pc1_lrt2_feat1_head=subj + verb-pc1_lrt2_feat2_name=person + verb-pc1_lrt2_feat2_value=2nd + verb-pc1_lrt2_feat2_head=subj + verb-pc1_lrt2_feat3_name=tense + verb-pc1_lrt2_feat3_value=present + verb-pc1_lrt2_feat3_head=verb + verb-pc1_lrt2_feat4_name=form + verb-pc1_lrt2_feat4_value=finite + verb-pc1_lrt2_feat4_head=verb + verb-pc1_lrt2_lri1_inflecting=yes + verb-pc1_lrt2_lri1_orth=ешь + verb-pc1_lrt2_lri2_inflecting=yes + verb-pc1_lrt2_lri2_orth=ишь + verb-pc1_lrt3_name=3sg-pres + verb-pc1_lrt3_feat1_name=number + verb-pc1_lrt3_feat1_value=sg + verb-pc1_lrt3_feat1_head=subj + verb-pc1_lrt3_feat2_name=person + verb-pc1_lrt3_feat2_value=3rd + verb-pc1_lrt3_feat2_head=subj + verb-pc1_lrt3_feat3_name=tense + verb-pc1_lrt3_feat3_value=present + verb-pc1_lrt3_feat3_head=verb + verb-pc1_lrt3_feat4_name=form + verb-pc1_lrt3_feat4_value=finite + verb-pc1_lrt3_feat4_head=verb + verb-pc1_lrt3_lri1_inflecting=yes + verb-pc1_lrt3_lri1_orth=ет + verb-pc1_lrt3_lri2_inflecting=yes + verb-pc1_lrt3_lri2_orth=ит + verb-pc1_lrt4_name=1pl-pres + verb-pc1_lrt4_feat1_name=number + verb-pc1_lrt4_feat1_value=pl + verb-pc1_lrt4_feat1_head=subj + verb-pc1_lrt4_feat2_name=person + verb-pc1_lrt4_feat2_value=1st + verb-pc1_lrt4_feat2_head=subj + verb-pc1_lrt4_feat3_name=tense + verb-pc1_lrt4_feat3_value=present + verb-pc1_lrt4_feat3_head=verb + verb-pc1_lrt4_feat4_name=form + verb-pc1_lrt4_feat4_value=finite + verb-pc1_lrt4_feat4_head=verb + verb-pc1_lrt4_lri1_inflecting=yes + verb-pc1_lrt4_lri1_orth=ем + verb-pc1_lrt4_lri2_inflecting=yes + verb-pc1_lrt4_lri2_orth=им + verb-pc1_lrt5_name=2pl-pres + verb-pc1_lrt5_feat1_name=number + verb-pc1_lrt5_feat1_value=pl + verb-pc1_lrt5_feat1_head=subj + verb-pc1_lrt5_feat2_name=person + verb-pc1_lrt5_feat2_value=2nd + verb-pc1_lrt5_feat2_head=subj + verb-pc1_lrt5_feat3_name=tense + verb-pc1_lrt5_feat3_value=present + verb-pc1_lrt5_feat3_head=verb + verb-pc1_lrt5_feat4_name=form + verb-pc1_lrt5_feat4_value=finite + verb-pc1_lrt5_feat4_head=verb + verb-pc1_lrt5_lri1_inflecting=yes + verb-pc1_lrt5_lri1_orth=ете + verb-pc1_lrt5_lri2_inflecting=yes + verb-pc1_lrt5_lri2_orth=ите + verb-pc1_lrt6_name=3pl-pres + verb-pc1_lrt6_feat1_name=number + verb-pc1_lrt6_feat1_value=pl + verb-pc1_lrt6_feat1_head=subj + verb-pc1_lrt6_feat2_name=person + verb-pc1_lrt6_feat2_value=3rd + verb-pc1_lrt6_feat2_head=subj + verb-pc1_lrt6_feat3_name=tense + verb-pc1_lrt6_feat3_value=present + verb-pc1_lrt6_feat3_head=verb + verb-pc1_lrt6_feat4_name=form + verb-pc1_lrt6_feat4_value=finite + verb-pc1_lrt6_feat4_head=verb + verb-pc1_lrt6_lri1_inflecting=yes + verb-pc1_lrt6_lri1_orth=ут + verb-pc1_lrt6_lri2_inflecting=yes + verb-pc1_lrt6_lri2_orth=ют + verb-pc1_lrt6_lri3_inflecting=yes + verb-pc1_lrt6_lri3_orth=ат + verb-pc1_lrt6_lri4_inflecting=yes + verb-pc1_lrt6_lri4_orth=ят + verb-pc1_lrt7_name=sg-past-masc + verb-pc1_lrt7_feat1_name=number + verb-pc1_lrt7_feat1_value=sg + verb-pc1_lrt7_feat1_head=subj + verb-pc1_lrt7_feat3_name=gender + verb-pc1_lrt7_feat3_value=masc + verb-pc1_lrt7_feat3_head=subj + verb-pc1_lrt7_feat4_name=tense + verb-pc1_lrt7_feat4_value=past + verb-pc1_lrt7_feat4_head=verb + verb-pc1_lrt7_feat5_name=form + verb-pc1_lrt7_feat5_value=finite + verb-pc1_lrt7_feat5_head=verb + verb-pc1_lrt7_lri1_inflecting=yes + verb-pc1_lrt7_lri1_orth=ел + verb-pc1_lrt7_lri2_inflecting=yes + verb-pc1_lrt7_lri2_orth=ал + verb-pc1_lrt7_lri3_inflecting=yes + verb-pc1_lrt7_lri3_orth=л + verb-pc1_lrt8_name=sg-past-fem + verb-pc1_lrt8_feat1_name=number + verb-pc1_lrt8_feat1_value=sg + verb-pc1_lrt8_feat1_head=subj + verb-pc1_lrt8_feat2_name=gender + verb-pc1_lrt8_feat2_value=fem + verb-pc1_lrt8_feat2_head=subj + verb-pc1_lrt8_feat3_name=tense + verb-pc1_lrt8_feat3_value=past + verb-pc1_lrt8_feat3_head=verb + verb-pc1_lrt8_feat4_name=form + verb-pc1_lrt8_feat4_value=finite + verb-pc1_lrt8_feat4_head=verb + verb-pc1_lrt8_lri1_inflecting=yes + verb-pc1_lrt8_lri1_orth=ела + verb-pc1_lrt8_lri2_inflecting=yes + verb-pc1_lrt8_lri2_orth=ала + verb-pc1_lrt8_lri3_inflecting=yes + verb-pc1_lrt8_lri3_orth=ла + verb-pc1_lrt9_name=1pl-past + verb-pc1_lrt9_feat1_name=number + verb-pc1_lrt9_feat1_value=pl + verb-pc1_lrt9_feat1_head=subj + verb-pc1_lrt9_feat2_name=tense + verb-pc1_lrt9_feat2_value=past + verb-pc1_lrt9_feat2_head=verb + verb-pc1_lrt9_lri1_inflecting=yes + verb-pc1_lrt9_lri1_orth=ели + verb-pc1_lrt9_lri2_inflecting=yes + verb-pc1_lrt9_lri2_orth=али + verb-pc2_name=inf + verb-pc2_obligatory=on + verb-pc2_order=suffix + verb-pc2_inputs=verb + verb-pc2_forbid1_others=verb-pc1 + verb-pc2_lrt1_name=nonfin + verb-pc2_lrt1_feat1_name=form + verb-pc2_lrt1_feat1_value=nonfinite + verb-pc2_lrt1_feat1_head=verb + verb-pc2_lrt1_lri1_inflecting=yes + verb-pc2_lrt1_lri1_orth=ть + det-pc1_name=det-agr + det-pc1_obligatory=on + det-pc1_order=suffix + det-pc1_inputs=det1, det2 + det-pc1_lrt1_name=sg-nom-fem + det-pc1_lrt1_feat1_name=case + det-pc1_lrt1_feat1_value=nom + det-pc1_lrt1_feat1_head=noun + det-pc1_lrt1_feat2_name=number + det-pc1_lrt1_feat2_value=sg + det-pc1_lrt1_feat2_head=noun + det-pc1_lrt1_feat3_name=gender + det-pc1_lrt1_feat3_value=fem + det-pc1_lrt1_feat3_head=noun + det-pc1_lrt1_lri1_inflecting=yes + det-pc1_lrt1_lri1_orth=а + det-pc1_lrt1_lri2_inflecting=yes + det-pc1_lrt1_lri2_orth=ая + det-pc1_lrt2_name=sg-gen-fem + det-pc1_lrt2_feat1_name=case + det-pc1_lrt2_feat1_value=gen + det-pc1_lrt2_feat1_head=noun + det-pc1_lrt2_feat2_name=number + det-pc1_lrt2_feat2_value=sg + det-pc1_lrt2_feat2_head=noun + det-pc1_lrt2_feat3_name=gender + det-pc1_lrt2_feat3_value=fem + det-pc1_lrt2_feat3_head=noun + det-pc1_lrt2_lri1_inflecting=yes + det-pc1_lrt2_lri1_orth=ой + det-pc1_lrt3_name=sg-acc-fem + det-pc1_lrt3_feat1_name=case + det-pc1_lrt3_feat1_value=acc + det-pc1_lrt3_feat1_head=noun + det-pc1_lrt3_feat2_name=number + det-pc1_lrt3_feat2_value=sg + det-pc1_lrt3_feat2_head=noun + det-pc1_lrt3_feat3_name=gender + det-pc1_lrt3_feat3_value=fem + det-pc1_lrt3_feat3_head=noun + det-pc1_lrt3_lri1_inflecting=yes + det-pc1_lrt3_lri1_orth=у + det-pc1_lrt3_lri2_inflecting=yes + det-pc1_lrt3_lri2_orth=ую + det-pc1_lrt4_name=sg-dat-fem + det-pc1_lrt4_feat1_name=case + det-pc1_lrt4_feat1_value=dat + det-pc1_lrt4_feat1_head=noun + det-pc1_lrt4_feat2_name=number + det-pc1_lrt4_feat2_value=sg + det-pc1_lrt4_feat2_head=noun + det-pc1_lrt4_feat3_name=gender + det-pc1_lrt4_feat3_value=fem + det-pc1_lrt4_feat3_head=noun + det-pc1_lrt4_lri1_inflecting=yes + det-pc1_lrt4_lri1_orth=ой + det-pc1_lrt5_name=pl-nom + det-pc1_lrt5_feat1_name=case + det-pc1_lrt5_feat1_value=nom + det-pc1_lrt5_feat1_head=noun + det-pc1_lrt5_feat2_name=number + det-pc1_lrt5_feat2_value=pl + det-pc1_lrt5_feat2_head=noun + det-pc1_lrt5_lri1_inflecting=yes + det-pc1_lrt5_lri1_orth=и + det-pc1_lrt5_lri2_inflecting=yes + det-pc1_lrt5_lri2_orth=ие + det-pc1_lrt6_name=pl-gen + det-pc1_lrt6_feat1_name=case + det-pc1_lrt6_feat1_value=gen + det-pc1_lrt6_feat1_head=noun + det-pc1_lrt6_feat2_name=number + det-pc1_lrt6_feat2_value=pl + det-pc1_lrt6_feat2_head=noun + det-pc1_lrt6_lri1_inflecting=yes + det-pc1_lrt6_lri1_orth=их + det-pc1_lrt7_name=pl-dat + det-pc1_lrt7_feat1_name=case + det-pc1_lrt7_feat1_value=dat + det-pc1_lrt7_feat1_head=noun + det-pc1_lrt7_feat2_name=number + det-pc1_lrt7_feat2_value=pl + det-pc1_lrt7_feat2_head=noun + det-pc1_lrt7_lri1_inflecting=yes + det-pc1_lrt7_lri1_orth=им + det-pc1_lrt8_name=sg-nom-masc + det-pc1_lrt8_feat1_name=case + det-pc1_lrt8_feat1_value=nom + det-pc1_lrt8_feat1_head=noun + det-pc1_lrt8_feat2_name=number + det-pc1_lrt8_feat2_value=sg + det-pc1_lrt8_feat2_head=noun + det-pc1_lrt8_feat3_name=gender + det-pc1_lrt8_feat3_value=masc + det-pc1_lrt8_feat3_head=noun + det-pc1_lrt8_lri1_inflecting=yes + det-pc1_lrt8_lri1_orth=от + det-pc1_lrt8_lri2_inflecting=yes + det-pc1_lrt8_lri2_orth=ой + det-pc1_lrt8_lri3_inflecting=yes + det-pc1_lrt8_lri3_orth=ый + det-pc1_lrt9_name=sg-gen-masc + det-pc1_lrt9_feat1_name=case + det-pc1_lrt9_feat1_value=gen + det-pc1_lrt9_feat1_head=noun + det-pc1_lrt9_feat2_name=gender + det-pc1_lrt9_feat2_value=masc + det-pc1_lrt9_feat2_head=noun + det-pc1_lrt9_feat3_name=number + det-pc1_lrt9_feat3_value=sg + det-pc1_lrt9_feat3_head=noun + det-pc1_lrt9_lri1_inflecting=yes + det-pc1_lrt9_lri1_orth=ого + det-pc1_lrt10_name=sg-acc-masc-anim + det-pc1_lrt10_feat1_name=case + det-pc1_lrt10_feat1_value=acc + det-pc1_lrt10_feat1_head=noun + det-pc1_lrt10_feat2_name=number + det-pc1_lrt10_feat2_value=sg + det-pc1_lrt10_feat2_head=noun + det-pc1_lrt10_feat3_name=gender + det-pc1_lrt10_feat3_value=masc + det-pc1_lrt10_feat3_head=noun + det-pc1_lrt10_feat4_name=animacy + det-pc1_lrt10_feat4_value=+ + det-pc1_lrt10_feat4_head=noun + det-pc1_lrt10_lri1_inflecting=yes + det-pc1_lrt10_lri1_orth=ого + det-pc1_lrt11_name=sg-acc-masc-inan + det-pc1_lrt11_feat1_name=case + det-pc1_lrt11_feat1_value=acc + det-pc1_lrt11_feat1_head=noun + det-pc1_lrt11_feat2_name=number + det-pc1_lrt11_feat2_value=sg + det-pc1_lrt11_feat2_head=noun + det-pc1_lrt11_feat3_name=gender + det-pc1_lrt11_feat3_value=masc + det-pc1_lrt11_feat3_head=noun + det-pc1_lrt11_feat4_name=animacy + det-pc1_lrt11_feat4_value=- + det-pc1_lrt11_feat4_head=noun + det-pc1_lrt11_lri1_inflecting=yes + det-pc1_lrt11_lri1_orth=от + det-pc1_lrt11_lri2_inflecting=yes + det-pc1_lrt11_lri2_orth=ой + det-pc1_lrt11_lri3_inflecting=yes + det-pc1_lrt11_lri3_orth=ый + det-pc1_lrt12_name=pl-acc-inan + det-pc1_lrt12_feat1_name=case + det-pc1_lrt12_feat1_value=acc + det-pc1_lrt12_feat1_head=noun + det-pc1_lrt12_feat2_name=animacy + det-pc1_lrt12_feat2_value=- + det-pc1_lrt12_feat2_head=noun + det-pc1_lrt12_feat3_name=number + det-pc1_lrt12_feat3_value=pl + det-pc1_lrt12_feat3_head=noun + det-pc1_lrt12_lri1_inflecting=yes + det-pc1_lrt12_lri1_orth=и + det-pc1_lrt12_lri2_inflecting=yes + det-pc1_lrt12_lri2_orth=ие + det-pc1_lrt12_lri3_inflecting=yes + det-pc1_lrt12_lri3_orth=ые + det-pc1_lrt13_name=pl-acc-anim + det-pc1_lrt13_feat1_name=case + det-pc1_lrt13_feat1_value=acc + det-pc1_lrt13_feat1_head=noun + det-pc1_lrt13_feat2_name=number + det-pc1_lrt13_feat2_value=pl + det-pc1_lrt13_feat2_head=noun + det-pc1_lrt13_feat3_name=animacy + det-pc1_lrt13_feat3_value=+ + det-pc1_lrt13_feat3_head=noun + det-pc1_lrt13_lri1_inflecting=yes + det-pc1_lrt13_lri1_orth=их + det-pc1_lrt13_lri2_inflecting=yes + det-pc1_lrt13_lri2_orth=ых + det-pc1_lrt14_name=sg-dat-masc + det-pc1_lrt14_feat1_name=case + det-pc1_lrt14_feat1_value=dat + det-pc1_lrt14_feat1_head=noun + det-pc1_lrt14_feat2_name=number + det-pc1_lrt14_feat2_value=sg + det-pc1_lrt14_feat2_head=noun + det-pc1_lrt14_feat3_name=gender + det-pc1_lrt14_feat3_value=masc + det-pc1_lrt14_feat3_head=noun + det-pc1_lrt14_lri1_inflecting=yes + det-pc1_lrt14_lri1_orth=ому + det-pc1_lrt15_name=sg-prep-fem + det-pc1_lrt15_feat1_name=case + det-pc1_lrt15_feat1_value=prep + det-pc1_lrt15_feat1_head=noun + det-pc1_lrt15_feat2_name=number + det-pc1_lrt15_feat2_value=sg + det-pc1_lrt15_feat2_head=noun + det-pc1_lrt15_feat3_name=gender + det-pc1_lrt15_feat3_value=fem + det-pc1_lrt15_feat3_head=noun + det-pc1_lrt15_lri1_inflecting=yes + det-pc1_lrt15_lri1_orth=ой + det-pc1_lrt16_name=pl-prep + det-pc1_lrt16_feat1_name=case + det-pc1_lrt16_feat1_value=prep + det-pc1_lrt16_feat1_head=noun + det-pc1_lrt16_feat2_name=number + det-pc1_lrt16_feat2_value=pl + det-pc1_lrt16_feat2_head=noun + det-pc1_lrt16_lri1_inflecting=yes + det-pc1_lrt16_lri1_orth=их + +section=toolbox-import + +section=test-sentences + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh-eng-dev b/tests/regression/choices/wh-eng-dev new file mode 100644 index 000000000..8c9b011d1 --- /dev/null +++ b/tests/regression/choices/wh-eng-dev @@ -0,0 +1,253 @@ + +version=34 + +section=general +language=wh-dev-mini-eng + +section=word-order +word-order=svo +has-dets=yes +noun-det-order=det-noun +has-aux=yes +aux-comp-order=before +aux-comp=vp +multiple-aux=no +subord-word-order=same + +section=number + number1_name=sg + number2_name=pl + +section=person +person=1-2-3 +first-person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features +form-fin-nf=on + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-inv=on +q-inv-verb=aux + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig +pied-pip=on +oblig-pied-pip-noun=on +pied-pip-adp=on +wh-inv-matrix=on +wh-inv-notsubj=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + comps1_clause-pos-same=on + comps1_ques=ques + comps1_comp-pos-before=on + comps1_comp=oblig + comps1_comp-q=on + comps1_stem1_orth=whether + comps1_feat1_name=form + comps1_feat1_value=finite + comps2_clause-pos-same=on + comps2_ques=prop + comps2_comp-pos-before=on + comps2_comp=opt + comps2_stem1_orth=that + comps2_feat1_name=form + comps2_feat1_value=finite + +section=clausalmods + +section=lexicon + noun1_name=common + noun1_feat1_name=person + noun1_feat1_value=3rd + noun1_det=obl + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun1_stem2_orth=dog + noun1_stem2_pred=_dog_n_rel + noun1_stem3_orth=house + noun1_stem3_pred=_house_n_rel + noun2_name=1sg-pronoun + noun2_feat1_name=person + noun2_feat1_value=1st + noun2_feat2_name=number + noun2_feat2_value=sg + noun2_det=imp + noun2_stem1_orth=I + noun2_stem1_pred=_pronoun_n_rel + noun4_name=2sg-pronoun + noun4_feat1_name=person + noun4_feat1_value=2nd + noun4_feat2_name=number + noun4_feat2_value=sg + noun4_det=imp + noun4_stem1_orth=you + noun4_stem1_pred=_pronoun_n_rel + + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_name=itr + verb1_valence=intrans + verb1_stem1_orth=sleep + verb1_stem1_pred=_sleep_v_rel + verb2_name=tr + verb2_valence=trans + verb2_stem1_orth=chase + verb2_stem1_pred=_chase_v_rel + verb3_name=wonder + verb3_valence=trans,comps1 + verb3_stem1_orth=wonder + verb3_stem1_pred=_wonder_v_rel + verb4_name=think + verb4_valence=trans,comps2 + verb4_stem1_orth=think + verb4_stem1_pred=_think_v_rel + adj1_name=regular + adj1_mod=both + adj1_modpos=after + adj1_predcop=obl + adj1_stem1_orth=big + adj1_stem1_pred=_big_a_rel + adj1_stem2_orth=small + adj1_stem2_pred=_small_a_rel + aux1_name=do + aux1_sem=no-pred + aux1_subj=np + aux1_compfeature1_name=form + aux1_compfeature1_value=nonfinite + aux1_stem1_orth=do + cop1_name=3rd-sg + cop1_comptype=ap + cop1_feat1_name=number + cop1_feat1_value=sg + cop1_feat1_head=subj + cop1_feat2_name=person + cop1_feat2_value=3rd + cop1_feat2_head=subj + cop1_stem1_orth=is + cop2_name=pl + cop2_comptype=ap + cop2_feat1_name=number + cop2_feat1_value=pl + cop2_feat1_head=subj + cop2_stem1_orth=are + det1_stem1_orth=the + det1_stem1_pred=_def_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + adv1_name=wh-loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_a_rel + adv1_inter=on + adv1_type=loc + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + noun-pc1_name=num + noun-pc1_obligatory=on + noun-pc1_order=suffix + noun-pc1_inputs=noun1 + noun-pc1_lrt1_name=singular + noun-pc1_lrt1_feat1_name=number + noun-pc1_lrt1_feat1_value=sg + noun-pc1_lrt1_feat1_head=itself + noun-pc1_lrt1_lri1_inflecting=no + noun-pc1_lrt2_name=plural + noun-pc1_lrt2_feat1_name=number + noun-pc1_lrt2_feat1_value=pl + noun-pc1_lrt2_feat1_head=itself + noun-pc1_lrt2_lri1_inflecting=yes + noun-pc1_lrt2_lri1_orth=s + verb-pc1_name=pernum + verb-pc1_obligatory=on + verb-pc1_order=suffix + verb-pc1_inputs=verb + verb-pc1_lrt1_name=3sg + verb-pc1_lrt1_feat1_name=person + verb-pc1_lrt1_feat1_value=3rd + verb-pc1_lrt1_feat1_head=subj + verb-pc1_lrt1_feat2_name=number + verb-pc1_lrt1_feat2_value=sg + verb-pc1_lrt1_feat2_head=subj + verb-pc1_lrt1_feat3_name=form + verb-pc1_lrt1_feat3_value=finite + verb-pc1_lrt1_feat3_head=verb + verb-pc1_lrt1_lri1_inflecting=yes + verb-pc1_lrt1_lri1_orth=s + verb-pc1_lrt1_lri2_inflecting=yes + verb-pc1_lrt1_lri2_orth=es + verb-pc1_lrt2_name=pl + verb-pc1_lrt2_feat1_name=number + verb-pc1_lrt2_feat1_value=pl + verb-pc1_lrt2_feat1_head=subj + verb-pc1_lrt2_feat2_name=form + verb-pc1_lrt2_feat2_value=finite + verb-pc1_lrt2_feat2_head=verb + verb-pc1_lrt2_lri1_inflecting=no + verb-pc1_lrt3_name=non-3rd + verb-pc1_lrt3_feat1_name=person + verb-pc1_lrt3_feat1_value=1st, 2nd + verb-pc1_lrt3_feat1_head=subj + verb-pc1_lrt3_feat2_name=form + verb-pc1_lrt3_feat2_value=finite + verb-pc1_lrt3_feat2_head=verb + verb-pc1_lrt3_lri1_inflecting=no + verb-pc1_lrt4_name=nonfin + verb-pc1_lrt4_feat1_name=form + verb-pc1_lrt4_feat1_value=nonfinite + verb-pc1_lrt4_feat1_head=verb + verb-pc1_lrt4_lri1_inflecting=no + +section=toolbox-import + +section=test-sentences + sentence1_orth=the cat chases the dog + sentence2_orth=the dogs sleep + sentence3_orth=who chases the dog? + sentence4_orth=does the cat chase the dog? + sentence5_orth=the cat chase the dog? + sentence5_star=on + sentence6_orth=who chases the dog? + sentence7_orth=what does the dog chase? + sentence8_orth=what the dog chases? + sentence8_star=on + sentence9_orth=who does chase the dog? + sentence10_orth=do the dogs sleep? + sentence11_orth=the dogs do sleep + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh-svo-sg-oblig-min b/tests/regression/choices/wh-svo-sg-oblig-min new file mode 100644 index 000000000..a5beb50b0 --- /dev/null +++ b/tests/regression/choices/wh-svo-sg-oblig-min @@ -0,0 +1,111 @@ + +version=32 + +section=general +language=wh-svo-sg-oblig-min +punctuation-chars=discard-all + +section=word-order +word-order=svo +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig +no-multi=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=cat sleeps + sentence2_orth=sleeps cat + sentence2_star=on + sentence3_orth=cat sees house + sentence4_orth=cat house sees + sentence4_star=on + sentence5_orth=who sleeps? + sentence6_orth=sleeps who? + sentence6_star=on + sentence7_orth=what cat sees? + sentence8_orth=cat sees what? + sentence8_star=on + sentence9_orth=cat what sees? + sentence9_star=on + sentence10_orth=cat sleeps in house + sentence11_orth=where cat sleeps? + sentence12_orth=cat sleeps where? + sentence12_star=on + sentence13_orth=cat where sleeps? + sentence13_star=on + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh-yux-dev b/tests/regression/choices/wh-yux-dev new file mode 100644 index 000000000..a526cf195 --- /dev/null +++ b/tests/regression/choices/wh-yux-dev @@ -0,0 +1,923 @@ + +version=33 + +section=general +language=Yukaghir +iso-code=yux +punctuation-chars=keep-list +punctuation-chars-list=`-= +archive=yes +email=olzama@uw.edu +affiliation=University of Washington +motivation=experiment on using Focus case system on Yukaghir (research) +comment=Maslova, 2002. A grammar of Kolyma Yukaghir. +vcs=none + +section=word-order +word-order=free +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + number1_name=SG + number2_name=PL + +section=person +person=1-2-3 +first-person=none + +section=gender + +section=case +case-marking=focus +focus-focus-case-name=Predicative +focus-a-case-name=Nominative +focus-o-case-name=Accusative + case1_name=Dative + case2_name=Instrumental + case3_name=Locative + case4_name=NFO + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood +tense-definition=choose +future=on +nonfuture=on + aspect1_name=Imperfective + aspect1_supertype1_name=aspect + aspect2_name=Habitual + aspect2_supertype1_name=aspect + aspect3_name=Ingressive + aspect3_supertype1_name=aspect + aspect4_name=Resultative + aspect4_supertype1_name=aspect + aspect5_name=Iterative + aspect5_supertype1_name=aspect + aspect6_name=NoAspect + aspect6_supertype1_name=aspect + mood1_name=Inferential + mood1_supertype1_name=mood + mood2_name=Prospective + mood2_supertype1_name=mood + mood3_name=Irrealis + mood3_supertype1_name=mood + +section=evidentials + +section=other-features +form-fin-nf=on + +section=sentential-negation +neg-exp=1 +infl-neg=on + +section=coordination + +section=matrix-yes-no +q-infl=on + +section=wh-q +wh-q-infl=on + +section=info-str + focus-marker1_type=affix + +section=arg-opt +subj-drop=subj-drop-all +subj-mark-drop=subj-mark-drop-req +subj-mark-no-drop=subj-mark-no-drop-req +obj-drop=obj-drop-all +obj-mark-drop=obj-mark-drop-not +obj-mark-no-drop=obj-mark-no-drop-not + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_name=cn-lex + noun1_feat1_name=person + noun1_feat1_value=3rd + noun1_det=opt + noun1_stem1_orth=touke + noun1_stem1_pred=_dog_n_rel + noun1_stem2_orth=alme + noun1_stem2_pred=_shaman_n_rel + noun1_stem3_orth=moldo + noun1_stem3_pred=_mitten_n_rel + noun1_stem4_orth=šoromo + noun1_stem4_pred=_person_n_rel + noun1_stem5_orth=škola + noun1_stem5_pred=_school_n_rel + noun1_stem6_orth=numø + noun1_stem6_pred=_house_n_rel + noun1_stem7_orth=noho + noun1_stem7_pred=_sand_n_rel + noun1_stem8_orth=āče + noun1_stem8_pred=_deer_n_rel + noun1_stem9_orth=emde + noun1_stem9_pred=_younger.sibling_n_rel + noun1_stem10_orth=nonol + noun1_stem10_pred=_trap_n_rel + noun2_name=pn-lex + noun2_det=imp + noun3_name=1PER-pn-lex + noun3_supertypes=noun2 + noun3_feat1_name=person + noun3_feat1_value=1st + noun3_det=imp + noun4_name=1PER-SG-pn-lex + noun4_supertypes=noun3 + noun4_feat1_name=number + noun4_feat1_value=SG + noun4_det=imp + noun4_stem1_orth=met + noun4_stem1_pred=pron_rel + noun5_name=1PER-PL-pn-lex + noun5_supertypes=noun3 + noun5_feat1_name=number + noun5_feat1_value=PL + noun5_det=imp + noun5_stem1_orth=mit + noun5_stem1_pred=pron_rel + noun6_name=2PER-pn-lex + noun6_supertypes=noun2 + noun6_feat1_name=person + noun6_feat1_value=2nd + noun6_det=imp + noun7_name=2PER-SG-pn-lex + noun7_supertypes=noun6 + noun7_feat1_name=number + noun7_feat1_value=SG + noun7_det=imp + noun7_stem1_orth=tet + noun7_stem1_pred=pron_rel + noun8_name=2PER-PL-pn-lex + noun8_supertypes=noun6 + noun8_feat1_name=number + noun8_feat1_value=PL + noun8_det=imp + noun8_stem1_orth=tit + noun8_stem1_pred=pron_rel + noun9_name=3PER-pn-lex + noun9_supertypes=noun2 + noun9_feat1_name=person + noun9_feat1_value=3rd + noun9_det=imp + noun10_name=3PER-SG-pn-lex + noun10_supertypes=noun9 + noun10_feat1_name=number + noun10_feat1_value=SG + noun10_det=imp + noun10_stem1_orth=tudel + noun10_stem1_pred=pron_rel + noun11_name=3PER-PL-pn-lex + noun11_supertypes=noun9 + noun11_feat1_name=number + noun11_feat1_value=PL + noun11_det=imp + noun11_stem1_orth=titte + noun11_stem1_pred=pron_rel + noun12_name=ques + noun12_inter=on + noun12_det=imp + noun12_stem1_orth=kin + noun12_stem1_pred=_person_n_rel + noun12_stem2_orth=lem + noun12_stem2_pred=_thing_n_rel + verb1_name=intransitive-verb-lex + verb1_valence=intrans + verb1_stem1_orth=jede + verb1_stem1_pred=_appear_v_rel + verb1_stem2_orth=mon + verb1_stem2_pred=_say_v_rel + verb1_stem3_orth=ejrie + verb1_stem3_pred=_walk_v_rel + verb1_stem4_orth=jaqte + verb1_stem4_pred=_sing_v_rel + verb1_stem5_orth=igie + verb1_stem5_pred=_get.caught_v_rel + verb1_stem6_orth=ed + verb1_stem6_pred=_live_v_rel + verb2_name=transitive-verb-lex + verb2_valence=trans + verb2_stem1_orth=kude + verb2_stem1_pred=_kill_v_rel + verb2_stem2_orth=juø + verb2_stem2_pred=_see_v_rel + verb2_stem3_orth=ik + verb2_stem3_pred=_sew_v_rel + verb2_stem4_orth=qaŋī + verb2_stem4_pred=_chase_v_rel + verb2_stem5_orth=ā + verb2_stem5_pred=_make_v_rel + verb2_stem6_orth=kesī + verb2_stem6_pred=_bring_v_rel + verb2_stem7_orth=qamie + verb2_stem7_pred=_help_v_rel + verb2_stem8_orth=edies + verb2_stem8_pred=_call_v_rel + verb2_stem9_orth=leg + verb2_stem9_pred=_eat_v_rel + verb3_name=qualitative-verb-lex + verb3_valence=intrans + verb3_stem1_orth=omo + verb3_stem1_pred=_good_v_rel + verb3_stem2_orth=er + verb3_stem2_pred=_bad_v_rel + verb4_name=copula-verb-lex + verb4_feat1_name=person + verb4_feat1_value=1st, 2nd + verb4_feat1_head=subj + verb4_valence=trans + verb4_stem1_orth=ō + verb4_stem1_pred=_be_v_id_rel + verb5_name=ditransitive-verb-lex + verb5_valence=trans + verb5_stem1_orth=kej + verb5_stem1_pred=_give_v_rel + verb6_name=locative-verb-lex + verb6_feat1_name=case + verb6_feat1_value=Locative + verb6_feat1_head=obj + verb6_valence=trans + verb6_stem1_orth=le + verb6_stem1_pred=_be_located_v_rel + verb7_name=cognitive-verb-lex + verb7_valence=trans + verb7_stem1_orth=kičie + verb7_stem1_pred=_study_v_rel + det1_name=determiner-lex + det1_stem1_orth=tiŋ + det1_stem1_pred=proximal+dem_a_rel + adv1_name=wh-reason + adv1_stem1_orth=noŋōn + adv1_stem1_pred=_what.for_a_rel + adv1_inter=on + adv1_type=manner + +section=morphology + noun-pc1_name=NOUN-NUM + noun-pc1_obligatory=on + noun-pc1_order=suffix + noun-pc1_inputs=noun1 + noun-pc1_lrt1_name=noun-num-sg + noun-pc1_lrt1_feat1_name=number + noun-pc1_lrt1_feat1_value=SG + noun-pc1_lrt1_feat1_head=itself + noun-pc1_lrt1_lri1_inflecting=no + noun-pc1_lrt2_name=noun-num-pl + noun-pc1_lrt2_feat1_name=number + noun-pc1_lrt2_feat1_value=PL + noun-pc1_lrt2_feat1_head=itself + noun-pc1_lrt2_lri1_inflecting=yes + noun-pc1_lrt2_lri1_orth=-pul + noun-pc2_name=CN-CASE + noun-pc2_obligatory=on + noun-pc2_order=suffix + noun-pc2_inputs=noun-pc1 + noun-pc2_lrt1_name=cn-nom + noun-pc2_lrt1_feat1_name=case + noun-pc2_lrt1_feat1_value=a_case, NFO + noun-pc2_lrt1_feat1_head=itself + noun-pc2_lrt1_lri1_inflecting=no + noun-pc2_lrt2_name=cn-pred + noun-pc2_lrt2_feat1_name=case + noun-pc2_lrt2_feat1_value=focus + noun-pc2_lrt2_feat1_head=itself + noun-pc2_lrt2_lri1_inflecting=yes + noun-pc2_lrt2_lri1_orth=-lek + noun-pc2_lrt3_name=cn-acc + noun-pc2_lrt3_feat1_name=case + noun-pc2_lrt3_feat1_value=o_case + noun-pc2_lrt3_feat1_head=itself + noun-pc2_lrt3_lri1_inflecting=yes + noun-pc2_lrt3_lri1_orth=-gele + noun-pc2_lrt3_lri2_inflecting=yes + noun-pc2_lrt3_lri2_orth=-kele + noun-pc2_lrt4_name=cn-instr + noun-pc2_lrt4_feat1_name=case + noun-pc2_lrt4_feat1_value=o_case + noun-pc2_lrt4_feat1_head=itself + noun-pc2_lrt4_lri1_inflecting=yes + noun-pc2_lrt4_lri1_orth=-le + noun-pc2_lrt5_name=cn-loc + noun-pc2_lrt5_feat1_name=case + noun-pc2_lrt5_feat1_value=Locative + noun-pc2_lrt5_feat1_head=itself + noun-pc2_lrt5_lri1_inflecting=yes + noun-pc2_lrt5_lri1_orth=-ge + noun-pc2_lrt6_name=cn-dat + noun-pc2_lrt6_feat1_name=case + noun-pc2_lrt6_feat1_value=Dative + noun-pc2_lrt6_feat1_head=itself + noun-pc2_lrt6_lri1_inflecting=yes + noun-pc2_lrt6_lri1_orth=-ŋin + noun-pc3_name=PN-CASE + noun-pc3_obligatory=on + noun-pc3_order=suffix + noun-pc3_inputs=noun2 + noun-pc3_lrt1_name=pn-nom-non3rd + noun-pc3_lrt1_feat1_name=case + noun-pc3_lrt1_feat1_value=a_case + noun-pc3_lrt1_feat1_head=itself + noun-pc3_lrt1_feat2_name=person + noun-pc3_lrt1_feat2_value=1st, 2nd + noun-pc3_lrt1_feat2_head=itself + noun-pc3_lrt1_lri1_inflecting=no + noun-pc3_lrt2_name=pn-nom-3rd + noun-pc3_lrt2_feat1_name=case + noun-pc3_lrt2_feat1_value=focus, a_case + noun-pc3_lrt2_feat1_head=itself + noun-pc3_lrt2_feat2_name=person + noun-pc3_lrt2_feat2_value=3rd + noun-pc3_lrt2_feat2_head=itself + noun-pc3_lrt2_lri1_inflecting=no + noun-pc3_lrt3_name=pn-pred + noun-pc3_lrt3_feat1_name=case + noun-pc3_lrt3_feat1_value=focus + noun-pc3_lrt3_feat1_head=itself + noun-pc3_lrt3_feat2_name=person + noun-pc3_lrt3_feat2_value=1st, 2nd + noun-pc3_lrt3_feat2_head=itself + noun-pc3_lrt3_lri1_inflecting=yes + noun-pc3_lrt3_lri1_orth=-ek + noun-pc3_lrt4_name=pn-nfo + noun-pc3_lrt4_feat1_name=case + noun-pc3_lrt4_feat1_value=NFO + noun-pc3_lrt4_feat1_head=itself + noun-pc3_lrt4_feat2_name=person + noun-pc3_lrt4_feat2_value=1st, 2nd + noun-pc3_lrt4_feat2_head=itself + noun-pc3_lrt4_lri1_inflecting=yes + noun-pc3_lrt4_lri1_orth=-ul + noun-pc3_lrt5_name=pn-dat + noun-pc3_lrt5_feat1_name=case + noun-pc3_lrt5_feat1_value=Dative + noun-pc3_lrt5_feat1_head=itself + noun-pc3_lrt5_lri1_inflecting=yes + noun-pc3_lrt5_lri1_orth=-in + noun-pc3_lrt6_name=pn-acc + noun-pc3_lrt6_feat1_name=case + noun-pc3_lrt6_feat1_value=o_case + noun-pc3_lrt6_feat1_head=itself + noun-pc3_lrt6_lri1_inflecting=yes + noun-pc3_lrt6_lri1_orth=-gele + noun-pc3_lrt6_lri2_inflecting=yes + noun-pc3_lrt6_lri2_orth=-kele + noun-pc4_name=QN-CASE + noun-pc4_obligatory=on + noun-pc4_order=suffix + noun-pc4_inputs=noun12 + noun-pc4_lrt1_name=QN-pred + noun-pc4_lrt1_feat1_name=case + noun-pc4_lrt1_feat1_value=focus + noun-pc4_lrt1_feat1_head=itself + noun-pc4_lrt1_feat2_name=information-structure meaning + noun-pc4_lrt1_feat2_value=focus + noun-pc4_lrt1_feat2_head=itself + noun-pc4_lrt1_lri1_inflecting=yes + noun-pc4_lrt1_lri1_orth=-tek + noun-pc4_lrt1_lri2_inflecting=yes + noun-pc4_lrt1_lri2_orth=-ek + noun-pc4_lrt2_name=QN-nom + noun-pc4_lrt2_feat1_name=case + noun-pc4_lrt2_feat1_value=a_case + noun-pc4_lrt2_feat1_head=itself + noun-pc4_lrt2_feat2_name=information-structure meaning + noun-pc4_lrt2_feat2_value=focus + noun-pc4_lrt2_feat2_head=itself + noun-pc4_lrt2_lri1_inflecting=no + noun-pc4_lrt3_name=QN-NFO + noun-pc4_lrt3_feat1_name=case + noun-pc4_lrt3_feat1_value=NFO + noun-pc4_lrt3_feat1_head=itself + noun-pc4_lrt3_feat2_name=information-structure meaning + noun-pc4_lrt3_feat2_value=focus + noun-pc4_lrt3_feat2_head=itself + noun-pc4_lrt3_lri1_inflecting=no + verb-pc1_name=NEG + verb-pc1_order=prefix + verb-pc1_inputs=verb-pc3 + verb-pc1_lrt1_name=neg-pref + verb-pc1_lrt1_feat1_name=negation + verb-pc1_lrt1_feat1_value=plus + verb-pc1_lrt1_feat1_head=verb + verb-pc1_lrt1_lri1_inflecting=yes + verb-pc1_lrt1_lri1_orth=el- + verb-pc2_name=ASPECT + verb-pc2_obligatory=on + verb-pc2_order=suffix + verb-pc2_inputs=verb1, verb2, verb5, verb7 + verb-pc2_lrt1_name=imperfective + verb-pc2_lrt1_feat1_name=aspect + verb-pc2_lrt1_feat1_value=Imperfective + verb-pc2_lrt1_feat1_head=verb + verb-pc2_lrt1_lri1_inflecting=yes + verb-pc2_lrt1_lri1_orth=-nu + verb-pc2_lrt2_name=habitual + verb-pc2_lrt2_feat1_name=aspect + verb-pc2_lrt2_feat1_value=Habitual + verb-pc2_lrt2_feat1_head=verb + verb-pc2_lrt2_lri1_inflecting=yes + verb-pc2_lrt2_lri1_orth=-nun + verb-pc2_lrt3_name=iterative + verb-pc2_lrt3_feat1_name=aspect + verb-pc2_lrt3_feat1_value=Iterative + verb-pc2_lrt3_feat1_head=verb + verb-pc2_lrt3_lri1_inflecting=yes + verb-pc2_lrt3_lri1_orth=-čī + verb-pc2_lrt4_name=ingressive + verb-pc2_lrt4_feat1_name=aspect + verb-pc2_lrt4_feat1_value=Ingressive + verb-pc2_lrt4_feat1_head=verb + verb-pc2_lrt4_lri1_inflecting=yes + verb-pc2_lrt4_lri1_orth=-ie + verb-pc2_lrt5_name=resultative + verb-pc2_lrt5_feat1_name=aspect + verb-pc2_lrt5_feat1_value=Resultative + verb-pc2_lrt5_feat1_head=verb + verb-pc2_lrt5_lri1_inflecting=yes + verb-pc2_lrt5_lri1_orth=-ō + verb-pc2_lrt6_name=no-aspect + verb-pc2_lrt6_feat1_name=aspect + verb-pc2_lrt6_feat1_value=NoAspect + verb-pc2_lrt6_feat1_head=verb + verb-pc2_lrt6_lri1_inflecting=no + verb-pc3_name=PERNUM + verb-pc3_obligatory=on + verb-pc3_order=suffix + verb-pc3_inputs=verb-pc4 + verb-pc3_lrt1_name=INTR + verb-pc3_lrt1_require1_others=iverb + verb-pc3_lrt2_name=INTR-MAIN + verb-pc3_lrt2_supertypes=verb-pc3_lrt1 + verb-pc3_lrt2_feat1_name=information-structure meaning + verb-pc3_lrt2_feat1_value=non-focus + verb-pc3_lrt2_feat1_head=subj + verb-pc3_lrt2_feat2_name=case + verb-pc3_lrt2_feat2_value=a_case + verb-pc3_lrt2_feat2_head=subj + verb-pc3_lrt2_feat3_name=argument structure + verb-pc3_lrt2_feat3_value=intrans + verb-pc3_lrt2_feat3_head=verb + verb-pc3_lrt3_name=INTR-SF + verb-pc3_lrt3_supertypes=verb-pc3_lrt1 + verb-pc3_lrt3_feat1_name=information-structure meaning + verb-pc3_lrt3_feat1_value=focus + verb-pc3_lrt3_feat1_head=subj + verb-pc3_lrt3_feat2_name=argument structure + verb-pc3_lrt3_feat2_value=focus + verb-pc3_lrt3_feat2_head=verb + verb-pc3_lrt3_lri1_inflecting=yes + verb-pc3_lrt3_lri1_orth=-l + verb-pc3_lrt4_name=INTR-MAIN-1SG + verb-pc3_lrt4_supertypes=verb-pc3_lrt2 + verb-pc3_lrt4_feat1_name=person + verb-pc3_lrt4_feat1_value=1st + verb-pc3_lrt4_feat1_head=subj + verb-pc3_lrt4_feat2_name=number + verb-pc3_lrt4_feat2_value=SG + verb-pc3_lrt4_feat2_head=subj + verb-pc3_lrt4_feat3_name=question + verb-pc3_lrt4_feat3_value=polar + verb-pc3_lrt4_feat3_head=verb + verb-pc3_lrt4_lri1_inflecting=yes + verb-pc3_lrt4_lri1_orth=-je + verb-pc3_lrt5_name=INTR-MAIN-2SG + verb-pc3_lrt5_supertypes=verb-pc3_lrt2 + verb-pc3_lrt5_feat1_name=number + verb-pc3_lrt5_feat1_value=SG + verb-pc3_lrt5_feat1_head=subj + verb-pc3_lrt5_feat2_name=person + verb-pc3_lrt5_feat2_value=2nd + verb-pc3_lrt5_feat2_head=subj + verb-pc3_lrt5_lri1_inflecting=yes + verb-pc3_lrt5_lri1_orth=-jek + verb-pc3_lrt6_name=INTR-MAIN-3SG + verb-pc3_lrt6_supertypes=verb-pc3_lrt2 + verb-pc3_lrt6_feat1_name=number + verb-pc3_lrt6_feat1_value=SG + verb-pc3_lrt6_feat1_head=subj + verb-pc3_lrt6_feat2_name=person + verb-pc3_lrt6_feat2_value=3rd + verb-pc3_lrt6_feat2_head=subj + verb-pc3_lrt6_lri1_inflecting=yes + verb-pc3_lrt6_lri1_orth=-j + verb-pc3_lrt7_name=INTR-MAIN-1PL + verb-pc3_lrt7_supertypes=verb-pc3_lrt2 + verb-pc3_lrt7_feat1_name=number + verb-pc3_lrt7_feat1_value=PL + verb-pc3_lrt7_feat1_head=subj + verb-pc3_lrt7_feat2_name=person + verb-pc3_lrt7_feat2_value=1st + verb-pc3_lrt7_feat2_head=subj + verb-pc3_lrt7_feat3_name=question + verb-pc3_lrt7_feat3_value=polar + verb-pc3_lrt7_feat3_head=verb + verb-pc3_lrt7_lri1_inflecting=yes + verb-pc3_lrt7_lri1_orth=-jeli + verb-pc3_lrt8_name=INTR-MAIN-2PL + verb-pc3_lrt8_supertypes=verb-pc3_lrt2 + verb-pc3_lrt8_feat1_name=number + verb-pc3_lrt8_feat1_value=PL + verb-pc3_lrt8_feat1_head=subj + verb-pc3_lrt8_feat2_name=person + verb-pc3_lrt8_feat2_value=2nd + verb-pc3_lrt8_feat2_head=subj + verb-pc3_lrt8_lri1_inflecting=yes + verb-pc3_lrt8_lri1_orth=-jemet + verb-pc3_lrt9_name=INTR-MAIN-3PL + verb-pc3_lrt9_supertypes=verb-pc3_lrt2 + verb-pc3_lrt9_feat1_name=number + verb-pc3_lrt9_feat1_value=PL + verb-pc3_lrt9_feat1_head=subj + verb-pc3_lrt9_feat2_name=person + verb-pc3_lrt9_feat2_value=3rd + verb-pc3_lrt9_feat2_head=subj + verb-pc3_lrt10_name=INTR-MAIN-3PL-fut + verb-pc3_lrt10_supertypes=verb-pc3_lrt9 + verb-pc3_lrt10_feat1_name=tense + verb-pc3_lrt10_feat1_value=future + verb-pc3_lrt10_feat1_head=verb + verb-pc3_lrt10_lri1_inflecting=yes + verb-pc3_lrt10_lri1_orth=-j + verb-pc3_lrt11_name=INTR-MAIN-3PL-nonfut + verb-pc3_lrt11_supertypes=verb-pc3_lrt9 + verb-pc3_lrt11_feat1_name=tense + verb-pc3_lrt11_feat1_value=nonfuture + verb-pc3_lrt11_feat1_head=verb + verb-pc3_lrt11_lri1_inflecting=no + verb-pc3_lrt12_name=TR + verb-pc3_lrt12_feat2_name=case + verb-pc3_lrt12_feat2_value=a_case + verb-pc3_lrt12_feat2_head=subj + verb-pc3_lrt12_require1_others=tverb + verb-pc3_lrt13_name=TR-OF + verb-pc3_lrt13_supertypes=verb-pc3_lrt12 + verb-pc3_lrt13_feat1_name=information-structure meaning + verb-pc3_lrt13_feat1_value=focus + verb-pc3_lrt13_feat1_head=obj + verb-pc3_lrt13_feat2_name=argument structure + verb-pc3_lrt13_feat2_value=a_case-focus + verb-pc3_lrt13_feat2_head=verb + verb-pc3_lrt13_feat3_name=information-structure meaning + verb-pc3_lrt13_feat3_value=non-focus + verb-pc3_lrt13_feat3_head=subj + verb-pc3_lrt14_name=TR-MAIN + verb-pc3_lrt14_supertypes=verb-pc3_lrt12 + verb-pc3_lrt14_feat1_name=information-structure meaning + verb-pc3_lrt14_feat1_value=non-focus + verb-pc3_lrt14_feat1_head=obj + verb-pc3_lrt14_feat2_name=argument structure + verb-pc3_lrt14_feat2_value=trans + verb-pc3_lrt14_feat2_head=verb + verb-pc3_lrt15_name=TR-OF-12SG + verb-pc3_lrt15_supertypes=verb-pc3_lrt13 + verb-pc3_lrt15_feat1_name=number + verb-pc3_lrt15_feat1_value=SG + verb-pc3_lrt15_feat1_head=subj + verb-pc3_lrt15_feat2_name=person + verb-pc3_lrt15_feat2_value=1st, 2nd + verb-pc3_lrt15_feat2_head=subj + verb-pc3_lrt15_lri1_inflecting=yes + verb-pc3_lrt15_lri1_orth=-me + verb-pc3_lrt16_name=TR-OF-3SG + verb-pc3_lrt16_supertypes=verb-pc3_lrt13 + verb-pc3_lrt16_feat1_name=number + verb-pc3_lrt16_feat1_value=SG + verb-pc3_lrt16_feat1_head=subj + verb-pc3_lrt16_feat2_name=person + verb-pc3_lrt16_feat2_value=3rd + verb-pc3_lrt16_feat2_head=subj + verb-pc3_lrt16_lri1_inflecting=yes + verb-pc3_lrt16_lri1_orth=-mele + verb-pc3_lrt16_lri2_inflecting=yes + verb-pc3_lrt16_lri2_orth=-tem + verb-pc3_lrt17_name=TR-OF-1PL + verb-pc3_lrt17_supertypes=verb-pc3_lrt13 + verb-pc3_lrt17_feat1_name=number + verb-pc3_lrt17_feat1_value=PL + verb-pc3_lrt17_feat1_head=subj + verb-pc3_lrt17_feat2_name=person + verb-pc3_lrt17_feat2_value=1st + verb-pc3_lrt17_feat2_head=subj + verb-pc3_lrt17_lri1_inflecting=yes + verb-pc3_lrt17_lri1_orth=-l + verb-pc3_lrt19_name=TR-OF-3PL + verb-pc3_lrt19_supertypes=verb-pc3_lrt13 + verb-pc3_lrt19_feat1_name=number + verb-pc3_lrt19_feat1_value=PL + verb-pc3_lrt19_feat1_head=subj + verb-pc3_lrt19_feat2_name=person + verb-pc3_lrt19_feat2_value=3rd + verb-pc3_lrt19_feat2_head=subj + verb-pc3_lrt20_name=TR-OF-3PL-nonfut + verb-pc3_lrt20_supertypes=verb-pc3_lrt19 + verb-pc3_lrt20_feat1_name=tense + verb-pc3_lrt20_feat1_value=nonfuture + verb-pc3_lrt20_feat1_head=verb + verb-pc3_lrt20_lri1_inflecting=yes + verb-pc3_lrt20_lri1_orth=-le + verb-pc3_lrt21_name=TR-OF-3PL-fut + verb-pc3_lrt21_supertypes=verb-pc3_lrt19 + verb-pc3_lrt21_feat1_name=tense + verb-pc3_lrt21_feat1_value=future + verb-pc3_lrt21_feat1_head=verb + verb-pc3_lrt21_lri1_inflecting=yes + verb-pc3_lrt21_lri1_orth=-mele + verb-pc3_lrt21_lri2_inflecting=yes + verb-pc3_lrt21_lri2_orth=-tem + verb-pc3_lrt22_name=TR-MAIN-1SG + verb-pc3_lrt22_supertypes=verb-pc3_lrt30 + verb-pc3_lrt22_feat1_name=number + verb-pc3_lrt22_feat1_value=SG + verb-pc3_lrt22_feat1_head=subj + verb-pc3_lrt22_feat2_name=person + verb-pc3_lrt22_feat2_value=1st + verb-pc3_lrt22_feat2_head=subj + verb-pc3_lrt22_lri1_inflecting=no + verb-pc3_lrt23_name=TR-MAIN-2SG + verb-pc3_lrt23_supertypes=verb-pc3_lrt30 + verb-pc3_lrt23_feat1_name=number + verb-pc3_lrt23_feat1_value=SG + verb-pc3_lrt23_feat1_head=subj + verb-pc3_lrt23_feat2_name=person + verb-pc3_lrt23_feat2_value=2nd + verb-pc3_lrt23_feat2_head=subj + verb-pc3_lrt23_lri1_inflecting=yes + verb-pc3_lrt23_lri1_orth=-mek + verb-pc3_lrt24_name=TR-MAIN-3SG + verb-pc3_lrt24_supertypes=verb-pc3_lrt32 + verb-pc3_lrt24_feat1_name=number + verb-pc3_lrt24_feat1_value=SG + verb-pc3_lrt24_feat1_head=subj + verb-pc3_lrt24_lri1_inflecting=yes + verb-pc3_lrt24_lri1_orth=-m + verb-pc3_lrt25_name=TR-MAIN-1PL + verb-pc3_lrt25_supertypes=verb-pc3_lrt30 + verb-pc3_lrt25_feat1_name=number + verb-pc3_lrt25_feat1_value=PL + verb-pc3_lrt25_feat1_head=subj + verb-pc3_lrt25_feat2_name=person + verb-pc3_lrt25_feat2_value=1st + verb-pc3_lrt25_feat2_head=subj + verb-pc3_lrt25_lri1_inflecting=yes + verb-pc3_lrt25_lri1_orth=-j + verb-pc3_lrt26_name=TR-OF-2PL + verb-pc3_lrt26_supertypes=verb-pc3_lrt13 + verb-pc3_lrt26_feat1_name=person + verb-pc3_lrt26_feat1_value=2nd + verb-pc3_lrt26_feat1_head=subj + verb-pc3_lrt26_feat2_name=number + verb-pc3_lrt26_feat2_value=PL + verb-pc3_lrt26_feat2_head=subj + verb-pc3_lrt26_lri1_inflecting=yes + verb-pc3_lrt26_lri1_orth=-met + verb-pc3_lrt27_name=TR-MAIN-3PL + verb-pc3_lrt27_supertypes=verb-pc3_lrt32 + verb-pc3_lrt27_feat1_name=number + verb-pc3_lrt27_feat1_value=PL + verb-pc3_lrt27_feat1_head=subj + verb-pc3_lrt28_name=TR-MAIN-3PL-nonfut + verb-pc3_lrt28_supertypes=verb-pc3_lrt27 + verb-pc3_lrt28_feat1_name=tense + verb-pc3_lrt28_feat1_value=nonfuture + verb-pc3_lrt28_feat1_head=verb + verb-pc3_lrt28_lri1_inflecting=yes + verb-pc3_lrt28_lri1_orth=-ā + verb-pc3_lrt29_name=TR-MAIN-3PL-fut + verb-pc3_lrt29_supertypes=verb-pc3_lrt27 + verb-pc3_lrt29_feat1_name=tense + verb-pc3_lrt29_feat1_value=future + verb-pc3_lrt29_feat1_head=verb + verb-pc3_lrt29_lri1_inflecting=yes + verb-pc3_lrt29_lri1_orth=-m + verb-pc3_lrt30_name=TR-MAIN-12PER + verb-pc3_lrt30_supertypes=verb-pc3_lrt14 + verb-pc3_lrt30_feat1_name=case + verb-pc3_lrt30_feat1_value=NFO + verb-pc3_lrt30_feat1_head=obj + verb-pc3_lrt30_feat2_name=person + verb-pc3_lrt30_feat2_value=1st, 2nd + verb-pc3_lrt30_feat2_head=subj + verb-pc3_lrt31_name=TR-MAIN-2PL + verb-pc3_lrt31_supertypes=verb-pc3_lrt30 + verb-pc3_lrt31_feat1_name=person + verb-pc3_lrt31_feat1_value=2nd + verb-pc3_lrt31_feat1_head=subj + verb-pc3_lrt31_feat2_name=number + verb-pc3_lrt31_feat2_value=PL + verb-pc3_lrt31_feat2_head=subj + verb-pc3_lrt31_lri1_inflecting=yes + verb-pc3_lrt31_lri1_orth=-met + verb-pc3_lrt32_name=TR-MAIN-3PER + verb-pc3_lrt32_supertypes=verb-pc3_lrt14 + verb-pc3_lrt32_feat1_name=person + verb-pc3_lrt32_feat1_value=3rd + verb-pc3_lrt32_feat1_head=subj + verb-pc3_lrt32_feat2_name=case + verb-pc3_lrt32_feat2_value=o_case + verb-pc3_lrt32_feat2_head=obj + verb-pc4_name=TENSE + verb-pc4_obligatory=on + verb-pc4_order=suffix + verb-pc4_inputs=verb-pc5 + verb-pc4_lrt1_name=future + verb-pc4_lrt1_feat1_name=tense + verb-pc4_lrt1_feat1_value=future + verb-pc4_lrt1_feat1_head=verb + verb-pc4_lrt1_lri1_inflecting=yes + verb-pc4_lrt1_lri1_orth=-te + verb-pc4_lrt2_name=non-future + verb-pc4_lrt2_feat1_name=tense + verb-pc4_lrt2_feat1_value=nonfuture + verb-pc4_lrt2_feat1_head=verb + verb-pc4_lrt2_lri1_inflecting=no + verb-pc5_name=3PERPL + verb-pc5_obligatory=on + verb-pc5_order=suffix + verb-pc5_inputs=verb-pc2 + verb-pc5_lrt1_name=3per-pl + verb-pc5_lrt1_feat1_name=person + verb-pc5_lrt1_feat1_value=3rd + verb-pc5_lrt1_feat1_head=subj + verb-pc5_lrt1_feat2_name=number + verb-pc5_lrt1_feat2_value=PL + verb-pc5_lrt1_feat2_head=subj + verb-pc5_lrt1_lri1_inflecting=yes + verb-pc5_lrt1_lri1_orth=-ŋi + verb-pc5_lrt2_name=non-3rd + verb-pc5_lrt2_feat1_name=person + verb-pc5_lrt2_feat1_value=1st, 2nd + verb-pc5_lrt2_feat1_head=subj + verb-pc5_lrt2_lri1_inflecting=no + verb-pc5_lrt3_name=non-3rd-pl + verb-pc5_lrt3_feat1_name=person + verb-pc5_lrt3_feat1_value=3rd + verb-pc5_lrt3_feat1_head=subj + verb-pc5_lrt3_feat2_name=number + verb-pc5_lrt3_feat2_value=SG + verb-pc5_lrt3_feat2_head=subj + verb-pc5_lrt3_lri1_inflecting=no + verb-pc6_name=ITRG + verb-pc6_obligatory=on + verb-pc6_order=suffix + verb-pc6_inputs=verb-pc4 + verb-pc6_forbid1_others=verb-pc3 + verb-pc6_lrt1_name=ITRG-2SG-INTRAN + verb-pc6_lrt1_feat1_name=number + verb-pc6_lrt1_feat1_value=SG + verb-pc6_lrt1_feat1_head=subj + verb-pc6_lrt1_feat2_name=person + verb-pc6_lrt1_feat2_value=2nd + verb-pc6_lrt1_feat2_head=subj + verb-pc6_lrt1_feat3_name=information-structure meaning + verb-pc6_lrt1_feat3_value=non-focus + verb-pc6_lrt1_feat3_head=subj + verb-pc6_lrt1_feat4_name=question + verb-pc6_lrt1_feat4_value=both + verb-pc6_lrt1_feat4_head=verb + verb-pc6_lrt1_feat5_name=argument structure + verb-pc6_lrt1_feat5_value=intrans + verb-pc6_lrt1_feat5_head=verb + verb-pc6_lrt1_feat6_name=case + verb-pc6_lrt1_feat6_value=a_case + verb-pc6_lrt1_feat6_head=subj + verb-pc6_lrt1_forbid1_others=tverb + verb-pc6_lrt1_lri1_inflecting=yes + verb-pc6_lrt1_lri1_orth=-k + verb-pc6_lrt3_name=ITRG-1PL-INTRAN + verb-pc6_lrt3_feat1_name=information-structure meaning + verb-pc6_lrt3_feat1_value=non-focus + verb-pc6_lrt3_feat1_head=subj + verb-pc6_lrt3_feat2_name=question + verb-pc6_lrt3_feat2_value=both + verb-pc6_lrt3_feat2_head=verb + verb-pc6_lrt3_feat3_name=person + verb-pc6_lrt3_feat3_value=1st + verb-pc6_lrt3_feat3_head=subj + verb-pc6_lrt3_feat4_name=number + verb-pc6_lrt3_feat4_value=PL + verb-pc6_lrt3_feat4_head=subj + verb-pc6_lrt3_feat5_name=argument structure + verb-pc6_lrt3_feat5_value=intrans + verb-pc6_lrt3_feat5_head=verb + verb-pc6_lrt3_feat6_name=case + verb-pc6_lrt3_feat6_value=a_case + verb-pc6_lrt3_feat6_head=subj + verb-pc6_lrt3_forbid1_others=tverb + verb-pc6_lrt3_lri1_inflecting=yes + verb-pc6_lrt3_lri1_orth=-ōk + verb-pc6_lrt4_name=ITRG-1PL-TRAN + verb-pc6_lrt4_feat1_name=argument structure + verb-pc6_lrt4_feat1_value=trans + verb-pc6_lrt4_feat1_head=verb + verb-pc6_lrt4_feat2_name=question + verb-pc6_lrt4_feat2_value=both + verb-pc6_lrt4_feat2_head=verb + verb-pc6_lrt4_feat3_name=information-structure meaning + verb-pc6_lrt4_feat3_value=non-focus + verb-pc6_lrt4_feat3_head=obj + verb-pc6_lrt4_feat4_name=number + verb-pc6_lrt4_feat4_value=PL + verb-pc6_lrt4_feat4_head=subj + verb-pc6_lrt4_feat5_name=person + verb-pc6_lrt4_feat5_value=1st + verb-pc6_lrt4_feat5_head=subj + verb-pc6_lrt4_feat6_name=case + verb-pc6_lrt4_feat6_value=NFO + verb-pc6_lrt4_feat6_head=obj + verb-pc6_lrt4_forbid1_others=iverb + verb-pc6_lrt4_lri1_inflecting=yes + verb-pc6_lrt4_lri1_orth=-ōk + verb-pc6_lrt5_name=ITRG-2SG-TRAN + verb-pc6_lrt5_feat1_name=number + verb-pc6_lrt5_feat1_value=SG + verb-pc6_lrt5_feat1_head=subj + verb-pc6_lrt5_feat2_name=person + verb-pc6_lrt5_feat2_value=2nd + verb-pc6_lrt5_feat2_head=subj + verb-pc6_lrt5_feat3_name=argument structure + verb-pc6_lrt5_feat3_value=a_case-focus + verb-pc6_lrt5_feat3_head=verb + verb-pc6_lrt5_feat4_name=information-structure meaning + verb-pc6_lrt5_feat4_value=non-focus + verb-pc6_lrt5_feat4_head=obj + verb-pc6_lrt5_feat6_name=question + verb-pc6_lrt5_feat6_value=both + verb-pc6_lrt5_feat6_head=verb + verb-pc6_lrt5_feat7_name=case + verb-pc6_lrt5_feat7_value=focus + verb-pc6_lrt5_feat7_head=obj + verb-pc6_lrt5_feat8_name=case + verb-pc6_lrt5_feat8_value=a_case + verb-pc6_lrt5_feat8_head=subj + verb-pc6_lrt5_forbid1_others=iverb + verb-pc6_lrt5_lri1_inflecting=yes + verb-pc6_lrt5_lri1_orth=-k + verb-pc7_name=ITRG3PER + verb-pc7_obligatory=on + verb-pc7_order=suffix + verb-pc7_inputs=verb-pc4 + verb-pc7_forbid1_others=verb-pc6 + verb-pc7_lrt1_name=ITRG-3SG-INTRAN + verb-pc7_lrt1_feat1_name=question + verb-pc7_lrt1_feat1_value=both + verb-pc7_lrt1_feat1_head=verb + verb-pc7_lrt1_feat2_name=person + verb-pc7_lrt1_feat2_value=3rd + verb-pc7_lrt1_feat2_head=subj + verb-pc7_lrt1_feat3_name=number + verb-pc7_lrt1_feat3_value=SG + verb-pc7_lrt1_feat3_head=subj + verb-pc7_lrt1_feat4_name=information-structure meaning + verb-pc7_lrt1_feat4_value=non-focus + verb-pc7_lrt1_feat4_head=subj + verb-pc7_lrt1_feat5_name=argument structure + verb-pc7_lrt1_feat5_value=intrans + verb-pc7_lrt1_feat5_head=verb + verb-pc7_lrt1_feat6_name=case + verb-pc7_lrt1_feat6_value=a_case + verb-pc7_lrt1_feat6_head=subj + verb-pc7_lrt1_lri1_inflecting=no + verb-pc7_lrt2_name=ITRG-3SG-TRAN + verb-pc7_lrt2_feat1_name=number + verb-pc7_lrt2_feat1_value=SG + verb-pc7_lrt2_feat1_head=subj + verb-pc7_lrt2_feat2_name=person + verb-pc7_lrt2_feat2_value=3rd + verb-pc7_lrt2_feat2_head=subj + verb-pc7_lrt2_feat3_name=information-structure meaning + verb-pc7_lrt2_feat3_value=non-focus + verb-pc7_lrt2_feat3_head=obj + verb-pc7_lrt2_feat4_name=case + verb-pc7_lrt2_feat4_value=a_case + verb-pc7_lrt2_feat4_head=subj + verb-pc7_lrt2_feat5_name=argument structure + verb-pc7_lrt2_feat5_value=trans + verb-pc7_lrt2_feat5_head=verb + verb-pc7_lrt2_feat6_name=question + verb-pc7_lrt2_feat6_value=both + verb-pc7_lrt2_feat6_head=verb + verb-pc7_lrt2_feat7_name=information-structure meaning + verb-pc7_lrt2_feat7_value=focus + verb-pc7_lrt2_feat7_head=subj + verb-pc7_lrt2_feat8_name=case + verb-pc7_lrt2_feat8_value=o_case, NFO + verb-pc7_lrt2_feat8_head=obj + verb-pc7_lrt2_lri1_inflecting=no + +section=toolbox-import + +section=test-sentences + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh10-svo-multi-all-oblig-min b/tests/regression/choices/wh10-svo-multi-all-oblig-min new file mode 100644 index 000000000..d1a4e844a --- /dev/null +++ b/tests/regression/choices/wh10-svo-multi-all-oblig-min @@ -0,0 +1,105 @@ + +version=32 + +section=general +language=wh10-svo-multi-oblig +punctuation-chars=discard-all + +section=word-order +word-order=svo +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=multi +matrix-front-opt=all-oblig + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_where_a_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=who sleeps + sentence2_orth=sleeps who + sentence2_star=on + sentence3_orth=who sees what + sentence3_star=on + sentence4_orth=who what sees + sentence5_orth=sees who what + sentence5_star=on + sentence6_orth=what who sees + sentence7_orth=where who sleeps + sentence8_orth=who sleeps where + sentence8_star=on + sentence9_orth=who where sleeps + sentence10_orth=sleeps who where + sentence10_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh11-svo-multi-one-oblig b/tests/regression/choices/wh11-svo-multi-one-oblig new file mode 100644 index 000000000..c9a45f3ce --- /dev/null +++ b/tests/regression/choices/wh11-svo-multi-one-oblig @@ -0,0 +1,103 @@ + +version=32 + +section=general +language=wh11-svo-multi-one-oblig +punctuation-chars=discard-all + +section=word-order +word-order=svo +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=multi +matrix-front-opt=single-oblig + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_where_a_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=who sleeps + sentence2_orth=sleeps who + sentence2_star=on + sentence3_orth=who sees what + sentence4_orth=who what sees + sentence5_orth=sees who what + sentence5_star=on + sentence6_orth=what who sees + sentence7_orth=where who sleeps + sentence8_orth=who sleeps where + sentence9_orth=who where sleeps + sentence10_orth=sleeps who where + sentence10_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh12-vos-sg-oblig-pied-adp-opt b/tests/regression/choices/wh12-vos-sg-oblig-pied-adp-opt new file mode 100644 index 000000000..384a15a66 --- /dev/null +++ b/tests/regression/choices/wh12-vos-sg-oblig-pied-adp-opt @@ -0,0 +1,115 @@ + +version=32 + +section=general +language=wh12-vos-sg-oblig-pied-adp-opt +punctuation-chars=discard-all + +section=word-order +word-order=vos +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig +pied-pip=on +oblig-pied-pip-noun=on +pied-pip-adp=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=obl + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=obl + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + det1_name=def + det1_stem1_orth=the + det1_stem1_pred=_the_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence27_orth=which cat sleeps? + sentence28_orth=cat which sleeps? + sentence28_star=on + sentence29_orth=sleeps which cat? + sentence29_star=on + sentence30_orth=sleeps cat which? + sentence30_star=on + sentence31_orth=which house sees the cat ? + sentence32_orth=the house which cat sees? + sentence32_star=on + sentence33_orth=sees the cat which house? + sentence33_star=on + sentence36_orth=which sees the cat house? + sentence36_star=on + sentence37_orth=in which house sleeps the cat? + sentence38_orth=which house sleeps the cat in? + sentence39_orth=sleeps the cat in the house + sentence40_orth=in the house sleeps the cat + sentence40_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh13-oblig-particle-osv b/tests/regression/choices/wh13-oblig-particle-osv new file mode 100644 index 000000000..03aac464c --- /dev/null +++ b/tests/regression/choices/wh13-oblig-particle-osv @@ -0,0 +1,126 @@ + +version=33 + +section=general +language=wh13-insitu-particle-oblig +punctuation-chars=discard-all + +section=word-order +word-order=osv +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-part=on +q-part-order=before + q-particle1_orth=Q + q-particle1_main=on + q-particle1_embed=on + q-particle1_wh=oblig + +section=wh-q +front-matrix=in-situ + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=n1 + noun1_stem1_pred=_n1_n_rel + noun1_stem2_orth=n2 + noun1_stem2_pred=_n2_n_rel + noun2_name=wh + noun2_inter=on + noun2_det=imp + noun2_stem1_orth=who + noun2_stem1_pred=_person_n_rel + noun2_stem2_orth=what + noun2_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=iv + verb1_stem1_pred=_iv_v_rel + verb2_valence=trans + verb2_stem1_orth=tv + verb2_stem1_pred=_tv_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_a_rel + adv1_inter=on + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=Q who iv + sentence2_orth=Q what who tv + sentence3_orth=Q iv who + sentence3_star=on + sentence4_orth=Q what tv who + sentence4_star=on + sentence5_orth=Q where n1 iv + sentence6_orth=Q n1 iv where + sentence7_orth=Q n1 where iv + sentence8_orth=who iv + sentence8_star=on + sentence9_orth=who iv Q + sentence9_star=on + sentence10_orth=what who tv + sentence10_star=on + sentence11_orth=what who tv Q + sentence11_star=on + sentence12_orth=who Q iv + sentence12_star=on + sentence13_orth=what who Q tv + sentence13_star=on + sentence14_orth=where n1 iv + sentence14_star=on + sentence15_orth=ni iv where + sentence15_star=on + sentence16_orth=n1 where iv + sentence16_star=on + sentence17_orth=where n1 iv Q + sentence17_star=on + sentence18_orth=n1 iv where Q + sentence18_star=on + sentence19_orth=n1 Q where iv + sentence19_star=on + sentence20_orth=n1 where Q iv + sentence20_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh14-oblig-imposs-part b/tests/regression/choices/wh14-oblig-imposs-part new file mode 100644 index 000000000..2ee0022f4 --- /dev/null +++ b/tests/regression/choices/wh14-oblig-imposs-part @@ -0,0 +1,102 @@ + +version=33 + +section=general +language=wh14-insitu-particles-oblig-imp + +section=word-order +word-order=osv +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-part=on +q-part-order=before + q-particle1_orth=Q-oblig + q-particle1_main=on + q-particle1_embed=on + q-particle1_wh=oblig + q-particle2_orth=Q-imp + q-particle2_main=on + q-particle2_embed=on + q-particle2_wh=imp + +section=wh-q +front-matrix=in-situ + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=n1 + noun1_stem1_pred=_n1_n_rel + noun1_stem2_orth=n2 + noun1_stem2_pred=_n2_n_rel + noun2_name=wh + noun2_inter=on + noun2_det=imp + noun2_stem1_orth=who + noun2_stem1_pred=_person_n_rel + noun2_stem2_orth=what + noun2_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=iv + verb1_stem1_pred=_iv_v_rel + verb2_valence=trans + verb2_stem1_orth=tv + verb2_stem1_pred=_tv_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_a_rel + adv1_inter=on + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=Q-oblig who iv + sentence2_orth=Q-oblig what who tv + sentence3_orth=Q-imp who iv + sentence3_star=on + sentence4_orth=Q-imp what who tv + sentence4_star=on + sentence5_orth=Q-imp n1 iv + sentence6_orth=Q-oblig n1 iv + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh15-insitu-oblig-part-vfinal b/tests/regression/choices/wh15-insitu-oblig-part-vfinal new file mode 100644 index 000000000..6d51bf281 --- /dev/null +++ b/tests/regression/choices/wh15-insitu-oblig-part-vfinal @@ -0,0 +1,124 @@ + +version=33 + +section=general +language=wh15-insitu-oblig-part-vfinal +punctuation-chars=discard-all + +section=word-order +word-order=v-final +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-part=on +q-part-order=second + q-particle1_orth=Q + q-particle1_main=on + q-particle1_embed=on + q-particle1_wh=oblig + +section=wh-q +front-matrix=in-situ + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=n1 + noun1_stem1_pred=_n1_n_rel + noun1_stem2_orth=n2 + noun1_stem2_pred=_n2_n_rel + noun2_name=wh + noun2_inter=on + noun2_det=imp + noun2_stem1_orth=who + noun2_stem1_pred=_person_n_rel + noun2_stem2_orth=what + noun2_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=iv + verb1_stem1_pred=_iv_v_rel + verb2_valence=trans + verb2_stem1_orth=tv + verb2_stem1_pred=_tv_v_rel + adv1_name=wh-loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_a_rel + adv1_inter=on + adv1_type=loc + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=n1 iv + sentence2_orth=iv n1 + sentence2_star=on + sentence3_orth=n1 Q iv + sentence4_orth=n1 iv Q + sentence4_star=on + sentence5_orth=Q n1 iv + sentence5_star=on + sentence6_orth=n1 n2 tv + sentence7_orth=n1 tv n2 + sentence7_star=on + sentence8_orth=tv n1 n2 + sentence8_star=on + sentence9_orth=n1 Q n2 tv + sentence10_orth=Q n1 n2 tv + sentence10_star=on + sentence11_orth=n1 n2 Q tv + sentence11_star=on + sentence12_orth=n1 n2 tv Q + sentence12_star=on + sentence13_orth=who Q iv + sentence14_orth=who iv + sentence14_star=on + sentence15_orth=who Q what tv + sentence16_orth=who what Q tv + sentence16_star=on + sentence17_orth=Q who iv + sentence17_star=on + sentence18_orth=Q who what tv + sentence18_star=on + sentence19_orth=who what tv Q + sentence19_star=on + sentence20_orth=where Q n1 iv + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh16-morph-sep-opt b/tests/regression/choices/wh16-morph-sep-opt new file mode 100644 index 000000000..b54351e5c --- /dev/null +++ b/tests/regression/choices/wh16-morph-sep-opt @@ -0,0 +1,110 @@ + +version=34 + +section=general +language=wh16-morph-sep +archive=no + +section=word-order +word-order=svo +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features +form-fin-nf=on + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-infl=on + +section=wh-q +wh-q-infl=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_name=cn + noun1_det=imp + noun1_stem1_orth=n + noun1_stem1_pred=_n1_n_rel + noun2_name=qn + noun2_inter=on + noun2_det=imp + noun2_stem1_orth=who + noun2_stem1_pred=_person_n_rel + noun2_stem2_orth=what + noun2_stem2_pred=_thing_n_rel + verb1_name=intran + verb1_valence=intrans + verb1_stem1_orth=iv + verb1_stem1_pred=_iv_v_rel + verb2_name=tran + verb2_valence=trans + verb2_stem1_orth=tv + verb2_stem1_pred=_tv_v_rel + +section=morphology + verb-pc1_name=itrg + verb-pc1_order=suffix + verb-pc1_inputs=verb + verb-pc1_lrt1_name=PQ + verb-pc1_lrt1_feat1_name=question + verb-pc1_lrt1_feat1_value=polar + verb-pc1_lrt1_feat1_head=verb + verb-pc1_lrt1_lri1_inflecting=yes + verb-pc1_lrt1_lri1_orth=-PQ + verb-pc1_lrt2_name=WHQ + verb-pc1_lrt2_feat1_name=question + verb-pc1_lrt2_feat1_value=wh + verb-pc1_lrt2_feat1_head=verb + verb-pc1_lrt2_lri1_inflecting=yes + verb-pc1_lrt2_lri1_orth=-WHQ + +section=toolbox-import + +section=test-sentences + sentence1_orth=n iv + sentence2_orth=n tv n + sentence3_orth=n iv-PQ + sentence4_orth=n tv-PQ n + sentence5_orth=n iv-WHQ + sentence5_star=on + sentence6_orth=n tv-WHQ n + sentence6_star=on + sentence7_orth=who iv + sentence8_orth=who iv-WHQ + sentence9_orth=who iv-PQ + sentence9_star=on + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh17-morph-sep-oblig b/tests/regression/choices/wh17-morph-sep-oblig new file mode 100644 index 000000000..e94b66408 --- /dev/null +++ b/tests/regression/choices/wh17-morph-sep-oblig @@ -0,0 +1,122 @@ + +version=34 + +section=general +language=wh17-morph-sep-oblig +archive=no + +section=word-order +word-order=svo +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features +form-fin-nf=on + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-infl=on + +section=wh-q +wh-q-infl=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_name=cn + noun1_det=imp + noun1_stem1_orth=n + noun1_stem1_pred=_n1_n_rel + noun2_name=qn + noun2_inter=on + noun2_det=imp + noun2_stem1_orth=who + noun2_stem1_pred=_person_n_rel + noun2_stem2_orth=what + noun2_stem2_pred=_thing_n_rel + verb1_name=intran + verb1_valence=intrans + verb1_stem1_orth=iv + verb1_stem1_pred=_iv_v_rel + verb2_name=tran + verb2_valence=trans + verb2_stem1_orth=tv + verb2_stem1_pred=_tv_v_rel + +section=morphology + verb-pc1_name=itrg + verb-pc1_obligatory=on + verb-pc1_order=suffix + verb-pc1_inputs=verb + verb-pc1_forbid1_others=verb-pc1 + verb-pc1_lrt1_name=PQ + verb-pc1_lrt1_feat1_name=question + verb-pc1_lrt1_feat1_value=polar + verb-pc1_lrt1_feat1_head=verb + verb-pc1_lrt1_lri1_inflecting=yes + verb-pc1_lrt1_lri1_orth=-PQ + verb-pc1_lrt2_name=WHQ + verb-pc1_lrt2_feat1_name=question + verb-pc1_lrt2_feat1_value=wh + verb-pc1_lrt2_feat1_head=verb + verb-pc1_lrt2_lri1_inflecting=yes + verb-pc1_lrt2_lri1_orth=-WHQ + verb-pc2_name=nonques + verb-pc2_obligatory=on + verb-pc2_order=suffix + verb-pc2_inputs=verb + verb-pc2_lrt1_name=decl + verb-pc2_lrt1_feat1_name=question + verb-pc2_lrt1_feat1_value=no + verb-pc2_lrt1_feat1_head=verb + verb-pc2_lrt1_lri1_inflecting=no + +section=toolbox-import + +section=test-sentences + sentence1_orth=n iv + sentence2_orth=n tv n + sentence3_orth=n iv-PQ + sentence4_orth=n tv-PQ n + sentence5_orth=n iv-WHQ + sentence5_star=on + sentence6_orth=n tv-WHQ n + sentence6_star=on + sentence7_orth=who iv + sentence7_star=on + sentence8_orth=who iv-WHQ + sentence9_orth=who iv-PQ + sentence9_star=on + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh18-aux-inv-both b/tests/regression/choices/wh18-aux-inv-both new file mode 100644 index 000000000..7470c13af --- /dev/null +++ b/tests/regression/choices/wh18-aux-inv-both @@ -0,0 +1,239 @@ + +version=34 + +section=general +language=wh18-aux-inv-both + +section=word-order +word-order=svo +has-dets=yes +noun-det-order=det-noun +has-aux=yes +aux-comp-order=before +aux-comp=vp +multiple-aux=no +subord-word-order=same + +section=number + number1_name=sg + number2_name=pl + +section=person +person=1-2-3 +first-person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features +form-fin-nf=on + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-inv=on +q-inv-verb=aux + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig +pied-pip=on +oblig-pied-pip-noun=on +pied-pip-adp=on +wh-inv-matrix=on +wh-inv-embed=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + comps1_clause-pos-same=on + comps1_ques=ques + comps1_comp-pos-before=on + comps1_comp=oblig + comps1_comp-q=on + comps1_stem1_orth=whether + comps1_feat1_name=form + comps1_feat1_value=finite + comps2_clause-pos-same=on + comps2_ques=prop + comps2_comp-pos-before=on + comps2_comp=opt + comps2_stem1_orth=that + comps2_feat1_name=form + comps2_feat1_value=finite + +section=clausalmods + +section=lexicon + noun1_name=common + noun1_feat1_name=person + noun1_feat1_value=3rd + noun1_det=obl + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun1_stem2_orth=dog + noun1_stem2_pred=_dog_n_rel + noun1_stem3_orth=house + noun1_stem3_pred=_house_n_rel + noun2_name=1sg-pronoun + noun2_feat1_name=person + noun2_feat1_value=1st + noun2_feat2_name=number + noun2_feat2_value=sg + noun2_det=imp + noun2_stem1_orth=I + noun2_stem1_pred=_pronoun_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_name=itr + verb1_valence=intrans + verb1_stem1_orth=sleep + verb1_stem1_pred=_sleep_v_rel + verb2_name=tr + verb2_valence=trans + verb2_stem1_orth=chase + verb2_stem1_pred=_chase_v_rel + verb3_name=wonder + verb3_valence=trans,comps1 + verb3_stem1_orth=wonder + verb3_stem1_pred=_wonder_v_rel + verb4_name=think + verb4_valence=trans,comps2 + verb4_stem1_orth=think + verb4_stem1_pred=_think_v_rel + adj1_name=regular + adj1_mod=both + adj1_modpos=after + adj1_predcop=obl + adj1_stem1_orth=big + adj1_stem1_pred=_big_a_rel + adj1_stem2_orth=small + adj1_stem2_pred=_small_a_rel + aux1_name=do + aux1_sem=no-pred + aux1_subj=np + aux1_compfeature1_name=form + aux1_compfeature1_value=nonfinite + aux1_stem1_orth=do + cop1_name=3rd-sg + cop1_comptype=ap + cop1_feat1_name=number + cop1_feat1_value=sg + cop1_feat1_head=subj + cop1_feat2_name=person + cop1_feat2_value=3rd + cop1_feat2_head=subj + cop1_stem1_orth=is + cop2_name=pl + cop2_comptype=ap + cop2_feat1_name=number + cop2_feat1_value=pl + cop2_feat1_head=subj + cop2_stem1_orth=are + det1_stem1_orth=the + det1_stem1_pred=_def_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + adv1_name=wh-loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_a_rel + adv1_inter=on + adv1_type=loc + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + noun-pc1_name=num + noun-pc1_obligatory=on + noun-pc1_order=suffix + noun-pc1_inputs=noun1 + noun-pc1_lrt1_name=singular + noun-pc1_lrt1_feat1_name=number + noun-pc1_lrt1_feat1_value=sg + noun-pc1_lrt1_feat1_head=itself + noun-pc1_lrt1_lri1_inflecting=no + noun-pc1_lrt2_name=plural + noun-pc1_lrt2_feat1_name=number + noun-pc1_lrt2_feat1_value=pl + noun-pc1_lrt2_feat1_head=itself + noun-pc1_lrt2_lri1_inflecting=yes + noun-pc1_lrt2_lri1_orth=s + verb-pc1_name=pernum + verb-pc1_obligatory=on + verb-pc1_order=suffix + verb-pc1_inputs=verb + verb-pc1_lrt1_name=3sg + verb-pc1_lrt1_feat1_name=person + verb-pc1_lrt1_feat1_value=3rd + verb-pc1_lrt1_feat1_head=subj + verb-pc1_lrt1_feat2_name=number + verb-pc1_lrt1_feat2_value=sg + verb-pc1_lrt1_feat2_head=subj + verb-pc1_lrt1_feat3_name=form + verb-pc1_lrt1_feat3_value=finite + verb-pc1_lrt1_feat3_head=verb + verb-pc1_lrt1_lri1_inflecting=yes + verb-pc1_lrt1_lri1_orth=s + verb-pc1_lrt1_lri2_inflecting=yes + verb-pc1_lrt1_lri2_orth=es + verb-pc1_lrt2_name=pl + verb-pc1_lrt2_feat1_name=number + verb-pc1_lrt2_feat1_value=pl + verb-pc1_lrt2_feat1_head=subj + verb-pc1_lrt2_feat2_name=form + verb-pc1_lrt2_feat2_value=finite + verb-pc1_lrt2_feat2_head=verb + verb-pc1_lrt2_lri1_inflecting=no + verb-pc1_lrt3_name=non-3rd + verb-pc1_lrt3_feat1_name=person + verb-pc1_lrt3_feat1_value=1st, 2nd + verb-pc1_lrt3_feat1_head=subj + verb-pc1_lrt3_feat2_name=form + verb-pc1_lrt3_feat2_value=finite + verb-pc1_lrt3_feat2_head=verb + verb-pc1_lrt3_lri1_inflecting=no + verb-pc1_lrt4_name=nonfin + verb-pc1_lrt4_feat1_name=form + verb-pc1_lrt4_feat1_value=nonfinite + verb-pc1_lrt4_feat1_head=verb + verb-pc1_lrt4_lri1_inflecting=no + +section=toolbox-import + +section=test-sentences + sentence1_orth=do the dogs sleep + sentence2_orth=I wonder whether do the dogs sleep + sentence3_orth=I wonder whether the dogs sleep + sentence3_star=on + sentence4_orth=who do sleep + sentence5_orth=I wonder who do sleep + sentence6_orth=I wonder who sleep + sentence6_star=on + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh19-cfocus-marking b/tests/regression/choices/wh19-cfocus-marking new file mode 100644 index 000000000..3f7681222 --- /dev/null +++ b/tests/regression/choices/wh19-cfocus-marking @@ -0,0 +1,114 @@ + +version=34 + +section=general +language=wh19-cfocus-marking + +section=word-order +word-order=sov +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + number1_name=sing + number2_name=plural + +section=person +person=1-2-3 +first-person=none + +section=gender + gender1_name=masc + gender2_name=fem + +section=case +case-marking=nom-acc +nom-acc-nom-case-name=nom +nom-acc-acc-case-name=acc + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=in-situ +focus-marking=on + +section=info-str + c-focus-marker1_type=modifier + c-focus-marker1_pos=after + c-focus-marker1_cat=nouns + c-focus-marker1_orth=CF + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_name=common-noun + noun1_det=opt + noun1_stem1_orth=CN + noun1_stem1_pred=_dog_n_rel + noun2_name=proper-noun + noun2_det=imp + noun2_stem1_orth=PN + noun2_stem1_pred=_Kim_n_rel + noun3_name=pronoun + noun3_det=imp + noun3_stem1_orth=PRO + noun3_stem1_pred=pronoun_q_rel + noun4_name=QN + noun4_inter=on + noun4_det=imp + noun4_stem1_orth=who + noun4_stem1_pred=_person_n_rel + noun4_stem2_orth=what + noun4_stem2_pred=_thing_n_rel + verb1_name=intransitive-verb + verb1_valence=intrans + verb1_stem1_orth=IV + verb1_stem1_pred=_bark_v_rel + verb2_name=transitive-verb + verb2_valence=trans + verb2_stem1_orth=TV + verb2_stem1_pred=_chase_v_rel + det1_name=det + det1_stem1_orth=DET + det1_stem1_pred=exist_q_rel + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=CN IV + sentence2_orth=CN CF IV + sentence3_orth=who IV + sentence4_orth=CN what TV + sentence5_orth=CN what CF TV + sentence6_orth=who CF IV + sentence7_orth=who CF CN TV + sentence8_orth=CN CN TV + sentence9_orth=CN CF CN TV + sentence10_orth=CN CN CF TV + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh2-sov-sg-oblig-min b/tests/regression/choices/wh2-sov-sg-oblig-min new file mode 100644 index 000000000..390f853e6 --- /dev/null +++ b/tests/regression/choices/wh2-sov-sg-oblig-min @@ -0,0 +1,107 @@ + +version=32 + +section=general +language=wh2-sov-sg-oblig-min +punctuation-chars=discard-all + +section=word-order +word-order=sov +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig +no-multi=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=opt + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=opt + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence3_orth=cat house sees + sentence4_orth=cat sees house + sentence4_star=on + sentence7_orth=what cat sees? + sentence8_orth=cat sees what? + sentence8_star=on + sentence9_orth=cat what sees? + sentence9_star=on + sentence10_orth=cat cat sees in house + sentence11_orth=what cat sees in house? + sentence12_orth=cat sees cat in house + sentence12_star=on + sentence13_orth=cat what sees in house? + sentence13_star=on + sentence14_orth=cat sees what in house? + sentence14_star=on + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh20-no-cfocus-marking b/tests/regression/choices/wh20-no-cfocus-marking new file mode 100644 index 000000000..99a49d829 --- /dev/null +++ b/tests/regression/choices/wh20-no-cfocus-marking @@ -0,0 +1,116 @@ + +version=34 + +section=general +language=wh20-no-cfocus-marking + +section=word-order +word-order=sov +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + number1_name=sing + number2_name=plural + +section=person +person=1-2-3 +first-person=none + +section=gender + gender1_name=masc + gender2_name=fem + +section=case +case-marking=nom-acc +nom-acc-nom-case-name=nom +nom-acc-acc-case-name=acc + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=in-situ + +section=info-str + c-focus-marker1_type=modifier + c-focus-marker1_pos=after + c-focus-marker1_cat=nouns + c-focus-marker1_orth=CF + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_name=common-noun + noun1_det=opt + noun1_stem1_orth=CN + noun1_stem1_pred=_dog_n_rel + noun2_name=proper-noun + noun2_det=imp + noun2_stem1_orth=PN + noun2_stem1_pred=_Kim_n_rel + noun3_name=pronoun + noun3_det=imp + noun3_stem1_orth=PRO + noun3_stem1_pred=pronoun_q_rel + noun4_name=QN + noun4_inter=on + noun4_det=imp + noun4_stem1_orth=who + noun4_stem1_pred=_person_n_rel + noun4_stem2_orth=what + noun4_stem2_pred=_thing_n_rel + verb1_name=intransitive-verb + verb1_valence=intrans + verb1_stem1_orth=IV + verb1_stem1_pred=_bark_v_rel + verb2_name=transitive-verb + verb2_valence=trans + verb2_stem1_orth=TV + verb2_stem1_pred=_chase_v_rel + det1_name=det + det1_stem1_orth=DET + det1_stem1_pred=exist_q_rel + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=CN IV + sentence2_orth=CN CF IV + sentence3_orth=who IV + sentence4_orth=CN what TV + sentence5_orth=CN what CF TV + sentence5_star=on + sentence6_orth=who CF IV + sentence6_star=on + sentence7_orth=who CF CN TV + sentence7_star=on + sentence8_orth=CN CN TV + sentence9_orth=CN CF CN TV + sentence10_orth=CN CN CF TV + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh21-embed-insitu b/tests/regression/choices/wh21-embed-insitu new file mode 100644 index 000000000..cb143f718 --- /dev/null +++ b/tests/regression/choices/wh21-embed-insitu @@ -0,0 +1,121 @@ + +version=34 + +section=general +language=wh21-sg-opt-embed-insitu +punctuation-chars=discard-all + +section=word-order +word-order=svo +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=none-oblig +embed-insitu=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + comps1_clause-pos-same=on + comps1_ques=ques + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + verb3_name=embed + verb3_valence=trans,comps1 + verb3_stem1_orth=asks + verb3_stem1_pred=_ask_v_rel + adv1_name=wh-loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + adv1_type=loc + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=cat sleeps + sentence2_orth=sleeps cat + sentence2_star=on + sentence3_orth=cat sees house + sentence4_orth=cat house sees + sentence4_star=on + sentence5_orth=who sleeps? + sentence6_orth=sleeps who? + sentence6_star=on + sentence7_orth=what cat sees? + sentence8_orth=cat sees what? + sentence9_orth=cat what sees? + sentence9_star=on + sentence10_orth=cat sleeps in house + sentence11_orth=where cat sleeps? + sentence12_orth=cat sleeps where? + sentence13_orth=cat where sleeps? + sentence14_orth=who sees what? + sentence15_orth=who what sees? + sentence15_star=on + sentence16_orth=cat asks who sleeps + sentence17_orth=cat asks who sees what + sentence18_orth=cat asks cat sees what + sentence19_orth=cat asks what cat sees + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh22-no-multi-ques b/tests/regression/choices/wh22-no-multi-ques new file mode 100644 index 000000000..db332ba4f --- /dev/null +++ b/tests/regression/choices/wh22-no-multi-ques @@ -0,0 +1,132 @@ + +version=34 + +section=general +language=wh22-no-multi-que + +section=word-order +word-order=vso +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=none-oblig +embed-insitu=on +no-multi-ques=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + comps1_clause-pos-same=on + comps1_ques=ques + +section=clausalmods + +section=lexicon + noun1_det=obl + noun1_stem1_orth=n1 + noun1_stem1_pred=_n1_n_rel + noun2_det=obl + noun2_stem1_orth=n2 + noun2_stem1_pred=_n2_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=iv + verb1_stem1_pred=_iv_v_rel + verb2_valence=trans + verb2_stem1_orth=tv + verb2_stem1_pred=_tv_v_rel + verb3_name=ask + verb3_valence=trans,comps1 + verb3_stem1_orth=ask + verb3_stem1_pred=_ask_v_rel + det1_name=def + det1_stem1_orth=the + det1_stem1_pred=_the_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + adv1_name=wh-loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_a_rel + adv1_inter=on + adv1_type=loc + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=tv the n1 the n2 + sentence2_orth=who tv the n2? + sentence3_orth=tv who the n2? + sentence4_orth=tv the n1 what? + sentence5_orth=what tv the n1? + sentence6_orth=tv who what? + sentence6_star=on + sentence7_orth=who tv what? + sentence7_star=on + sentence8_orth=what tv who? + sentence8_star=on + sentence9_orth=where tv the n1 the n2? + sentence10_orth=tv the n1 the n2 where? + sentence11_orth=who tv the n2 where? + sentence11_star=on + sentence12_orth=which n1 tv the n2? + sentence13_orth=which n1 tv what? + sentence13_star=on + sentence14_orth=ask the n1 who iv + sentence15_orth=ask the n1 iv who + sentence16_orth=ask the n1 who tv the n2 + sentence17_orth=ask the n1 who tv what + sentence17_star=on + sentence18_orth=ask the n1 who tv the n2 where + sentence18_star=on + sentence19_orth=ask the n1 where iv the n2 + sentence20_orth=who ask the n1 iv + sentence21_orth=who ask the n1 tv what + sentence21_star=on + sentence22_orth=who ask the n1 tv the n2 + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh23-quesverbs b/tests/regression/choices/wh23-quesverbs new file mode 100644 index 000000000..4ac46fe95 --- /dev/null +++ b/tests/regression/choices/wh23-quesverbs @@ -0,0 +1,140 @@ + +version=34 + +section=general +language=wh23-quesverbs +comment=This is a mixture of languages (cmn, coo, lvk, and cir) featuring interrogative verbs. No morphology. The point is just to test the MRS of the verbs. + +section=word-order +word-order=free +has-dets=no +has-aux=no + +section=number + number1_name=sg + number2_name=pl + +section=person +person=1-2-3 +first-person=none + +section=gender + gender1_name=masc + +section=case +case-marking=none +erg-abs-erg-case-name=ergative +erg-abs-abs-case-name=absolutive + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +wh-q-inter-verbs=on + +section=info-str + +section=arg-opt +subj-drop=subj-drop-all +subj-mark-drop=subj-mark-drop-req +subj-mark-no-drop=subj-mark-no-drop-opt +subj-con=subj-con-always +obj-drop=obj-drop-all +obj-mark-drop=obj-mark-drop-req +obj-mark-no-drop=obj-mark-no-drop-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_name=2sg-pron + noun1_pron=on + noun1_feat1_name=person + noun1_feat1_value=2nd + noun1_feat2_name=number + noun1_feat2_value=sg + noun1_det=imp + noun1_stem1_orth=ke + noun1_stem1_pred=_2sg_n_rel + noun1_stem2_orth=nǐ + noun1_stem2_pred=_2sg_n_rel + noun2_name=who + noun2_inter=on + noun2_det=imp + noun2_stem1_orth=maki + noun2_stem1_pred=_person_n_rel + verb1_name=iv + verb1_valence=intrans + verb1_stem1_orth=jatč + verb1_stem1_pred=_come_v_rel + verb1_stem2_orth=qit + verb1_stem2_pred=_freeze_v_rel + verb2_name=tv + verb2_valence=trans + verb2_stem1_orth=jallaju + verb2_stem1_pred=_take_v_rel + qverb1_name=be-what + qverb1_predtype=ref + qverb1_stem1_orth=trò + qverb1_stem1_verbpred=be + qverb1_stem1_nounpred=thing + qverb2_name=do-what + qverb2_predtype=ref + qverb2_stem1_orth=gànmá + qverb2_stem1_verbpred=do + qverb2_stem1_nounpred=thing + qverb3_name=be-where + qverb3_predtype=loc + qverb3_stem2_orth=vasia + qverb3_stem2_verbpred=be + qverb3_stem2_nounpred=place + qverb4_name=go-where + qverb4_predtype=loc + qverb4_stem1_orth=čem + qverb4_stem1_verbpred=go + qverb4_stem1_nounpred=place + qverb5_name=qprog + qverb5_predtype=ref + qverb5_stem1_orth=ʔeʔenət + qverb5_stem1_verbpred=say + qverb5_stem1_nounpred=thing + adv1_name=when + adv1_stem1_orth=tite + adv1_stem1_pred=_place_a_rel + adv1_inter=on + adv1_type=loc + adv3_name=now + adv3_stem1_orth=igirkej + adv3_stem1_pred=_right.now_a_rel + adv3_type=loc + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence2_orth=nǐ gànmá + sentence3_orth=ke trò + sentence4_orth=vasia-m + sentence5_orth=ʔeʔenət-čxw + sentence6_orth=čem + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh24-particles-embed b/tests/regression/choices/wh24-particles-embed new file mode 100644 index 000000000..926155944 --- /dev/null +++ b/tests/regression/choices/wh24-particles-embed @@ -0,0 +1,134 @@ + +version=34 + +section=general +language=wh24-embed-insitu-verb-subcat +punctuation-chars=discard-all + +section=word-order +word-order=sov +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no +q-part=on +q-part-order=after + q-particle1_orth=Q1 + q-particle1_main=on + q-particle1_wh=imp + q-particle2_orth=Q2 + q-particle2_embed=on + q-particle2_wh=oblig + +section=wh-q +front-matrix=in-situ + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + comps1_clause-pos-same=on + comps1_ques=ques + comps2_clause-pos-same=on + comps2_ques=prop + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + verb3_name=wonder + verb3_valence=trans,comps1 + verb3_stem1_orth=asks + verb3_stem1_pred=_ask_v_rel + verb3_stem2_orth=knows + verb3_stem2_pred=_knows_v_rel + verb4_name=think + verb4_valence=trans,comps2 + verb4_stem1_orth=thinks + verb4_stem1_pred=_think_v_rel + verb4_stem2_orth=knows + verb4_stem2_pred=_know_v_rel + adv1_name=wh-loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + adv1_type=loc + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence16_orth=cat who sleeps Q2 asks + sentence17_orth=cat who what sees Q2 asks + sentence18_orth=cat cat what sees Q2 asks + sentence20_orth=cat cat house sees thinks + sentence21_orth=cat cat house sees knows + sentence22_orth=cat cat house sees asks + sentence22_star=on + sentence23_orth=cat cat house sees Q2 asks + sentence23_star=on + sentence24_orth=cat cat house sees Q2 knows + sentence24_star=on + sentence25_orth=cat cat house sees Q2 thinks + sentence25_star=on + sentence26_orth=cat cat what sees Q2 knows + sentence27_orth=cat sleeps Q1 + sentence28_orth=cat what sees Q1? + sentence28_star=on + sentence29_orth=cat cat what sees Q1 asks + sentence29_star=on + sentence30_orth=cat what sees Q2 + sentence30_star=on + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh25-no-multi-insitu-morph b/tests/regression/choices/wh25-no-multi-insitu-morph new file mode 100644 index 000000000..d4170a145 --- /dev/null +++ b/tests/regression/choices/wh25-no-multi-insitu-morph @@ -0,0 +1,122 @@ + +version=34 + +section=general +language=wh25-no-multi-insitu + +section=word-order +word-order=vos +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=in-situ +no-multi-ques=on +wh-q-infl=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + comps1_clause-pos-same=on + comps1_ques=ques + +section=clausalmods + +section=lexicon + noun1_det=obl + noun1_stem1_orth=n1 + noun1_stem1_pred=_n1_n_rel + noun2_det=obl + noun2_stem1_orth=n2 + noun2_stem1_pred=_n2_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=iv + verb1_stem1_pred=_iv_v_rel + verb2_valence=trans + verb2_stem1_orth=tv + verb2_stem1_pred=_tv_v_rel + verb3_name=ask + verb3_valence=trans,comps1 + verb3_stem1_orth=ask + verb3_stem1_pred=_ask_v_rel + det1_name=def + det1_stem1_orth=the + det1_stem1_pred=_the_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + adv1_name=wh-loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_a_rel + adv1_inter=on + adv1_type=loc + +section=morphology + verb-pc1_name=itrg + verb-pc1_order=suffix + verb-pc1_inputs=verb + verb-pc1_lrt1_name=ques + verb-pc1_lrt1_lri1_inflecting=yes + verb-pc1_lrt1_lri1_orth=-Q + +section=toolbox-import + +section=test-sentences + sentence1_orth=tv the n2 the n1 + sentence2_orth=tv what the n1? + sentence3_orth=tv the n2 who? + sentence4_orth=who tv the n2? + sentence4_star=on + sentence5_orth=where iv the n1? + sentence6_orth=iv the n1 where? + sentence7_orth=iv where the n1? + sentence8_orth=who iv? + sentence8_star=on + sentence9_orth=iv who + sentence10_orth=iv who where? + sentence10_star=on + sentence11_orth=tv what who? + sentence11_star=on + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh3-vso-sg-oblig-det b/tests/regression/choices/wh3-vso-sg-oblig-det new file mode 100644 index 000000000..772db0275 --- /dev/null +++ b/tests/regression/choices/wh3-vso-sg-oblig-det @@ -0,0 +1,99 @@ + +version=32 + +section=general +language=wh3-vso-sg-oblig-det +punctuation-chars=discard-all + +section=word-order +word-order=vso +has-dets=yes +noun-det-order=noun-det +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig +no-multi=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=opt + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=opt + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + det1_name=def + det1_stem1_orth=the + det1_stem1_pred=_the_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + +section=gen-options + +section=ToolboxLexicon \ No newline at end of file diff --git a/tests/regression/choices/wh4-free-sg-oblig-min b/tests/regression/choices/wh4-free-sg-oblig-min new file mode 100644 index 000000000..7f3d9ff19 --- /dev/null +++ b/tests/regression/choices/wh4-free-sg-oblig-min @@ -0,0 +1,96 @@ + +version=32 + +section=general +language=wh-free-sg-oblig-min +punctuation-chars=discard-all + +section=word-order +word-order=free +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=cat sleeps + sentence3_orth=cat sees house + sentence5_orth=who sleeps? + sentence7_orth=what cat sees? + sentence8_orth=sleeps cat + sentence9_orth=sees cat house + sentence10_orth=house sees cat + sentence11_orth=house cat sees + sentence12_orth=sleeps who? + sentence12_star=on + sentence13_orth=sees what cat? + sentence13_star=on + sentence14_orth=sees who house? + sentence14_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh5-free-sg-oblig-det b/tests/regression/choices/wh5-free-sg-oblig-det new file mode 100644 index 000000000..b46c57905 --- /dev/null +++ b/tests/regression/choices/wh5-free-sg-oblig-det @@ -0,0 +1,144 @@ + +version=32 + +section=general +language=wh-free-sg-oblig-det +punctuation-chars=discard-all + +section=word-order +word-order=free +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=obl + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=obl + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + det1_name=def + det1_stem1_orth=the + det1_stem1_pred=_the_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=the cat sleeps + sentence3_orth=the cat sees the house + sentence5_orth=who sleeps? + sentence7_orth=what the cat sees? + sentence8_orth=sleeps the cat + sentence9_orth=sees the cat the house + sentence10_orth=the house sees the cat + sentence11_orth=the house the cat sees + sentence12_orth=sleeps who? + sentence12_star=on + sentence13_orth=sees what cat? + sentence13_star=on + sentence14_orth=sees who house? + sentence14_star=on + sentence15_orth=cat sleeps + sentence15_star=on + sentence16_orth=cat the sleeps + sentence16_star=on + sentence17_orth=cat sleeps the + sentence17_star=on + sentence18_orth=cat sees house + sentence18_star=on + sentence19_orth=cat the sees the house + sentence19_star=on + sentence20_orth=cat the sees house the + sentence20_star=on + sentence21_orth=the cat sees house the + sentence21_star=on + sentence22_orth=what cat the sees? + sentence22_star=on + sentence23_orth=sleeps cat the + sentence23_star=on + sentence24_orth=sees cat the house the + sentence24_star=on + sentence25_orth=house the cat sees + sentence25_star=on + sentence26_orth=house the cat the sees + sentence26_star=on + sentence27_orth=which cat sleeps? + sentence28_orth=cat which sleeps? + sentence28_star=on + sentence29_orth=sleeps which cat? + sentence29_star=on + sentence30_orth=sleeps cat which? + sentence30_star=on + sentence31_orth=which house the cat sees? + sentence32_orth=the house which cat sees? + sentence32_star=on + sentence33_orth=sees the cat which house? + sentence33_star=on + sentence34_orth=which which cat sleeps? + sentence34_star=on + sentence35_orth=which the cat sleeps? + sentence35_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh6-svo-sg-opt b/tests/regression/choices/wh6-svo-sg-opt new file mode 100644 index 000000000..23a5e0a56 --- /dev/null +++ b/tests/regression/choices/wh6-svo-sg-opt @@ -0,0 +1,109 @@ + +version=32 + +section=general +language=wh6-svo-sg-opt-min +punctuation-chars=discard-all + +section=word-order +word-order=svo +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=cat sleeps + sentence2_orth=sleeps cat + sentence2_star=on + sentence3_orth=cat sees house + sentence4_orth=cat house sees + sentence4_star=on + sentence5_orth=who sleeps? + sentence6_orth=sleeps who? + sentence6_star=on + sentence7_orth=what cat sees? + sentence8_orth=cat sees what? + sentence9_orth=cat what sees? + sentence9_star=on + sentence10_orth=cat sleeps in house + sentence11_orth=where cat sleeps? + sentence12_orth=cat sleeps where? + sentence13_orth=cat where sleeps? + sentence14_orth=who sees what? + sentence15_orth=who what sees? + sentence15_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh7-sov-sg-opt b/tests/regression/choices/wh7-sov-sg-opt new file mode 100644 index 000000000..867853e3e --- /dev/null +++ b/tests/regression/choices/wh7-sov-sg-opt @@ -0,0 +1,109 @@ + +version=32 + +section=general +language=wh7-sov-sg-opt +punctuation-chars=discard-all + +section=word-order +word-order=sov +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=cat sleeps + sentence2_orth=sleeps cat + sentence2_star=on + sentence3_orth=cat sees house + sentence3_star=on + sentence4_orth=cat house sees + sentence5_orth=who sleeps? + sentence6_orth=sleeps who? + sentence6_star=on + sentence7_orth=what cat sees? + sentence8_orth=cat sees what? + sentence8_star=on + sentence9_orth=cat what sees? + sentence10_orth=cat sleeps in house + sentence11_orth=where cat sleeps? + sentence12_orth=cat sleeps where? + sentence13_orth=cat where sleeps? + sentence14_orth=who sees what? + sentence14_star=on + sentence15_orth=who what sees? + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh8-ovs-insitu b/tests/regression/choices/wh8-ovs-insitu new file mode 100644 index 000000000..9191d5414 --- /dev/null +++ b/tests/regression/choices/wh8-ovs-insitu @@ -0,0 +1,115 @@ + +version=32 + +section=general +language=wh8-ovs-insitu +punctuation-chars=discard-all + +section=word-order +word-order=ovs +has-dets=no +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=in-situ + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=imp + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=imp + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + adv1_name=wh-loc + adv1_type=loc + adv1_stem1_orth=where + adv1_stem1_pred=_place_n_rel + adv1_inter=on + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=cat sleeps + sentence1_star=on + sentence2_orth=sleeps cat + sentence3_orth=house sees cat + sentence4_orth=cat house sees + sentence4_star=on + sentence5_orth=who sleeps? + sentence5_star=on + sentence6_orth=sleeps who? + sentence7_orth=what cat sees? + sentence7_star=on + sentence9_orth=cat what sees? + sentence9_star=on + sentence10_orth=sleeps cat in house + sentence11_orth=where sleeps cat? + sentence12_orth=cat sleeps where? + sentence12_star=on + sentence13_orth=cat where sleeps? + sentence13_star=on + sentence14_orth=who sees what? + sentence15_orth=who what sees? + sentence15_star=on + sentence16_orth=what sees cat + sentence17_orth=what sees who + sentence18_orth=sees who what + sentence18_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/choices/wh9-vos-sg-oblig-ppip-all-oblig b/tests/regression/choices/wh9-vos-sg-oblig-ppip-all-oblig new file mode 100644 index 000000000..0b9022235 --- /dev/null +++ b/tests/regression/choices/wh9-vos-sg-oblig-ppip-all-oblig @@ -0,0 +1,165 @@ + +version=32 + +section=general +language=wh9-vos-sg-oblig-pied-all-oblig +punctuation-chars=discard-all + +section=word-order +word-order=vos +has-dets=yes +noun-det-order=det-noun +has-aux=no + +section=number + +section=person +person=none + +section=gender + +section=case +case-marking=none + +section=adnom-poss + +section=direct-inverse + +section=tense-aspect-mood + +section=evidentials + +section=other-features + +section=sentential-negation + +section=coordination + +section=matrix-yes-no + +section=wh-q +front-matrix=single +matrix-front-opt=single-oblig +pied-pip=on +oblig-pied-pip-noun=on +pied-pip-adv=on +oblig-pied-pip-adv=on +pied-pip-adp=on +oblig-pied-pip-adp=on + +section=info-str + +section=arg-opt + +section=nominalclause + +section=clausal-comp + +section=clausalmods + +section=lexicon + noun1_det=obl + noun1_stem1_orth=cat + noun1_stem1_pred=_cat_n_rel + noun2_det=obl + noun2_stem1_orth=house + noun2_stem1_pred=_house_n_rel + noun3_name=wh + noun3_inter=on + noun3_det=imp + noun3_stem1_orth=who + noun3_stem1_pred=_person_n_rel + noun3_stem2_orth=what + noun3_stem2_pred=_thing_n_rel + verb1_valence=intrans + verb1_stem1_orth=sleeps + verb1_stem1_pred=_sleep_v_rel + verb2_valence=trans + verb2_stem1_orth=sees + verb2_stem1_pred=_sees_v_rel + det1_name=def + det1_stem1_orth=the + det1_stem1_pred=_the_q_rel + det2_name=which + det2_inter=on + det2_stem1_orth=which + det2_stem1_pred=_which_q_rel + normadp1_stem1_orth=in + normadp1_stem1_pred=_in_p_rel + normadp1_order=before + +section=morphology + +section=toolbox-import + +section=test-sentences + sentence1_orth=the cat sleeps + sentence1_star=on + sentence3_orth=the cat sees the house + sentence3_star=on + sentence5_orth=who sleeps? + sentence7_orth=what the cat sees? + sentence7_star=on + sentence8_orth=sleeps the cat + sentence9_orth=sees the cat the house + sentence10_orth=the house sees the cat + sentence10_star=on + sentence11_orth=the house the cat sees + sentence11_star=on + sentence12_orth=sleeps who? + sentence12_star=on + sentence13_orth=sees what cat? + sentence13_star=on + sentence14_orth=sees who house? + sentence14_star=on + sentence15_orth=cat sleeps + sentence15_star=on + sentence16_orth=cat the sleeps + sentence16_star=on + sentence17_orth=cat sleeps the + sentence17_star=on + sentence18_orth=cat sees house + sentence18_star=on + sentence19_orth=cat the sees the house + sentence19_star=on + sentence20_orth=cat the sees house the + sentence20_star=on + sentence21_orth=the cat sees house the + sentence21_star=on + sentence22_orth=what cat the sees? + sentence22_star=on + sentence23_orth=sleeps cat the + sentence23_star=on + sentence24_orth=sees cat the house the + sentence24_star=on + sentence25_orth=house the cat sees + sentence25_star=on + sentence26_orth=house the cat the sees + sentence26_star=on + sentence27_orth=which cat sleeps? + sentence28_orth=cat which sleeps? + sentence28_star=on + sentence29_orth=sleeps which cat? + sentence29_star=on + sentence30_orth=sleeps cat which? + sentence30_star=on + sentence31_orth=which house sees the cat ? + sentence32_orth=the house which cat sees? + sentence32_star=on + sentence33_orth=sees the cat which house? + sentence33_star=on + sentence34_orth=which which cat sleeps? + sentence34_star=on + sentence35_orth=which the cat sleeps? + sentence35_star=on + sentence36_orth=which sees the cat house? + sentence36_star=on + sentence37_orth=in which house sleeps the cat? + sentence38_orth=in which sleeps the cat house? + sentence38_star=on + sentence39_orth=in sleeps the cat which house? + sentence39_star=on + +section=gen-options + +section=ToolboxLexicon diff --git a/tests/regression/home/gold/adv-s-vp-v-min/decision b/tests/regression/home/gold/adv-s-vp-v-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/adv-s-vp-v-min/edge b/tests/regression/home/gold/adv-s-vp-v-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/adv-s-vp-v-min/item b/tests/regression/home/gold/adv-s-vp-v-min/item new file mode 100644 index 000000000..9c532d1b2 --- /dev/null +++ b/tests/regression/home/gold/adv-s-vp-v-min/item @@ -0,0 +1,12 @@ +1@@@@1@@the cat sleeps@@@@1@3@@@ +2@@@@1@@the cat sees the house@@@@1@5@@@ +3@@@@1@@the cat sleeps in the house@@@@1@6@@@ +4@@@@1@@the cat sleeps there@@@@1@4@@@ +5@@@@1@@there the cat sleeps@@@@1@4@@@ +6@@@@1@@the cat there sleeps@@@@1@4@@@ +7@@@@1@@the there cat sleeps@@@@0@4@@@ +8@@@@1@@the cat sees the house there@@@@1@6@@@ +9@@@@1@@the cat sees there the house@@@@1@6@@@ +10@@@@1@@the cat there sees the house@@@@1@6@@@ +11@@@@1@@the there cat sees the house@@@@0@6@@@ +12@@@@1@@the cat sees the there house@@@@0@6@@@ diff --git a/tests/regression/home/gold/adv-s-vp-v-min/item-set b/tests/regression/home/gold/adv-s-vp-v-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/adv-s-vp-v-min/parse b/tests/regression/home/gold/adv-s-vp-v-min/parse new file mode 100644 index 000000000..c89966d43 --- /dev/null +++ b/tests/regression/home/gold/adv-s-vp-v-min/parse @@ -0,0 +1,12 @@ +1@0@1@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@249@11@-1@-1@100144@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@9@-1@-1@-1@-1@-1@-1@-1@354@34@-1@-1@190288@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null") (4, 3, 4, <15:17>, 1, "in", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:27>, 1, "house", 0, "null")@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null") (4, 3, 4, <15:17>, 1, "in", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:27>, 1, "house", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@13@-1@-1@-1@-1@-1@-1@-1@519@69@-1@-1@280896@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null") (4, 3, 4, <15:20>, 1, "there", 0, "null")@4@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null") (4, 3, 4, <15:20>, 1, "there", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@7@9@-1@-1@-1@-1@-1@-1@-1@902@99@-1@-1@182264@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:5>, 1, "there", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:5>, 1, "there", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@1173@122@-1@-1@157584@-1@-1@-1@@@ +6@0@6@4@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "there", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "there", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@1324@142@-1@-1@158464@-1@-1@-1@@@ +7@0@7@4@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "there", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "there", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@4@-1@-1@-1@-1@-1@-1@-1@1464@157@-1@-1@122512@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null") (6, 5, 6, <23:28>, 1, "there", 0, "null")@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null") (6, 5, 6, <23:28>, 1, "there", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@14@13@-1@-1@-1@-1@-1@-1@-1@1509@190@-1@-1@307496@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "there", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "there", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@14@11@-1@-1@-1@-1@-1@-1@-1@1896@231@-1@-1@283088@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "there", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "there", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@14@13@-1@-1@-1@-1@-1@-1@-1@2108@270@-1@-1@303496@-1@-1@-1@@@ +11@0@11@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "there", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "there", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@8@-1@-1@-1@-1@-1@-1@-1@2475@301@-1@-1@205240@-1@-1@-1@@@ +12@0@12@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "there", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "there", 0, "null") (6, 5, 6, <23:28>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@7@-1@-1@-1@-1@-1@-1@-1@2506@324@-1@-1@221004@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/adv-s-vp-v-min/preference b/tests/regression/home/gold/adv-s-vp-v-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/adv-s-vp-v-min/relations b/tests/regression/home/gold/adv-s-vp-v-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/adv-s-vp-v-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/adv-s-vp-v-min/result b/tests/regression/home/gold/adv-s-vp-v-min/result new file mode 100644 index 000000000..802069530 --- /dev/null +++ b/tests/regression/home/gold/adv-s-vp-v-min/result @@ -0,0 +1,13 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(29 subj-head 0.000000 0 3 (28 head-spec 0.000000 0 2 (4 the 0.000000 0 1 ("the")) (5 cat 0.000000 1 2 ("cat"))) (6 sleeps 0.000000 2 3 ("sleeps")))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("sleeps")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 subj-head 0.000000 0 5 (52 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (7 cat 0.000000 1 2 ("cat"))) (54 head-comp 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (53 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 house 0.000000 4 5 ("house")))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 subj-head 0.000000 0 6 (69 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("the")) (8 cat 0.000000 1 2 ("cat"))) (72 head-adj 0.000000 2 6 (9 sleeps 0.000000 2 3 ("sleeps")) (71 head-comp 0.000000 3 6 (10 in 0.000000 3 4 ("in")) (70 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 house 0.000000 5 6 ("house"))))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("PP" ("P" ("in")) ("NP" ("D" ("the")) ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(78 head-adj 0.000000 0 6 (75 subj-head 0.000000 0 3 (74 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("the")) (8 cat 0.000000 1 2 ("cat"))) (9 sleeps 0.000000 2 3 ("sleeps"))) (77 head-comp 0.000000 3 6 (10 in 0.000000 3 4 ("in")) (76 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 house 0.000000 5 6 ("house")))))@@("S" ("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("sleeps"))) ("PP" ("P" ("in")) ("NP" ("D" ("the")) ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 head-adj 0.000000 0 4 (45 subj-head 0.000000 0 3 (44 head-spec 0.000000 0 2 (5 the 0.000000 0 1 ("the")) (6 cat 0.000000 1 2 ("cat"))) (7 sleeps 0.000000 2 3 ("sleeps"))) (8 there 0.000000 3 4 ("there")))@@("S" ("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("sleeps"))) ("ADV" ("there")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(49 subj-head 0.000000 0 4 (47 head-spec 0.000000 0 2 (5 the 0.000000 0 1 ("the")) (6 cat 0.000000 1 2 ("cat"))) (48 head-adj 0.000000 2 4 (7 sleeps 0.000000 2 3 ("sleeps")) (8 there 0.000000 3 4 ("there"))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("ADV" ("there"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(43 adj-head 0.000000 0 4 (5 there 0.000000 0 1 ("there")) (42 subj-head 0.000000 1 4 (41 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (7 cat 0.000000 2 3 ("cat"))) (8 sleeps 0.000000 3 4 ("sleeps"))))@@("S" ("ADV" ("there")) ("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(43 subj-head 0.000000 0 4 (41 head-spec 0.000000 0 2 (5 the 0.000000 0 1 ("the")) (6 cat 0.000000 1 2 ("cat"))) (42 adj-head 0.000000 2 4 (7 there 0.000000 2 3 ("there")) (8 sleeps 0.000000 3 4 ("sleeps"))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("ADV" ("there")) ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(75 head-adj 0.000000 0 6 (74 subj-head 0.000000 0 5 (71 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("the")) (8 cat 0.000000 1 2 ("cat"))) (73 head-comp 0.000000 2 5 (9 sees 0.000000 2 3 ("sees")) (72 head-spec 0.000000 3 5 (10 the 0.000000 3 4 ("the")) (11 house 0.000000 4 5 ("house"))))) (12 there 0.000000 5 6 ("there")))@@("S" ("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("house"))))) ("ADV" ("there")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(80 subj-head 0.000000 0 6 (76 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("the")) (8 cat 0.000000 1 2 ("cat"))) (79 head-adj 0.000000 2 6 (78 head-comp 0.000000 2 5 (9 sees 0.000000 2 3 ("sees")) (77 head-spec 0.000000 3 5 (10 the 0.000000 3 4 ("the")) (11 house 0.000000 4 5 ("house")))) (12 there 0.000000 5 6 ("there"))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("house")))) ("ADV" ("there"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 subj-head 0.000000 0 6 (69 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("the")) (8 cat 0.000000 1 2 ("cat"))) (72 head-comp 0.000000 2 6 (70 head-adj 0.000000 2 4 (9 sees 0.000000 2 3 ("sees")) (10 there 0.000000 3 4 ("there"))) (71 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 house 0.000000 5 6 ("house")))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("V" ("V" ("sees")) ("ADV" ("there"))) ("NP" ("D" ("the")) ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_the_q_rel"<-1:-1> LBL: h15 ARG0: x8 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h13 qeq h11 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 subj-head 0.000000 0 6 (72 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("the")) (8 cat 0.000000 1 2 ("cat"))) (75 head-comp 0.000000 2 6 (73 adj-head 0.000000 2 4 (9 there 0.000000 2 3 ("there")) (10 sees 0.000000 3 4 ("sees"))) (74 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 house 0.000000 5 6 ("house")))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("V" ("ADV" ("there")) ("V" ("sees"))) ("NP" ("D" ("the")) ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(80 subj-head 0.000000 0 6 (72 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("the")) (8 cat 0.000000 1 2 ("cat"))) (79 adj-head 0.000000 2 6 (9 there 0.000000 2 3 ("there")) (78 head-comp 0.000000 3 6 (10 sees 0.000000 3 4 ("sees")) (77 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 house 0.000000 5 6 ("house"))))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("ADV" ("there")) ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/adv-s-vp-v-min/run b/tests/regression/home/gold/adv-s-vp-v-min/run new file mode 100644 index 000000000..10e6d6866 --- /dev/null +++ b/tests/regression/home/gold/adv-s-vp-v-min/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1420@-1@-1@7@0@6@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@14-nov-2019 13:10:07@14-nov-2019 13:10:07@-1@ diff --git a/tests/regression/home/gold/adv-s-vp-v-min/tree b/tests/regression/home/gold/adv-s-vp-v-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/ccomp-bxl/item b/tests/regression/home/gold/ccomp-bxl/item index 2512870ad..1fb0a0dfe 100644 --- a/tests/regression/home/gold/ccomp-bxl/item +++ b/tests/regression/home/gold/ccomp-bxl/item @@ -1,21 +1,21 @@ -1@unknown@formal@none@1@S@mā ń sɔ̀ mā jɛ́ⁿ sɛ̀ɛ́@@@@@@@olzama@2018-07-31 -2@unknown@formal@none@1@S@à yǐ sɔ̀@@@@@@@olzama@2018-07-31 -3@unknown@formal@none@1@S@zàkíì dɛ́ à bákàrí sà sáá@@@@@@@olzama@2018-07-31 -4@unknown@formal@none@1@S@zàkíì dɛ́ bákàrí sà sáá@@@@@@@olzama@2018-07-31 -5@unknown@formal@none@1@S@zàkíì dɛ́ à bákàrí sɛ̀ɛ́@@@@@@@olzama@2018-07-31 -6@unknown@formal@none@1@S@zàkíì dɛ́ bákàrí sɛ̀ɛ́@@@@@@@olzama@2018-07-31 -7@unknown@formal@none@1@S@díkpɛ́ʔràáⁿ sɔ̀ á àⁿ sí í wàá@@@@@@@olzama@2018-07-31 -8@unknown@formal@none@1@S@díkpɛ́ʔràáⁿ sɔ̀ á àⁿ í wàá@@@@@@@olzama@2018-07-31 -9@unknown@formal@none@1@@zàkíì à bákàrí sà sáá dɛ́@@@@@@@olzama@2018-07-31 -10@unknown@formal@none@1@@zàkíì dɛ́ bákàrí sà sáá à@@@@@@@olzama@2018-07-31 -11@unknown@formal@none@1@@díkpɛ́ʔràáⁿ sɔ̀ àⁿ sí í wàá á@@@@@@@olzama@2018-07-31 -12@unknown@formal@none@1@@zàkíì bákàrí sà sáá dɛ́@@@@@@@olzama@2018-07-31 -13@unknown@formal@none@1@@bákàrí sà sáá zàkíì dɛ́@@@@@@@olzama@2018-07-31 -14@unknown@formal@none@1@@à bákàrí sà sáá zàkíì dɛ́@@@@@@@olzama@2018-07-31 -15@unknown@formal@none@1@@mā mā jɛ́ⁿ sɛ̀ɛ́ sɔ̀@@@@@@@olzama@2018-07-31 -16@unknown@formal@none@1@@à sɔ̀ yǐ@@@@@@@olzama@2018-07-31 -17@unknown@formal@none@1@@zàkíì dɛ́ bákàrí sɛ̀ɛ́ à@@@@@@@olzama@2018-07-31 -18@unknown@formal@none@1@@zàkíì à bákàrí sɛ̀ɛ́ dɛ́@@@@@@@olzama@2018-07-31 -19@unknown@formal@none@1@@díkpɛ́ʔràáⁿ sɔ̀ àⁿ í wàá á@@@@@@@olzama@2018-07-31 -20@unknown@formal@none@1@@díkpɛ́ʔràáⁿ á àⁿ í wàá sɔ̀@@@@@@@olzama@2018-07-31 -21@unknown@formal@none@1@S@@@@@@@@olzama@2018-07-31 +1@unknown@formal@none@1@S@mā ń sɔ̀ mā jɛ́ⁿ sɛ̀ɛ́@@@@1@-1@@olzama@31-jul-2018 +2@unknown@formal@none@1@S@à yǐ sɔ̀@@@@1@-1@@olzama@31-jul-2018 +3@unknown@formal@none@1@S@zàkíì dɛ́ à bákàrí sà sáá@@@@1@-1@@olzama@31-jul-2018 +4@unknown@formal@none@1@S@zàkíì dɛ́ bákàrí sà sáá@@@@1@-1@@olzama@31-jul-2018 +5@unknown@formal@none@1@S@zàkíì dɛ́ à bákàrí sɛ̀ɛ́@@@@1@-1@@olzama@31-jul-2018 +6@unknown@formal@none@1@S@zàkíì dɛ́ bákàrí sɛ̀ɛ́@@@@1@-1@@olzama@31-jul-2018 +7@unknown@formal@none@1@S@díkpɛ́ʔràáⁿ sɔ̀ á àⁿ sí í wàá@@@@1@-1@@olzama@31-jul-2018 +8@unknown@formal@none@1@S@díkpɛ́ʔràáⁿ sɔ̀ á àⁿ í wàá@@@@1@-1@@olzama@31-jul-2018 +9@unknown@formal@none@1@@zàkíì à bákàrí sà sáá dɛ́@@@@1@-1@@olzama@31-jul-2018 +10@unknown@formal@none@1@@zàkíì dɛ́ bákàrí sà sáá à@@@@1@-1@@olzama@31-jul-2018 +11@unknown@formal@none@1@@díkpɛ́ʔràáⁿ sɔ̀ àⁿ sí í wàá á@@@@1@-1@@olzama@31-jul-2018 +12@unknown@formal@none@1@@zàkíì bákàrí sà sáá dɛ́@@@@1@-1@@olzama@31-jul-2018 +13@unknown@formal@none@1@@bákàrí sà sáá zàkíì dɛ́@@@@1@-1@@olzama@31-jul-2018 +14@unknown@formal@none@1@@à bákàrí sà sáá zàkíì dɛ́@@@@1@-1@@olzama@31-jul-2018 +15@unknown@formal@none@1@@mā mā jɛ́ⁿ sɛ̀ɛ́ sɔ̀@@@@1@-1@@olzama@31-jul-2018 +16@unknown@formal@none@1@@à sɔ̀ yǐ@@@@1@-1@@olzama@31-jul-2018 +17@unknown@formal@none@1@@zàkíì dɛ́ bákàrí sɛ̀ɛ́ à@@@@1@-1@@olzama@31-jul-2018 +18@unknown@formal@none@1@@zàkíì à bákàrí sɛ̀ɛ́ dɛ́@@@@1@-1@@olzama@31-jul-2018 +19@unknown@formal@none@1@@díkpɛ́ʔràáⁿ sɔ̀ àⁿ í wàá á@@@@1@-1@@olzama@31-jul-2018 +20@unknown@formal@none@1@@díkpɛ́ʔràáⁿ á àⁿ í wàá sɔ̀@@@@1@-1@@olzama@31-jul-2018 +21@unknown@formal@none@1@S@@@@@1@-1@@olzama@31-jul-2018 diff --git a/tests/regression/home/gold/ccomp-bxl/parse b/tests/regression/home/gold/ccomp-bxl/parse index 00c12d023..4a711d6d7 100644 --- a/tests/regression/home/gold/ccomp-bxl/parse +++ b/tests/regression/home/gold/ccomp-bxl/parse @@ -1,21 +1,21 @@ -1@1@1@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@568940@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@206180@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@76340@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@55124@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@286592@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@188864@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@101948@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -8@1@8@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@364612@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@76340@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@76348@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@101948@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -12@1@12@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@55124@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -13@1@13@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@55124@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -14@1@14@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@76380@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -15@1@15@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@464056@-1@-1@-1@23-6-2013 14:28:24@0@ -16@1@16@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@212656@-1@-1@-1@23-6-2013 14:28:24@0@ -17@1@17@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@281776@-1@-1@-1@23-6-2013 14:28:24@0@ -18@1@18@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@305096@-1@-1@-1@23-6-2013 14:28:24@0@ -19@1@19@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@404736@-1@-1@-1@23-6-2013 14:28:24@0@ -20@1@20@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@353616@-1@-1@-1@23-6-2013 14:28:24@0@ -21@1@21@-1@0@-1@0@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@-1@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@6@(1, 0, 1, <0:2>, 1, "mā", 0, "null") (2, 1, 2, <3:4>, 1, "ń", 0, "null") (3, 2, 3, <5:8>, 1, "sɔ̀", 0, "null") (4, 3, 4, <9:11>, 1, "mā", 0, "null") (5, 4, 5, <12:16>, 1, "jɛ́ⁿ", 0, "null") (6, 5, 6, <17:22>, 1, "sɛ̀ɛ́", 0, "null")@6@(1, 0, 1, <0:2>, 1, "mā", 0, "null") (2, 1, 2, <3:4>, 1, "ń", 0, "null") (3, 2, 3, <5:8>, 1, "sɔ̀", 0, "null") (4, 3, 4, <9:11>, 1, "mā", 0, "null") (5, 4, 5, <12:16>, 1, "jɛ́ⁿ", 0, "null") (6, 5, 6, <17:22>, 1, "sɛ̀ɛ́", 0, "null")@0@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@34@24@-1@-1@-1@-1@-1@-1@-1@334@69@-1@-1@770276@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:1>, 1, "à", 0, "null") (2, 1, 2, <2:4>, 1, "yǐ", 0, "null") (3, 2, 3, <5:8>, 1, "sɔ̀", 0, "null")@3@(1, 0, 1, <0:1>, 1, "à", 0, "null") (2, 1, 2, <2:4>, 1, "yǐ", 0, "null") (3, 2, 3, <5:8>, 1, "sɔ̀", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@6@9@-1@-1@-1@-1@-1@-1@-1@364@89@-1@-1@281088@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:11>, 1, "à", 0, "null") (4, 3, 4, <12:18>, 1, "bákàrí", 0, "null") (5, 4, 5, <19:21>, 1, "sà", 0, "null") (6, 5, 6, <22:25>, 1, "sáá", 0, "null")@6@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:11>, 1, "à", 0, "null") (4, 3, 4, <12:18>, 1, "bákàrí", 0, "null") (5, 4, 5, <19:21>, 1, "sà", 0, "null") (6, 5, 6, <22:25>, 1, "sáá", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@446@99@-1@-1@87196@-1@-1@-1@@post-reduction lexical gap@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:19>, 1, "sà", 0, "null") (5, 4, 5, <20:23>, 1, "sáá", 0, "null")@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:19>, 1, "sà", 0, "null") (5, 4, 5, <20:23>, 1, "sáá", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@450@103@-1@-1@63052@-1@-1@-1@@post-reduction lexical gap@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:11>, 1, "à", 0, "null") (4, 3, 4, <12:18>, 1, "bákàrí", 0, "null") (5, 4, 5, <19:24>, 1, "sɛ̀ɛ́", 0, "null")@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:11>, 1, "à", 0, "null") (4, 3, 4, <12:18>, 1, "bákàrí", 0, "null") (5, 4, 5, <19:24>, 1, "sɛ̀ɛ́", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@13@-1@-1@-1@-1@-1@-1@-1@494@134@-1@-1@425848@-1@-1@-1@@@ +6@0@6@4@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:22>, 1, "sɛ̀ɛ́", 0, "null")@4@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:22>, 1, "sɛ̀ɛ́", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@7@9@-1@-1@-1@-1@-1@-1@-1@684@160@-1@-1@294552@-1@-1@-1@@@ +7@0@7@7@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:17>, 1, "á", 0, "null") (4, 3, 4, <18:20>, 1, "àⁿ", 0, "null") (5, 4, 5, <21:23>, 1, "sí", 0, "null") (6, 5, 6, <24:25>, 1, "í", 0, "null") (7, 6, 7, <26:29>, 1, "wàá", 0, "null")@7@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:17>, 1, "á", 0, "null") (4, 3, 4, <18:20>, 1, "àⁿ", 0, "null") (5, 4, 5, <21:23>, 1, "sí", 0, "null") (6, 5, 6, <24:25>, 1, "í", 0, "null") (7, 6, 7, <26:29>, 1, "wàá", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@803@172@-1@-1@118304@-1@-1@-1@@post-reduction lexical gap@ +8@0@8@6@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:17>, 1, "á", 0, "null") (4, 3, 4, <18:20>, 1, "àⁿ", 0, "null") (5, 4, 5, <21:22>, 1, "í", 0, "null") (6, 5, 6, <23:26>, 1, "wàá", 0, "null")@6@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:17>, 1, "á", 0, "null") (4, 3, 4, <18:20>, 1, "àⁿ", 0, "null") (5, 4, 5, <21:22>, 1, "í", 0, "null") (6, 5, 6, <23:26>, 1, "wàá", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@15@16@-1@-1@-1@-1@-1@-1@-1@861@210@-1@-1@587336@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:7>, 1, "à", 0, "null") (3, 2, 3, <8:14>, 1, "bákàrí", 0, "null") (4, 3, 4, <15:17>, 1, "sà", 0, "null") (5, 4, 5, <18:21>, 1, "sáá", 0, "null") (6, 5, 6, <22:25>, 1, "dɛ́", 0, "null")@6@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:7>, 1, "à", 0, "null") (3, 2, 3, <8:14>, 1, "bákàrí", 0, "null") (4, 3, 4, <15:17>, 1, "sà", 0, "null") (5, 4, 5, <18:21>, 1, "sáá", 0, "null") (6, 5, 6, <22:25>, 1, "dɛ́", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1052@224@-1@-1@87196@-1@-1@-1@@post-reduction lexical gap@ +10@0@10@6@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:19>, 1, "sà", 0, "null") (5, 4, 5, <20:23>, 1, "sáá", 0, "null") (6, 5, 6, <24:25>, 1, "à", 0, "null")@6@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:19>, 1, "sà", 0, "null") (5, 4, 5, <20:23>, 1, "sáá", 0, "null") (6, 5, 6, <24:25>, 1, "à", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1058@230@-1@-1@87204@-1@-1@-1@@post-reduction lexical gap@ +11@0@11@7@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:18>, 1, "àⁿ", 0, "null") (4, 3, 4, <19:21>, 1, "sí", 0, "null") (5, 4, 5, <22:23>, 1, "í", 0, "null") (6, 5, 6, <24:27>, 1, "wàá", 0, "null") (7, 6, 7, <28:29>, 1, "á", 0, "null")@7@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:18>, 1, "àⁿ", 0, "null") (4, 3, 4, <19:21>, 1, "sí", 0, "null") (5, 4, 5, <22:23>, 1, "í", 0, "null") (6, 5, 6, <24:27>, 1, "wàá", 0, "null") (7, 6, 7, <28:29>, 1, "á", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1065@237@-1@-1@118304@-1@-1@-1@@post-reduction lexical gap@ +12@0@12@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:12>, 1, "bákàrí", 0, "null") (3, 2, 3, <13:15>, 1, "sà", 0, "null") (4, 3, 4, <16:19>, 1, "sáá", 0, "null") (5, 4, 5, <20:23>, 1, "dɛ́", 0, "null")@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:12>, 1, "bákàrí", 0, "null") (3, 2, 3, <13:15>, 1, "sà", 0, "null") (4, 3, 4, <16:19>, 1, "sáá", 0, "null") (5, 4, 5, <20:23>, 1, "dɛ́", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1069@241@-1@-1@63056@-1@-1@-1@@post-reduction lexical gap@ +13@0@13@5@(1, 0, 1, <0:6>, 1, "bákàrí", 0, "null") (2, 1, 2, <7:9>, 1, "sà", 0, "null") (3, 2, 3, <10:13>, 1, "sáá", 0, "null") (4, 3, 4, <14:19>, 1, "zàkíì", 0, "null") (5, 4, 5, <20:23>, 1, "dɛ́", 0, "null")@5@(1, 0, 1, <0:6>, 1, "bákàrí", 0, "null") (2, 1, 2, <7:9>, 1, "sà", 0, "null") (3, 2, 3, <10:13>, 1, "sáá", 0, "null") (4, 3, 4, <14:19>, 1, "zàkíì", 0, "null") (5, 4, 5, <20:23>, 1, "dɛ́", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1073@245@-1@-1@63052@-1@-1@-1@@post-reduction lexical gap@ +14@0@14@6@(1, 0, 1, <0:1>, 1, "à", 0, "null") (2, 1, 2, <2:8>, 1, "bákàrí", 0, "null") (3, 2, 3, <9:11>, 1, "sà", 0, "null") (4, 3, 4, <12:15>, 1, "sáá", 0, "null") (5, 4, 5, <16:21>, 1, "zàkíì", 0, "null") (6, 5, 6, <22:25>, 1, "dɛ́", 0, "null")@6@(1, 0, 1, <0:1>, 1, "à", 0, "null") (2, 1, 2, <2:8>, 1, "bákàrí", 0, "null") (3, 2, 3, <9:11>, 1, "sà", 0, "null") (4, 3, 4, <12:15>, 1, "sáá", 0, "null") (5, 4, 5, <16:21>, 1, "zàkíì", 0, "null") (6, 5, 6, <22:25>, 1, "dɛ́", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1079@251@-1@-1@87236@-1@-1@-1@@post-reduction lexical gap@ +15@0@15@5@(1, 0, 1, <0:2>, 1, "mā", 0, "null") (2, 1, 2, <3:5>, 1, "mā", 0, "null") (3, 2, 3, <6:10>, 1, "jɛ́ⁿ", 0, "null") (4, 3, 4, <11:16>, 1, "sɛ̀ɛ́", 0, "null") (5, 4, 5, <17:20>, 1, "sɔ̀", 0, "null")@5@(1, 0, 1, <0:2>, 1, "mā", 0, "null") (2, 1, 2, <3:5>, 1, "mā", 0, "null") (3, 2, 3, <6:10>, 1, "jɛ́ⁿ", 0, "null") (4, 3, 4, <11:16>, 1, "sɛ̀ɛ́", 0, "null") (5, 4, 5, <17:20>, 1, "sɔ̀", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@26@18@-1@-1@-1@-1@-1@-1@-1@1158@303@-1@-1@598860@-1@-1@-1@@@ +16@0@16@3@(1, 0, 1, <0:1>, 1, "à", 0, "null") (2, 1, 2, <2:5>, 1, "sɔ̀", 0, "null") (3, 2, 3, <6:8>, 1, "yǐ", 0, "null")@3@(1, 0, 1, <0:1>, 1, "à", 0, "null") (2, 1, 2, <2:5>, 1, "sɔ̀", 0, "null") (3, 2, 3, <6:8>, 1, "yǐ", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@8@-1@-1@-1@-1@-1@-1@-1@1193@325@-1@-1@268556@-1@-1@-1@@@ +17@0@17@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:22>, 1, "sɛ̀ɛ́", 0, "null") (5, 4, 5, <23:24>, 1, "à", 0, "null")@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:9>, 1, "dɛ́", 0, "null") (3, 2, 3, <10:16>, 1, "bákàrí", 0, "null") (4, 3, 4, <17:22>, 1, "sɛ̀ɛ́", 0, "null") (5, 4, 5, <23:24>, 1, "à", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@12@-1@-1@-1@-1@-1@-1@-1@1242@356@-1@-1@368488@-1@-1@-1@@@ +18@0@18@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:7>, 1, "à", 0, "null") (3, 2, 3, <8:14>, 1, "bákàrí", 0, "null") (4, 3, 4, <15:20>, 1, "sɛ̀ɛ́", 0, "null") (5, 4, 5, <21:24>, 1, "dɛ́", 0, "null")@5@(1, 0, 1, <0:5>, 1, "zàkíì", 0, "null") (2, 1, 2, <6:7>, 1, "à", 0, "null") (3, 2, 3, <8:14>, 1, "bákàrí", 0, "null") (4, 3, 4, <15:20>, 1, "sɛ̀ɛ́", 0, "null") (5, 4, 5, <21:24>, 1, "dɛ́", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@11@-1@-1@-1@-1@-1@-1@-1@1290@388@-1@-1@365168@-1@-1@-1@@@ +19@0@19@6@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:18>, 1, "àⁿ", 0, "null") (4, 3, 4, <19:20>, 1, "í", 0, "null") (5, 4, 5, <21:24>, 1, "wàá", 0, "null") (6, 5, 6, <25:26>, 1, "á", 0, "null")@6@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:15>, 1, "sɔ̀", 0, "null") (3, 2, 3, <16:18>, 1, "àⁿ", 0, "null") (4, 3, 4, <19:20>, 1, "í", 0, "null") (5, 4, 5, <21:24>, 1, "wàá", 0, "null") (6, 5, 6, <25:26>, 1, "á", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@22@15@-1@-1@-1@-1@-1@-1@-1@1361@432@-1@-1@570432@-1@-1@-1@@@ +20@0@20@6@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:13>, 1, "á", 0, "null") (3, 2, 3, <14:16>, 1, "àⁿ", 0, "null") (4, 3, 4, <17:18>, 1, "í", 0, "null") (5, 4, 5, <19:22>, 1, "wàá", 0, "null") (6, 5, 6, <23:26>, 1, "sɔ̀", 0, "null")@6@(1, 0, 1, <0:11>, 1, "díkpɛ́ʔràáⁿ", 0, "null") (2, 1, 2, <12:13>, 1, "á", 0, "null") (3, 2, 3, <14:16>, 1, "àⁿ", 0, "null") (4, 3, 4, <17:18>, 1, "í", 0, "null") (5, 4, 5, <19:22>, 1, "wàá", 0, "null") (6, 5, 6, <23:26>, 1, "sɔ̀", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@16@13@-1@-1@-1@-1@-1@-1@-1@1421@468@-1@-1@447032@-1@-1@-1@@@ +21@0@21@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-bxl/result b/tests/regression/home/gold/ccomp-bxl/result index f813033ba..6af8d23f7 100644 --- a/tests/regression/home/gold/ccomp-bxl/result +++ b/tests/regression/home/gold/ccomp-bxl/result @@ -1,4 +1,4 @@ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(43 subj-head 0.000000 0 3 (40 bare-np 0.000000 0 1 (5 à_1 0.000000 0 1 ("à"))) (42 comp-head 0.000000 1 3 (41 bare-np 0.000000 1 2 (6 yǐ 0.000000 1 2 ("yǐ"))) (8 sɔ̀_2 0.000000 2 3 ("sɔ̀"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "_3sgHum_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: hum ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_water_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 subj-head 0.000000 0 5 (65 bare-np 0.000000 0 1 (6 zàkíì 0.000000 0 1 ("zàkíì"))) (69 head-comp 0.000000 1 5 (7 dɛ́ 0.000000 1 2 ("dɛ́")) (68 head-comp 0.000000 2 5 (8 à_2 0.000000 2 3 ("à")) (67 subj-head 0.000000 3 5 (66 bare-np 0.000000 3 4 (10 bákàrí 0.000000 3 4 ("bákàrí"))) (11 sɛ̀ɛ́ 0.000000 4 5 ("sɛ̀ɛ́"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "_Zaki_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_say_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_Bakari_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_come_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 > ICONS: < e2 info-str e15 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(50 subj-head 0.000000 0 4 (46 bare-np 0.000000 0 1 (5 zàkíì 0.000000 0 1 ("zàkíì"))) (49 head-comp 0.000000 1 4 (6 dɛ́ 0.000000 1 2 ("dɛ́")) (48 subj-head 0.000000 2 4 (47 bare-np 0.000000 2 3 (7 bákàrí 0.000000 2 3 ("bákàrí"))) (8 sɛ̀ɛ́ 0.000000 3 4 ("sɛ̀ɛ́")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "_Zaki_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_say_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_Bakari_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_come_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 > ICONS: < e2 info-str e15 > ] @ -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(86 subj-head 0.000000 0 6 (79 bare-np 0.000000 0 1 (7 díkpɛ́ʔràáⁿ 0.000000 0 1 ("díkpɛ́ʔràáⁿ"))) (85 head-comp 0.000000 1 6 (8 sɔ̀_1 0.000000 1 2 ("sɔ̀")) (84 head-comp 0.000000 2 6 (10 á 0.000000 2 3 ("á")) (83 subj-head 0.000000 3 6 (80 bare-np 0.000000 3 4 (11 àⁿ 0.000000 3 4 ("àⁿ"))) (82 comp-head 0.000000 4 6 (81 bare-np 0.000000 4 5 (12 í 0.000000 4 5 ("í"))) (13 wàá 0.000000 5 6 ("wàá")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "_children_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl PNG.GEND: gender ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_3plHum_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl PNG.GEND: hum ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_3SgNonhObj_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: nonhum ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_go_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: imperfective E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(41 subj-head 0.000000 0 3 (38 bare-np 0.000000 0 1 (5 à_1 0.000000 0 1 ("à"))) (40 comp-head 0.000000 1 3 (39 bare-np 0.000000 1 2 (6 yǐ 0.000000 1 2 ("yǐ"))) (8 sɔ̀_2 0.000000 2 3 ("sɔ̀"))))@@("S" ("NP" ("N" ("à"))) ("VP" ("NP" ("N" ("yǐ"))) ("V" ("sɔ̀"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: hum ] RSTR: h5 BODY: h6 ] [ "_3sgHum_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_water_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 subj-head 0.000000 0 5 (63 bare-np 0.000000 0 1 (6 zàkíì 0.000000 0 1 ("zàkíì"))) (67 head-comp 0.000000 1 5 (7 dɛ́ 0.000000 1 2 ("dɛ́")) (66 head-comp 0.000000 2 5 (8 à_2 0.000000 2 3 ("à")) (65 subj-head 0.000000 3 5 (64 bare-np 0.000000 3 4 (10 bákàrí 0.000000 3 4 ("bákàrí"))) (11 sɛ̀ɛ́ 0.000000 4 5 ("sɛ̀ɛ́"))))))@@("S" ("NP" ("N" ("zàkíì"))) ("VP" ("V" ("dɛ́")) ("CP" ("C" ("à")) ("S" ("NP" ("N" ("bákàrí"))) ("VP" ("sɛ̀ɛ́"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Zaki_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_say_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] RSTR: h11 BODY: h12 ] [ "_Bakari_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_come_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 subj-head 0.000000 0 4 (45 bare-np 0.000000 0 1 (5 zàkíì 0.000000 0 1 ("zàkíì"))) (48 head-comp 0.000000 1 4 (6 dɛ́ 0.000000 1 2 ("dɛ́")) (47 subj-head 0.000000 2 4 (46 bare-np 0.000000 2 3 (7 bákàrí 0.000000 2 3 ("bákàrí"))) (8 sɛ̀ɛ́ 0.000000 3 4 ("sɛ̀ɛ́")))))@@("S" ("NP" ("N" ("zàkíì"))) ("VP" ("V" ("dɛ́")) ("S" ("NP" ("N" ("bákàrí"))) ("VP" ("sɛ̀ɛ́")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Zaki_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_say_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] RSTR: h11 BODY: h12 ] [ "_Bakari_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_come_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(84 subj-head 0.000000 0 6 (77 bare-np 0.000000 0 1 (7 díkpɛ́ʔràáⁿ 0.000000 0 1 ("díkpɛ́ʔràáⁿ"))) (83 head-comp 0.000000 1 6 (8 sɔ̀_1 0.000000 1 2 ("sɔ̀")) (82 head-comp 0.000000 2 6 (10 á 0.000000 2 3 ("á")) (81 subj-head 0.000000 3 6 (78 bare-np 0.000000 3 4 (11 àⁿ 0.000000 3 4 ("àⁿ"))) (80 comp-head 0.000000 4 6 (79 bare-np 0.000000 4 5 (12 í 0.000000 4 5 ("í"))) (13 wàá 0.000000 5 6 ("wàá")))))))@@("S" ("NP" ("N" ("díkpɛ́ʔràáⁿ"))) ("VP" ("V" ("sɔ̀")) ("CP" ("C" ("á")) ("S" ("NP" ("N" ("àⁿ"))) ("VP" ("NP" ("N" ("í"))) ("V" ("wàá")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: perfective E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_children_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl PNG.GEND: hum ] RSTR: h11 BODY: h12 ] [ "_3plHum_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: nonhum ] RSTR: h16 BODY: h17 ] [ "_3SgNonhObj_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_go_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: imperfective E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-bxl/run b/tests/regression/home/gold/ccomp-bxl/run index 274683e45..dd65a556e 100644 --- a/tests/regression/home/gold/ccomp-bxl/run +++ b/tests/regression/home/gold/ccomp-bxl/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1450@-1@-1@19@1@6@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@21@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@ccomp@1516@-1@-1@19@0@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@25-aug-2020 12:23:23@25-aug-2020 12:23:23@-1@ diff --git a/tests/regression/home/gold/ccomp-heb/item b/tests/regression/home/gold/ccomp-heb/item index 9a2819512..7d8170386 100644 --- a/tests/regression/home/gold/ccomp-heb/item +++ b/tests/regression/home/gold/ccomp-heb/item @@ -1,12 +1,12 @@ -1@unknown@formal@none@1@S@Ester akhlá tapúakh@@@@@@@olzama@2018-07-31 -2@unknown@formal@none@1@S@anì yodéa she Ester akhlá tapúakh@@@@@@@olzama@2018-07-31 -3@unknown@formal@none@1@@tapúakh akhlá Ester@@@@@@@olzama@2018-07-31 -4@unknown@formal@none@1@@Ester tapúakh akhlá@@@@@@@olzama@2018-07-31 -5@unknown@formal@none@1@@akhlá Ester tapúakh@@@@@@@olzama@2018-07-31 -6@unknown@formal@none@1@@anì yodéa Ester akhlá tapúakh@@@@@@@olzama@2018-07-31 -7@unknown@formal@none@1@@anì yodéa Ester akhlá tapúakh she@@@@@@@olzama@2018-07-31 -8@unknown@formal@none@1@@she Ester akhlá tapúakh anì yodéa@@@@@@@olzama@2018-07-31 -9@unknown@formal@none@1@@anì she Ester akhlá tapúakh yodéa@@@@@@@olzama@2018-07-31 -10@unknown@formal@none@1@@yodéa anì she Ester akhlá tapúakh@@@@@@@olzama@2018-07-31 -11@unknown@formal@none@1@@yodéa she Ester akhlá tapúakh anì@@@@@@@olzama@2018-07-31 -12@unknown@formal@none@1@S@@@@@@@@olzama@2018-07-31 +1@unknown@formal@none@1@S@Ester akhlá tapúakh@@@@1@-1@@olzama@31-jul-2018 +2@unknown@formal@none@1@S@anì yodéa she Ester akhlá tapúakh@@@@1@-1@@olzama@31-jul-2018 +3@unknown@formal@none@1@@tapúakh akhlá Ester@@@@1@-1@@olzama@31-jul-2018 +4@unknown@formal@none@1@@Ester tapúakh akhlá@@@@1@-1@@olzama@31-jul-2018 +5@unknown@formal@none@1@@akhlá Ester tapúakh@@@@1@-1@@olzama@31-jul-2018 +6@unknown@formal@none@1@@anì yodéa Ester akhlá tapúakh@@@@1@-1@@olzama@31-jul-2018 +7@unknown@formal@none@1@@anì yodéa Ester akhlá tapúakh she@@@@1@-1@@olzama@31-jul-2018 +8@unknown@formal@none@1@@she Ester akhlá tapúakh anì yodéa@@@@1@-1@@olzama@31-jul-2018 +9@unknown@formal@none@1@@anì she Ester akhlá tapúakh yodéa@@@@1@-1@@olzama@31-jul-2018 +10@unknown@formal@none@1@@yodéa anì she Ester akhlá tapúakh@@@@1@-1@@olzama@31-jul-2018 +11@unknown@formal@none@1@@yodéa she Ester akhlá tapúakh anì@@@@1@-1@@olzama@31-jul-2018 +12@unknown@formal@none@1@S@@@@@1@-1@@olzama@31-jul-2018 diff --git a/tests/regression/home/gold/ccomp-heb/parse b/tests/regression/home/gold/ccomp-heb/parse index 2d235bc8a..80700354a 100644 --- a/tests/regression/home/gold/ccomp-heb/parse +++ b/tests/regression/home/gold/ccomp-heb/parse @@ -1,12 +1,12 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@96936@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@202548@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@76572@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@77752@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@85232@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@140476@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@183712@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@190712@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@190712@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@163908@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@199152@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@-1@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "Ester", 0, "null") (2, 1, 2, <6:11>, 1, "akhlá", 0, "null") (3, 2, 3, <12:19>, 1, "tapúakh", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Ester", 0, "null") (2, 1, 2, <6:11>, 1, "akhlá", 0, "null") (3, 2, 3, <12:19>, 1, "tapúakh", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@129@11@-1@-1@159096@-1@-1@-1@@@ +2@0@2@6@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:9>, 1, "yodéa", 0, "null") (3, 2, 3, <10:13>, 1, "she", 0, "null") (4, 3, 4, <14:19>, 1, "Ester", 0, "null") (5, 4, 5, <20:25>, 1, "akhlá", 0, "null") (6, 5, 6, <26:33>, 1, "tapúakh", 0, "null")@6@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:9>, 1, "yodéa", 0, "null") (3, 2, 3, <10:13>, 1, "she", 0, "null") (4, 3, 4, <14:19>, 1, "Ester", 0, "null") (5, 4, 5, <20:25>, 1, "akhlá", 0, "null") (6, 5, 6, <26:33>, 1, "tapúakh", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@231@39@-1@-1@388080@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:7>, 1, "tapúakh", 0, "null") (2, 1, 2, <8:13>, 1, "akhlá", 0, "null") (3, 2, 3, <14:19>, 1, "Ester", 0, "null")@3@(1, 0, 1, <0:7>, 1, "tapúakh", 0, "null") (2, 1, 2, <8:13>, 1, "akhlá", 0, "null") (3, 2, 3, <14:19>, 1, "Ester", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@428@57@-1@-1@102748@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:5>, 1, "Ester", 0, "null") (2, 1, 2, <6:13>, 1, "tapúakh", 0, "null") (3, 2, 3, <14:19>, 1, "akhlá", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Ester", 0, "null") (2, 1, 2, <6:13>, 1, "tapúakh", 0, "null") (3, 2, 3, <14:19>, 1, "akhlá", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@5@-1@-1@-1@-1@-1@-1@-1@437@66@-1@-1@99088@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:5>, 1, "akhlá", 0, "null") (2, 1, 2, <6:11>, 1, "Ester", 0, "null") (3, 2, 3, <12:19>, 1, "tapúakh", 0, "null")@3@(1, 0, 1, <0:5>, 1, "akhlá", 0, "null") (2, 1, 2, <6:11>, 1, "Ester", 0, "null") (3, 2, 3, <12:19>, 1, "tapúakh", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@6@-1@-1@-1@-1@-1@-1@-1@448@77@-1@-1@117852@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:9>, 1, "yodéa", 0, "null") (3, 2, 3, <10:15>, 1, "Ester", 0, "null") (4, 3, 4, <16:21>, 1, "akhlá", 0, "null") (5, 4, 5, <22:29>, 1, "tapúakh", 0, "null")@5@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:9>, 1, "yodéa", 0, "null") (3, 2, 3, <10:15>, 1, "Ester", 0, "null") (4, 3, 4, <16:21>, 1, "akhlá", 0, "null") (5, 4, 5, <22:29>, 1, "tapúakh", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@10@-1@-1@-1@-1@-1@-1@-1@467@95@-1@-1@192456@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:9>, 1, "yodéa", 0, "null") (3, 2, 3, <10:15>, 1, "Ester", 0, "null") (4, 3, 4, <16:21>, 1, "akhlá", 0, "null") (5, 4, 5, <22:29>, 1, "tapúakh", 0, "null") (6, 5, 6, <30:33>, 1, "she", 0, "null")@6@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:9>, 1, "yodéa", 0, "null") (3, 2, 3, <10:15>, 1, "Ester", 0, "null") (4, 3, 4, <16:21>, 1, "akhlá", 0, "null") (5, 4, 5, <22:29>, 1, "tapúakh", 0, "null") (6, 5, 6, <30:33>, 1, "she", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@11@-1@-1@-1@-1@-1@-1@-1@491@118@-1@-1@256776@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:3>, 1, "she", 0, "null") (2, 1, 2, <4:9>, 1, "Ester", 0, "null") (3, 2, 3, <10:15>, 1, "akhlá", 0, "null") (4, 3, 4, <16:23>, 1, "tapúakh", 0, "null") (5, 4, 5, <24:27>, 1, "anì", 0, "null") (6, 5, 6, <28:33>, 1, "yodéa", 0, "null")@6@(1, 0, 1, <0:3>, 1, "she", 0, "null") (2, 1, 2, <4:9>, 1, "Ester", 0, "null") (3, 2, 3, <10:15>, 1, "akhlá", 0, "null") (4, 3, 4, <16:23>, 1, "tapúakh", 0, "null") (5, 4, 5, <24:27>, 1, "anì", 0, "null") (6, 5, 6, <28:33>, 1, "yodéa", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@12@-1@-1@-1@-1@-1@-1@-1@517@143@-1@-1@274496@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:7>, 1, "she", 0, "null") (3, 2, 3, <8:13>, 1, "Ester", 0, "null") (4, 3, 4, <14:19>, 1, "akhlá", 0, "null") (5, 4, 5, <20:27>, 1, "tapúakh", 0, "null") (6, 5, 6, <28:33>, 1, "yodéa", 0, "null")@6@(1, 0, 1, <0:3>, 1, "anì", 0, "null") (2, 1, 2, <4:7>, 1, "she", 0, "null") (3, 2, 3, <8:13>, 1, "Ester", 0, "null") (4, 3, 4, <14:19>, 1, "akhlá", 0, "null") (5, 4, 5, <20:27>, 1, "tapúakh", 0, "null") (6, 5, 6, <28:33>, 1, "yodéa", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@12@-1@-1@-1@-1@-1@-1@-1@543@168@-1@-1@274456@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:5>, 1, "yodéa", 0, "null") (2, 1, 2, <6:9>, 1, "anì", 0, "null") (3, 2, 3, <10:13>, 1, "she", 0, "null") (4, 3, 4, <14:19>, 1, "Ester", 0, "null") (5, 4, 5, <20:25>, 1, "akhlá", 0, "null") (6, 5, 6, <26:33>, 1, "tapúakh", 0, "null")@6@(1, 0, 1, <0:5>, 1, "yodéa", 0, "null") (2, 1, 2, <6:9>, 1, "anì", 0, "null") (3, 2, 3, <10:13>, 1, "she", 0, "null") (4, 3, 4, <14:19>, 1, "Ester", 0, "null") (5, 4, 5, <20:25>, 1, "akhlá", 0, "null") (6, 5, 6, <26:33>, 1, "tapúakh", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@12@-1@-1@-1@-1@-1@-1@-1@566@190@-1@-1@229404@-1@-1@-1@@@ +11@0@11@6@(1, 0, 1, <0:5>, 1, "yodéa", 0, "null") (2, 1, 2, <6:9>, 1, "she", 0, "null") (3, 2, 3, <10:15>, 1, "Ester", 0, "null") (4, 3, 4, <16:21>, 1, "akhlá", 0, "null") (5, 4, 5, <22:29>, 1, "tapúakh", 0, "null") (6, 5, 6, <30:33>, 1, "anì", 0, "null")@6@(1, 0, 1, <0:5>, 1, "yodéa", 0, "null") (2, 1, 2, <6:9>, 1, "she", 0, "null") (3, 2, 3, <10:15>, 1, "Ester", 0, "null") (4, 3, 4, <16:21>, 1, "akhlá", 0, "null") (5, 4, 5, <22:29>, 1, "tapúakh", 0, "null") (6, 5, 6, <30:33>, 1, "anì", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@13@-1@-1@-1@-1@-1@-1@-1@594@217@-1@-1@302136@-1@-1@-1@@@ +12@0@12@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-heb/result b/tests/regression/home/gold/ccomp-heb/result index 68e7b1fd7..d5f4e613d 100644 --- a/tests/regression/home/gold/ccomp-heb/result +++ b/tests/regression/home/gold/ccomp-heb/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(26 subj-head 0.000000 0 3 (23 bare-np 0.000000 0 1 (4 Ester 0.000000 0 1 ("Ester"))) (25 head-comp 0.000000 1 3 (5 akhlá 0.000000 1 2 ("akhlá")) (24 bare-np 0.000000 2 3 (6 tapúakh 0.000000 2 3 ("tapúakh")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_Esther_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_akhlá_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "_apple_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 subj-head 0.000000 0 6 (48 bare-np 0.000000 0 1 (7 anì 0.000000 0 1 ("anì"))) (54 head-comp 0.000000 1 6 (8 yodéa 0.000000 1 2 ("yodéa")) (53 head-comp 0.000000 2 6 (9 she 0.000000 2 3 ("she")) (52 subj-head 0.000000 3 6 (49 bare-np 0.000000 3 4 (10 Ester 0.000000 3 4 ("Ester"))) (51 head-comp 0.000000 4 6 (11 akhlá 0.000000 4 5 ("akhlá")) (50 bare-np 0.000000 5 6 (12 tapúakh 0.000000 5 6 ("tapúakh"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_Esther_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_akhlá_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "_apple_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(25 subj-head 0.000000 0 3 (22 bare-np 0.000000 0 1 (4 Ester 0.000000 0 1 ("Ester"))) (24 head-comp 0.000000 1 3 (5 akhlá 0.000000 1 2 ("akhlá")) (23 bare-np 0.000000 2 3 (6 tapúakh 0.000000 2 3 ("tapúakh")))))@@("S" ("NP" ("N" ("Ester"))) ("VP" ("V" ("akhlá")) ("NP" ("N" ("tapúakh")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: fem ] RSTR: h5 BODY: h6 ] [ "_Esther_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_akhlá_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_apple_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 subj-head 0.000000 0 6 (47 bare-np 0.000000 0 1 (7 anì 0.000000 0 1 ("anì"))) (53 head-comp 0.000000 1 6 (8 yodéa 0.000000 1 2 ("yodéa")) (52 head-comp 0.000000 2 6 (9 she 0.000000 2 3 ("she")) (51 subj-head 0.000000 3 6 (48 bare-np 0.000000 3 4 (10 Ester 0.000000 3 4 ("Ester"))) (50 head-comp 0.000000 4 6 (11 akhlá 0.000000 4 5 ("akhlá")) (49 bare-np 0.000000 5 6 (12 tapúakh 0.000000 5 6 ("tapúakh"))))))))@@("S" ("NP" ("N" ("anì"))) ("VP" ("V" ("yodéa")) ("CP" ("C" ("she")) ("S" ("NP" ("N" ("Ester"))) ("VP" ("V" ("akhlá")) ("NP" ("N" ("tapúakh"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_Esther_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_akhlá_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_apple_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-heb/run b/tests/regression/home/gold/ccomp-heb/run index 1517615d1..ed0243f11 100644 --- a/tests/regression/home/gold/ccomp-heb/run +++ b/tests/regression/home/gold/ccomp-heb/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1419@-1@-1@6@1@3@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@12@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@ccomp@1485@-1@-1@6@0@3@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@25-aug-2020 12:31:24@25-aug-2020 12:31:24@-1@ diff --git a/tests/regression/home/gold/ccomp-illustr1-rus/item b/tests/regression/home/gold/ccomp-illustr1-rus/item index 2e0b3eb28..64575cfe2 100644 --- a/tests/regression/home/gold/ccomp-illustr1-rus/item +++ b/tests/regression/home/gold/ccomp-illustr1-rus/item @@ -1,16 +1,16 @@ -1@unknown@formal@none@1@S@Professor vidit chto student bezhit@@@@@@@olzama@2018-01-05 -2@unknown@formal@none@1@S@Professor vidit napisa-ni-je student-om dissertatsi-i@@@@@@@olzama@2018-01-05 -3@unknown@formal@none@1@S@Professor dumajet chto student pishet dissertatsi-ju@@@@@@@olzama@2018-01-05 -4@unknown@formal@none@1@S@Professor vidit chto student pishet dissertatsi-ju@@@@@@@olzama@2018-01-05 -5@unknown@formal@none@1@S@Professor vidit kak student pishet dissertatsi-ju@@@@@@@olzama@2018-01-05 -6@unknown@formal@none@1@S@Professor vidit beg-stv-o student-a@@@@@@@olzama@2018-01-05 -7@unknown@formal@none@1@@Professor dumajet kak student pishet dissertatsi-ju@@@@@@@olzama@2018-01-05 -8@unknown@formal@none@1@@Professor vidit beg-stv-o student-om@@@@@@@olzama@2018-01-05 -9@unknown@formal@none@1@@Professor vidit beg-stv-o student@@@@@@@olzama@2018-01-05 -10@unknown@formal@none@1@@Professor dumajet napisa-ni-je student-om dissertatsi-i@@@@@@@olzama@2018-01-05 -11@unknown@formal@none@1@@Professor vidit chto napisa-ni-je student-om dissertatsi-i@@@@@@@olzama@2018-01-05 -12@unknown@formal@none@1@@Professor-a vidit chto student pishet dissertatsi-ju@@@@@@@olzama@2018-01-05 -13@unknown@formal@none@1@@Professor vidit napisa-ni-je student dissertatsi-ju@@@@@@@olzama@2018-01-05 -14@unknown@formal@none@1@@Professor vidit napisa-ni-je student-a dissertatsi-ju@@@@@@@olzama@2018-01-05 -15@unknown@formal@none@1@@Professor vidit chto student-om pishet dissertatsi-ju@@@@@@@olzama@2018-01-05 -16@unknown@formal@none@1@@Professor vidit chto student-om pishet dissertatsi-i@@@@@@@olzama@2018-01-05 +1@unknown@formal@none@1@S@Professor vidit chto student bezhit@@@@1@-1@@olzama@5-jan-2018 +2@unknown@formal@none@1@S@Professor vidit napisa-ni-je student-om dissertatsi-i@@@@1@-1@@olzama@5-jan-2018 +3@unknown@formal@none@1@S@Professor dumajet chto student pishet dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +4@unknown@formal@none@1@S@Professor vidit chto student pishet dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +5@unknown@formal@none@1@S@Professor vidit kak student pishet dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +6@unknown@formal@none@1@S@Professor vidit beg-stv-o student-a@@@@1@-1@@olzama@5-jan-2018 +7@unknown@formal@none@1@@Professor dumajet kak student pishet dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +8@unknown@formal@none@1@@Professor vidit beg-stv-o student-om@@@@1@-1@@olzama@5-jan-2018 +9@unknown@formal@none@1@@Professor vidit beg-stv-o student@@@@1@-1@@olzama@5-jan-2018 +10@unknown@formal@none@1@@Professor dumajet napisa-ni-je student-om dissertatsi-i@@@@1@-1@@olzama@5-jan-2018 +11@unknown@formal@none@1@@Professor vidit chto napisa-ni-je student-om dissertatsi-i@@@@1@-1@@olzama@5-jan-2018 +12@unknown@formal@none@1@@Professor-a vidit chto student pishet dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +13@unknown@formal@none@1@@Professor vidit napisa-ni-je student dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +14@unknown@formal@none@1@@Professor vidit napisa-ni-je student-a dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +15@unknown@formal@none@1@@Professor vidit chto student-om pishet dissertatsi-ju@@@@1@-1@@olzama@5-jan-2018 +16@unknown@formal@none@1@@Professor vidit chto student-om pishet dissertatsi-i@@@@1@-1@@olzama@5-jan-2018 diff --git a/tests/regression/home/gold/ccomp-illustr1-rus/parse b/tests/regression/home/gold/ccomp-illustr1-rus/parse index 6ae548dc5..906ee893e 100644 --- a/tests/regression/home/gold/ccomp-illustr1-rus/parse +++ b/tests/regression/home/gold/ccomp-illustr1-rus/parse @@ -1,16 +1,16 @@ -1@1@1@-1@0@-1@0@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@538884@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@668240@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@561192@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@669588@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@616544@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@447008@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@455716@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@381320@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@380400@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@486400@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@700560@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@613232@-1@-1@-1@23-6-2013 14:28:24@0@ -13@1@13@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@524240@-1@-1@-1@23-6-2013 14:28:24@0@ -14@1@14@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@658320@-1@-1@-1@23-6-2013 14:28:24@0@ -15@1@15@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@577080@-1@-1@-1@23-6-2013 14:28:24@0@ -16@1@16@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@576120@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:28>, 1, "student", 0, "null") (5, 4, 5, <29:35>, 1, "bezhit", 0, "null")@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:28>, 1, "student", 0, "null") (5, 4, 5, <29:35>, 1, "bezhit", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@37@18@-1@-1@-1@-1@-1@-1@-1@913@62@-1@-1@839824@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:28>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <29:39>, 1, "student-om", 0, "null") (5, 4, 5, <40:53>, 1, "dissertatsi-i", 0, "null")@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:28>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <29:39>, 1, "student-om", 0, "null") (5, 4, 5, <40:53>, 1, "dissertatsi-i", 0, "null")@1@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@49@23@-1@-1@-1@-1@-1@-1@-1@1231@149@-1@-1@1115064@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:17>, 1, "dumajet", 0, "null") (3, 2, 3, <18:22>, 1, "chto", 0, "null") (4, 3, 4, <23:30>, 1, "student", 0, "null") (5, 4, 5, <31:37>, 1, "pishet", 0, "null") (6, 5, 6, <38:52>, 1, "dissertatsi-ju", 0, "null")@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:17>, 1, "dumajet", 0, "null") (3, 2, 3, <18:22>, 1, "chto", 0, "null") (4, 3, 4, <23:30>, 1, "student", 0, "null") (5, 4, 5, <31:37>, 1, "pishet", 0, "null") (6, 5, 6, <38:52>, 1, "dissertatsi-ju", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@38@20@-1@-1@-1@-1@-1@-1@-1@1465@227@-1@-1@936688@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:28>, 1, "student", 0, "null") (5, 4, 5, <29:35>, 1, "pishet", 0, "null") (6, 5, 6, <36:50>, 1, "dissertatsi-ju", 0, "null")@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:28>, 1, "student", 0, "null") (5, 4, 5, <29:35>, 1, "pishet", 0, "null") (6, 5, 6, <36:50>, 1, "dissertatsi-ju", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@47@22@-1@-1@-1@-1@-1@-1@-1@1782@315@-1@-1@1097624@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:19>, 1, "kak", 0, "null") (4, 3, 4, <20:27>, 1, "student", 0, "null") (5, 4, 5, <28:34>, 1, "pishet", 0, "null") (6, 5, 6, <35:49>, 1, "dissertatsi-ju", 0, "null")@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:19>, 1, "kak", 0, "null") (4, 3, 4, <20:27>, 1, "student", 0, "null") (5, 4, 5, <28:34>, 1, "pishet", 0, "null") (6, 5, 6, <35:49>, 1, "dissertatsi-ju", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@43@20@-1@-1@-1@-1@-1@-1@-1@2085@396@-1@-1@1021312@-1@-1@-1@@@ +6@0@6@4@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:25>, 1, "beg-stv-o", 0, "null") (4, 3, 4, <26:35>, 1, "student-a", 0, "null")@4@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:25>, 1, "beg-stv-o", 0, "null") (4, 3, 4, <26:35>, 1, "student-a", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@28@16@-1@-1@-1@-1@-1@-1@-1@2356@457@-1@-1@720288@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:17>, 1, "dumajet", 0, "null") (3, 2, 3, <18:21>, 1, "kak", 0, "null") (4, 3, 4, <22:29>, 1, "student", 0, "null") (5, 4, 5, <30:36>, 1, "pishet", 0, "null") (6, 5, 6, <37:51>, 1, "dissertatsi-ju", 0, "null")@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:17>, 1, "dumajet", 0, "null") (3, 2, 3, <18:21>, 1, "kak", 0, "null") (4, 3, 4, <22:29>, 1, "student", 0, "null") (5, 4, 5, <30:36>, 1, "pishet", 0, "null") (6, 5, 6, <37:51>, 1, "dissertatsi-ju", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@34@16@-1@-1@-1@-1@-1@-1@-1@2559@523@-1@-1@661640@-1@-1@-1@@@ +8@0@8@4@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:25>, 1, "beg-stv-o", 0, "null") (4, 3, 4, <26:36>, 1, "student-om", 0, "null")@4@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:25>, 1, "beg-stv-o", 0, "null") (4, 3, 4, <26:36>, 1, "student-om", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@28@10@-1@-1@-1@-1@-1@-1@-1@2624@567@-1@-1@544844@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:25>, 1, "beg-stv-o", 0, "null") (4, 3, 4, <26:33>, 1, "student", 0, "null")@4@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:25>, 1, "beg-stv-o", 0, "null") (4, 3, 4, <26:33>, 1, "student", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@27@11@-1@-1@-1@-1@-1@-1@-1@2690@611@-1@-1@544148@-1@-1@-1@@@ +10@0@10@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:17>, 1, "dumajet", 0, "null") (3, 2, 3, <18:30>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <31:41>, 1, "student-om", 0, "null") (5, 4, 5, <42:55>, 1, "dissertatsi-i", 0, "null")@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:17>, 1, "dumajet", 0, "null") (3, 2, 3, <18:30>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <31:41>, 1, "student-om", 0, "null") (5, 4, 5, <42:55>, 1, "dissertatsi-i", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@40@18@-1@-1@-1@-1@-1@-1@-1@2793@675@-1@-1@725196@-1@-1@-1@@@ +11@0@11@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:33>, 1, "napisa-ni-je", 0, "null") (5, 4, 5, <34:44>, 1, "student-om", 0, "null") (6, 5, 6, <45:58>, 1, "dissertatsi-i", 0, "null")@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:33>, 1, "napisa-ni-je", 0, "null") (5, 4, 5, <34:44>, 1, "student-om", 0, "null") (6, 5, 6, <45:58>, 1, "dissertatsi-i", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@57@21@-1@-1@-1@-1@-1@-1@-1@2932@762@-1@-1@1018804@-1@-1@-1@@@ +12@0@12@6@(1, 0, 1, <0:11>, 1, "Professor-a", 0, "null") (2, 1, 2, <12:17>, 1, "vidit", 0, "null") (3, 2, 3, <18:22>, 1, "chto", 0, "null") (4, 3, 4, <23:30>, 1, "student", 0, "null") (5, 4, 5, <31:37>, 1, "pishet", 0, "null") (6, 5, 6, <38:52>, 1, "dissertatsi-ju", 0, "null")@6@(1, 0, 1, <0:11>, 1, "Professor-a", 0, "null") (2, 1, 2, <12:17>, 1, "vidit", 0, "null") (3, 2, 3, <18:22>, 1, "chto", 0, "null") (4, 3, 4, <23:30>, 1, "student", 0, "null") (5, 4, 5, <31:37>, 1, "pishet", 0, "null") (6, 5, 6, <38:52>, 1, "dissertatsi-ju", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@47@20@-1@-1@-1@-1@-1@-1@-1@3059@837@-1@-1@876564@-1@-1@-1@@@ +13@0@13@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:28>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <29:36>, 1, "student", 0, "null") (5, 4, 5, <37:51>, 1, "dissertatsi-ju", 0, "null")@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:28>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <29:36>, 1, "student", 0, "null") (5, 4, 5, <37:51>, 1, "dissertatsi-ju", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@40@14@-1@-1@-1@-1@-1@-1@-1@3170@898@-1@-1@748780@-1@-1@-1@@@ +14@0@14@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:28>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <29:38>, 1, "student-a", 0, "null") (5, 4, 5, <39:53>, 1, "dissertatsi-ju", 0, "null")@5@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:28>, 1, "napisa-ni-je", 0, "null") (4, 3, 4, <29:38>, 1, "student-a", 0, "null") (5, 4, 5, <39:53>, 1, "dissertatsi-ju", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@56@17@-1@-1@-1@-1@-1@-1@-1@3308@978@-1@-1@959268@-1@-1@-1@@@ +15@0@15@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:31>, 1, "student-om", 0, "null") (5, 4, 5, <32:38>, 1, "pishet", 0, "null") (6, 5, 6, <39:53>, 1, "dissertatsi-ju", 0, "null")@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:31>, 1, "student-om", 0, "null") (5, 4, 5, <32:38>, 1, "pishet", 0, "null") (6, 5, 6, <39:53>, 1, "dissertatsi-ju", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@44@15@-1@-1@-1@-1@-1@-1@-1@3411@1045@-1@-1@810428@-1@-1@-1@@@ +16@0@16@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:31>, 1, "student-om", 0, "null") (5, 4, 5, <32:38>, 1, "pishet", 0, "null") (6, 5, 6, <39:52>, 1, "dissertatsi-i", 0, "null")@6@(1, 0, 1, <0:9>, 1, "Professor", 0, "null") (2, 1, 2, <10:15>, 1, "vidit", 0, "null") (3, 2, 3, <16:20>, 1, "chto", 0, "null") (4, 3, 4, <21:31>, 1, "student-om", 0, "null") (5, 4, 5, <32:38>, 1, "pishet", 0, "null") (6, 5, 6, <39:52>, 1, "dissertatsi-i", 0, "null")@0@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@44@14@-1@-1@-1@-1@-1@-1@-1@3512@1111@-1@-1@805340@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-illustr1-rus/result b/tests/regression/home/gold/ccomp-illustr1-rus/result index 45e4bcc29..a1a74cb3d 100644 --- a/tests/regression/home/gold/ccomp-illustr1-rus/result +++ b/tests/regression/home/gold/ccomp-illustr1-rus/result @@ -1,6 +1,6 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(124 subj-head 0.000000 0 5 (118 bare-np 0.000000 0 1 (117 nom1-lex 0.000000 0 1 (6 professor 0.000000 0 1 ("Professor")))) (123 head-comp 0.000000 1 5 (8 vidit_2 0.000000 1 2 ("vidit")) (122 head-comp 0.000000 2 5 (10 comps4_complementizer2 0.000000 2 3 ("chto")) (121 subj-head 0.000000 3 5 (120 bare-np 0.000000 3 4 (119 nom1-lex 0.000000 3 4 (11 student 0.000000 3 4 ("student")))) (12 bezhit 0.000000 4 5 ("bezhit"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_professor_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_student_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_runs_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 > ICONS: < e2 info-str e15 > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(146 subj-head 0.000000 0 5 (135 bare-np 0.000000 0 1 (134 nom1-lex 0.000000 0 1 (6 professor 0.000000 0 1 ("Professor")))) (145 head-comp 0.000000 1 5 (7 vidit_1 0.000000 1 2 ("vidit")) (144 bare-np 0.000000 2 5 (143 head-comp 0.000000 2 5 (140 non-event-head-subj 0.000000 2 4 (137 acc3-suffix 0.000000 2 3 (136 low1-suffix 0.000000 2 3 (9 napisa 0.000000 2 3 ("napisa-ni-je")))) (139 bare-np 0.000000 3 4 (138 instr1-suffix 0.000000 3 4 (10 student 0.000000 3 4 ("student-om"))))) (142 bare-np 0.000000 4 5 (141 gen2-suffix 0.000000 4 5 (11 dissertatsi 0.000000 4 5 ("dissertatsi-i"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_professor_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_write_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "nominalized_rel"<-1:-1> LBL: h13 ARG0: x8 ARG1: h14 ] [ "_student_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x11 RSTR: h17 BODY: h18 ] [ "_dissertation_n_rel"<-1:-1> LBL: h19 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h20 ARG0: x12 RSTR: h21 BODY: h22 ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x8 RSTR: h24 BODY: h25 ] > HCONS: < h0 qeq h1 h6 qeq h4 h14 qeq h9 h17 qeq h15 h21 qeq h19 h24 qeq h13 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(140 subj-head 0.000000 0 6 (131 bare-np 0.000000 0 1 (130 nom1-lex 0.000000 0 1 (7 professor 0.000000 0 1 ("Professor")))) (139 head-comp 0.000000 1 6 (8 dumajet 0.000000 1 2 ("dumajet")) (138 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("chto")) (137 subj-head 0.000000 3 6 (133 bare-np 0.000000 3 4 (132 nom1-lex 0.000000 3 4 (11 student 0.000000 3 4 ("student")))) (136 head-comp 0.000000 4 6 (12 pishet 0.000000 4 5 ("pishet")) (135 bare-np 0.000000 5 6 (134 acc2-suffix 0.000000 5 6 (13 dissertatsi 0.000000 5 6 ("dissertatsi-ju")))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_professor_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_thinks_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_student_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_write_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_dissertation_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(152 subj-head 0.000000 0 6 (143 bare-np 0.000000 0 1 (142 nom1-lex 0.000000 0 1 (7 professor 0.000000 0 1 ("Professor")))) (151 head-comp 0.000000 1 6 (9 vidit_2 0.000000 1 2 ("vidit")) (150 head-comp 0.000000 2 6 (11 comps4_complementizer2 0.000000 2 3 ("chto")) (149 subj-head 0.000000 3 6 (145 bare-np 0.000000 3 4 (144 nom1-lex 0.000000 3 4 (12 student 0.000000 3 4 ("student")))) (148 head-comp 0.000000 4 6 (13 pishet 0.000000 4 5 ("pishet")) (147 bare-np 0.000000 5 6 (146 acc2-suffix 0.000000 5 6 (14 dissertatsi 0.000000 5 6 ("dissertatsi-ju")))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_professor_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_student_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_write_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_dissertation_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(145 subj-head 0.000000 0 6 (136 bare-np 0.000000 0 1 (135 nom1-lex 0.000000 0 1 (7 professor 0.000000 0 1 ("Professor")))) (144 head-comp 0.000000 1 6 (9 vidit_2 0.000000 1 2 ("vidit")) (143 head-comp 0.000000 2 6 (10 comps4_complementizer1 0.000000 2 3 ("kak")) (142 subj-head 0.000000 3 6 (138 bare-np 0.000000 3 4 (137 nom1-lex 0.000000 3 4 (11 student 0.000000 3 4 ("student")))) (141 head-comp 0.000000 4 6 (12 pishet 0.000000 4 5 ("pishet")) (140 bare-np 0.000000 5 6 (139 acc2-suffix 0.000000 5 6 (13 dissertatsi 0.000000 5 6 ("dissertatsi-ju")))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_professor_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_student_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_write_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_dissertation_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(104 subj-head 0.000000 0 4 (96 bare-np 0.000000 0 1 (95 nom1-lex 0.000000 0 1 (5 professor 0.000000 0 1 ("Professor")))) (103 head-comp 0.000000 1 4 (6 vidit_1 0.000000 1 2 ("vidit")) (102 bare-np 0.000000 2 4 (101 non-event-head-subj 0.000000 2 4 (98 acc4-suffix 0.000000 2 3 (97 low2-suffix 0.000000 2 3 (8 beg 0.000000 2 3 ("beg-stv-o")))) (100 bare-np 0.000000 3 4 (99 gen1-suffix 0.000000 3 4 (9 student 0.000000 3 4 ("student-a"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_professor_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_beg_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "nominalized_rel"<-1:-1> LBL: h12 ARG0: x8 ARG1: h13 ] [ "_student_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x11 RSTR: h16 BODY: h17 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x8 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h13 qeq h9 h16 qeq h14 h19 qeq h12 > ICONS: < > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(124 subj-head 0.000000 0 5 (118 bare-np 0.000000 0 1 (117 nom1-lex 0.000000 0 1 (6 professor 0.000000 0 1 ("Professor")))) (123 head-comp 0.000000 1 5 (8 vidit_2 0.000000 1 2 ("vidit")) (122 head-comp 0.000000 2 5 (10 chto_2 0.000000 2 3 ("chto")) (121 subj-head 0.000000 3 5 (120 bare-np 0.000000 3 4 (119 nom1-lex 0.000000 3 4 (11 student 0.000000 3 4 ("student")))) (12 bezhit 0.000000 4 5 ("bezhit"))))))@@("S" ("NP" ("N" ("N" ("Professor")))) ("VP" ("V" ("vidit")) ("CP" ("C" ("chto")) ("S" ("NP" ("N" ("N" ("student")))) ("VP" ("bezhit"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_professor_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_runs_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(146 subj-head 0.000000 0 5 (135 bare-np 0.000000 0 1 (134 nom1-lex 0.000000 0 1 (6 professor 0.000000 0 1 ("Professor")))) (145 head-comp 0.000000 1 5 (7 vidit_1 0.000000 1 2 ("vidit")) (144 bare-np 0.000000 2 5 (143 head-comp 0.000000 2 5 (140 non-event-head-subj 0.000000 2 4 (137 acc3-suffix 0.000000 2 3 (136 low1-suffix 0.000000 2 3 (9 napisa 0.000000 2 3 ("napisa-ni-je")))) (139 bare-np 0.000000 3 4 (138 instr1-suffix 0.000000 3 4 (10 student 0.000000 3 4 ("student-om"))))) (142 bare-np 0.000000 4 5 (141 gen2-suffix 0.000000 4 5 (11 dissertatsi 0.000000 4 5 ("dissertatsi-i"))))))))@@("S" ("NP" ("N" ("N" ("Professor")))) ("VP" ("V" ("vidit")) ("NP" ("N" ("N" ("N" ("N" ("V" ("napisa-ni-je")))) ("NP" ("N" ("N" ("student-om"))))) ("NP" ("N" ("N" ("dissertatsi-i"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_professor_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_write_v_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "nominalized_rel"<-1:-1> LBL: h16 ARG0: x8 ARG1: h17 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x14 RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x15 RSTR: h23 BODY: h24 ] [ "_dissertation_n_rel"<-1:-1> LBL: h25 ARG0: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h16 h17 qeq h12 h19 qeq h21 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(140 subj-head 0.000000 0 6 (131 bare-np 0.000000 0 1 (130 nom1-lex 0.000000 0 1 (7 professor 0.000000 0 1 ("Professor")))) (139 head-comp 0.000000 1 6 (8 dumajet 0.000000 1 2 ("dumajet")) (138 head-comp 0.000000 2 6 (9 chto_1 0.000000 2 3 ("chto")) (137 subj-head 0.000000 3 6 (133 bare-np 0.000000 3 4 (132 nom1-lex 0.000000 3 4 (11 student 0.000000 3 4 ("student")))) (136 head-comp 0.000000 4 6 (12 pishet 0.000000 4 5 ("pishet")) (135 bare-np 0.000000 5 6 (134 acc2-suffix 0.000000 5 6 (13 dissertatsi 0.000000 5 6 ("dissertatsi-ju")))))))))@@("S" ("NP" ("N" ("N" ("Professor")))) ("VP" ("V" ("dumajet")) ("CP" ("C" ("chto")) ("S" ("NP" ("N" ("N" ("student")))) ("VP" ("V" ("pishet")) ("NP" ("N" ("N" ("dissertatsi-ju")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_professor_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_thinks_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_write_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_dissertation_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(152 subj-head 0.000000 0 6 (143 bare-np 0.000000 0 1 (142 nom1-lex 0.000000 0 1 (7 professor 0.000000 0 1 ("Professor")))) (151 head-comp 0.000000 1 6 (9 vidit_2 0.000000 1 2 ("vidit")) (150 head-comp 0.000000 2 6 (11 chto_2 0.000000 2 3 ("chto")) (149 subj-head 0.000000 3 6 (145 bare-np 0.000000 3 4 (144 nom1-lex 0.000000 3 4 (12 student 0.000000 3 4 ("student")))) (148 head-comp 0.000000 4 6 (13 pishet 0.000000 4 5 ("pishet")) (147 bare-np 0.000000 5 6 (146 acc2-suffix 0.000000 5 6 (14 dissertatsi 0.000000 5 6 ("dissertatsi-ju")))))))))@@("S" ("NP" ("N" ("N" ("Professor")))) ("VP" ("V" ("vidit")) ("CP" ("C" ("chto")) ("S" ("NP" ("N" ("N" ("student")))) ("VP" ("V" ("pishet")) ("NP" ("N" ("N" ("dissertatsi-ju")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_professor_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_write_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_dissertation_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(145 subj-head 0.000000 0 6 (136 bare-np 0.000000 0 1 (135 nom1-lex 0.000000 0 1 (7 professor 0.000000 0 1 ("Professor")))) (144 head-comp 0.000000 1 6 (9 vidit_2 0.000000 1 2 ("vidit")) (143 head-comp 0.000000 2 6 (10 kak 0.000000 2 3 ("kak")) (142 subj-head 0.000000 3 6 (138 bare-np 0.000000 3 4 (137 nom1-lex 0.000000 3 4 (11 student 0.000000 3 4 ("student")))) (141 head-comp 0.000000 4 6 (12 pishet 0.000000 4 5 ("pishet")) (140 bare-np 0.000000 5 6 (139 acc2-suffix 0.000000 5 6 (13 dissertatsi 0.000000 5 6 ("dissertatsi-ju")))))))))@@("S" ("NP" ("N" ("N" ("Professor")))) ("VP" ("V" ("vidit")) ("CP" ("C" ("kak")) ("S" ("NP" ("N" ("N" ("student")))) ("VP" ("V" ("pishet")) ("NP" ("N" ("N" ("dissertatsi-ju")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_professor_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_write_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_dissertation_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(104 subj-head 0.000000 0 4 (96 bare-np 0.000000 0 1 (95 nom1-lex 0.000000 0 1 (5 professor 0.000000 0 1 ("Professor")))) (103 head-comp 0.000000 1 4 (6 vidit_1 0.000000 1 2 ("vidit")) (102 bare-np 0.000000 2 4 (101 non-event-head-subj 0.000000 2 4 (98 acc4-suffix 0.000000 2 3 (97 low2-suffix 0.000000 2 3 (8 beg 0.000000 2 3 ("beg-stv-o")))) (100 bare-np 0.000000 3 4 (99 gen1-suffix 0.000000 3 4 (9 student 0.000000 3 4 ("student-a"))))))))@@("S" ("NP" ("N" ("N" ("Professor")))) ("VP" ("V" ("vidit")) ("NP" ("N" ("N" ("N" ("VP" ("beg-stv-o")))) ("NP" ("N" ("N" ("student-a"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_professor_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_beg_v_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "nominalized_rel"<-1:-1> LBL: h15 ARG0: x8 ARG1: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x14 RSTR: h18 BODY: h19 ] [ "_student_n_rel"<-1:-1> LBL: h20 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h15 h16 qeq h12 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-illustr1-rus/run b/tests/regression/home/gold/ccomp-illustr1-rus/run index c9ecc0a70..62e720fe3 100644 --- a/tests/regression/home/gold/ccomp-illustr1-rus/run +++ b/tests/regression/home/gold/ccomp-illustr1-rus/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1467@-1@-1@13@12@9@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@16@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1543@-1@-1@13@12@9@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@25-aug-2020 12:35:00@25-aug-2020 12:35:00@-1@ diff --git a/tests/regression/home/gold/ccomp-illustr2-tur/parse b/tests/regression/home/gold/ccomp-illustr2-tur/parse index d8518652b..b380eefc7 100644 --- a/tests/regression/home/gold/ccomp-illustr2-tur/parse +++ b/tests/regression/home/gold/ccomp-illustr2-tur/parse @@ -1,16 +1,16 @@ -1@0@1@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:22>, 1, "git-ti-n", 0, "null")@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:22>, 1, "git-ti-n", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@9@8@-1@-1@-1@-1@-1@-1@-1@725@21@-1@-1@265792@-1@-1@-1@@@ -2@0@2@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null")@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@6@-1@-1@-1@-1@-1@-1@-1@851@48@-1@-1@189220@-1@-1@-1@@@ -3@0@3@4@(1, 0, 1, <0:5>, 1, "senim", 0, "null") (2, 1, 2, <6:15>, 1, "sinema-ya", 0, "null") (3, 2, 3, <16:26>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <27:38>, 1, "isti-yor-um", 0, "null")@4@(1, 0, 1, <0:5>, 1, "senim", 0, "null") (2, 1, 2, <6:15>, 1, "sinema-ya", 0, "null") (3, 2, 3, <16:26>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <27:38>, 1, "isti-yor-um", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@18@12@-1@-1@-1@-1@-1@-1@-1@898@87@-1@-1@601408@-1@-1@-1@@@ -4@0@4@4@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <25:36>, 1, "isti-yor-um", 0, "null")@4@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <25:36>, 1, "isti-yor-um", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@8@-1@-1@-1@-1@-1@-1@-1@1080@130@-1@-1@308244@-1@-1@-1@@@ -5@0@5@4@(1, 0, 1, <0:4>, 1, "seni", 0, "null") (2, 1, 2, <5:14>, 1, "sinema-ya", 0, "null") (3, 2, 3, <15:25>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <26:37>, 1, "isti-yor-um", 0, "null")@4@(1, 0, 1, <0:4>, 1, "seni", 0, "null") (2, 1, 2, <5:14>, 1, "sinema-ya", 0, "null") (3, 2, 3, <15:25>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <26:37>, 1, "isti-yor-um", 0, "null")@0@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@13@8@-1@-1@-1@-1@-1@-1@-1@1116@160@-1@-1@308292@-1@-1@-1@@@ -6@0@6@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:17>, 1, "senim", 0, "null") (3, 2, 3, <18:27>, 1, "sinema-ya", 0, "null") (4, 3, 4, <28:38>, 1, "gel-me-n-i", 0, "null")@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:17>, 1, "senim", 0, "null") (3, 2, 3, <18:27>, 1, "sinema-ya", 0, "null") (4, 3, 4, <28:38>, 1, "gel-me-n-i", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@16@10@-1@-1@-1@-1@-1@-1@-1@1153@195@-1@-1@355816@-1@-1@-1@@@ -7@0@7@5@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:14>, 1, "ki", 0, "null") (3, 2, 3, <15:18>, 1, "sen", 0, "null") (4, 3, 4, <19:28>, 1, "sinema-ya", 0, "null") (5, 4, 5, <29:38>, 1, "gel-esi-n", 0, "null")@5@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:14>, 1, "ki", 0, "null") (3, 2, 3, <15:18>, 1, "sen", 0, "null") (4, 3, 4, <19:28>, 1, "sinema-ya", 0, "null") (5, 4, 5, <29:38>, 1, "gel-esi-n", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@19@14@-1@-1@-1@-1@-1@-1@-1@1200@237@-1@-1@585320@-1@-1@-1@@@ -8@0@8@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:15>, 1, "sen", 0, "null") (3, 2, 3, <16:25>, 1, "sinema-ya", 0, "null") (4, 3, 4, <26:35>, 1, "gel-esi-n", 0, "null")@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:15>, 1, "sen", 0, "null") (3, 2, 3, <16:25>, 1, "sinema-ya", 0, "null") (4, 3, 4, <26:35>, 1, "gel-esi-n", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@16@12@-1@-1@-1@-1@-1@-1@-1@1466@285@-1@-1@522384@-1@-1@-1@@@ -9@0@9@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:16>, 1, "diye", 0, "null") (3, 2, 3, <17:26>, 1, "sinema-ya", 0, "null") (4, 3, 4, <27:36>, 1, "gel-esi-n", 0, "null")@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:16>, 1, "diye", 0, "null") (3, 2, 3, <17:26>, 1, "sinema-ya", 0, "null") (4, 3, 4, <27:36>, 1, "gel-esi-n", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@8@-1@-1@-1@-1@-1@-1@-1@1680@326@-1@-1@317828@-1@-1@-1@@@ -10@0@10@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:28>, 1, "git-ti", 0, "null") (5, 4, 5, <29:37>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:28>, 1, "git-ti", 0, "null") (5, 4, 5, <29:37>, 1, "sani-yor", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@34@24@-1@-1@-1@-1@-1@-1@-1@1774@392@-1@-1@874936@-1@-1@-1@@@ -11@0@11@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:30>, 1, "git-ti-n", 0, "null") (5, 4, 5, <31:39>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:30>, 1, "git-ti-n", 0, "null") (5, 4, 5, <31:39>, 1, "sani-yor", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@22@16@-1@-1@-1@-1@-1@-1@-1@2027@450@-1@-1@462156@-1@-1@-1@@@ -12@0@12@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@31@20@-1@-1@-1@-1@-1@-1@-1@2113@509@-1@-1@620624@-1@-1@-1@@@ -13@0@13@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:38>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:38>, 1, "sani-yor", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@25@20@-1@-1@-1@-1@-1@-1@-1@2182@561@-1@-1@717496@-1@-1@-1@@@ -14@0@14@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:34>, 1, "diye", 0, "null") (6, 5, 6, <35:43>, 1, "sani-yor", 0, "null")@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:34>, 1, "diye", 0, "null") (6, 5, 6, <35:43>, 1, "sani-yor", 0, "null")@1@-1@5@5@-1@6@-1@-1@-1@-1@-1@-1@33@23@-1@-1@-1@-1@-1@-1@-1@2456@638@-1@-1@868696@-1@-1@-1@@@ -15@0@15@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:32>, 1, "ki", 0, "null") (6, 5, 6, <33:41>, 1, "sani-yor", 0, "null")@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:32>, 1, "ki", 0, "null") (6, 5, 6, <33:41>, 1, "sani-yor", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@28@16@-1@-1@-1@-1@-1@-1@-1@2763@704@-1@-1@532700@-1@-1@-1@@@ -16@0@16@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@31@20@-1@-1@-1@-1@-1@-1@-1@2849@763@-1@-1@620624@-1@-1@-1@@@ +1@0@1@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:22>, 1, "git-ti-n", 0, "null")@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:22>, 1, "git-ti-n", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@9@8@-1@-1@-1@-1@-1@-1@-1@725@21@-1@-1@300256@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null")@3@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@6@-1@-1@-1@-1@-1@-1@-1@851@48@-1@-1@216992@-1@-1@-1@@@ +3@0@3@4@(1, 0, 1, <0:5>, 1, "senim", 0, "null") (2, 1, 2, <6:15>, 1, "sinema-ya", 0, "null") (3, 2, 3, <16:26>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <27:38>, 1, "isti-yor-um", 0, "null")@4@(1, 0, 1, <0:5>, 1, "senim", 0, "null") (2, 1, 2, <6:15>, 1, "sinema-ya", 0, "null") (3, 2, 3, <16:26>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <27:38>, 1, "isti-yor-um", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@18@12@-1@-1@-1@-1@-1@-1@-1@898@87@-1@-1@671912@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <25:36>, 1, "isti-yor-um", 0, "null")@4@(1, 0, 1, <0:3>, 1, "sen", 0, "null") (2, 1, 2, <4:13>, 1, "sinema-ya", 0, "null") (3, 2, 3, <14:24>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <25:36>, 1, "isti-yor-um", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@8@-1@-1@-1@-1@-1@-1@-1@1080@130@-1@-1@349228@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:4>, 1, "seni", 0, "null") (2, 1, 2, <5:14>, 1, "sinema-ya", 0, "null") (3, 2, 3, <15:25>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <26:37>, 1, "isti-yor-um", 0, "null")@4@(1, 0, 1, <0:4>, 1, "seni", 0, "null") (2, 1, 2, <5:14>, 1, "sinema-ya", 0, "null") (3, 2, 3, <15:25>, 1, "gel-me-n-i", 0, "null") (4, 3, 4, <26:37>, 1, "isti-yor-um", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@8@-1@-1@-1@-1@-1@-1@-1@1116@160@-1@-1@349276@-1@-1@-1@@@ +6@0@6@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:17>, 1, "senim", 0, "null") (3, 2, 3, <18:27>, 1, "sinema-ya", 0, "null") (4, 3, 4, <28:38>, 1, "gel-me-n-i", 0, "null")@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:17>, 1, "senim", 0, "null") (3, 2, 3, <18:27>, 1, "sinema-ya", 0, "null") (4, 3, 4, <28:38>, 1, "gel-me-n-i", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@16@10@-1@-1@-1@-1@-1@-1@-1@1153@195@-1@-1@402160@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:14>, 1, "ki", 0, "null") (3, 2, 3, <15:18>, 1, "sen", 0, "null") (4, 3, 4, <19:28>, 1, "sinema-ya", 0, "null") (5, 4, 5, <29:38>, 1, "gel-esi-n", 0, "null")@5@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:14>, 1, "ki", 0, "null") (3, 2, 3, <15:18>, 1, "sen", 0, "null") (4, 3, 4, <19:28>, 1, "sinema-ya", 0, "null") (5, 4, 5, <29:38>, 1, "gel-esi-n", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@19@14@-1@-1@-1@-1@-1@-1@-1@1200@237@-1@-1@670880@-1@-1@-1@@@ +8@0@8@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:15>, 1, "sen", 0, "null") (3, 2, 3, <16:25>, 1, "sinema-ya", 0, "null") (4, 3, 4, <26:35>, 1, "gel-esi-n", 0, "null")@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:15>, 1, "sen", 0, "null") (3, 2, 3, <16:25>, 1, "sinema-ya", 0, "null") (4, 3, 4, <26:35>, 1, "gel-esi-n", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@16@12@-1@-1@-1@-1@-1@-1@-1@1466@285@-1@-1@576944@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:16>, 1, "diye", 0, "null") (3, 2, 3, <17:26>, 1, "sinema-ya", 0, "null") (4, 3, 4, <27:36>, 1, "gel-esi-n", 0, "null")@4@(1, 0, 1, <0:11>, 1, "isti-yor-um", 0, "null") (2, 1, 2, <12:16>, 1, "diye", 0, "null") (3, 2, 3, <17:26>, 1, "sinema-ya", 0, "null") (4, 3, 4, <27:36>, 1, "gel-esi-n", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@8@-1@-1@-1@-1@-1@-1@-1@1680@326@-1@-1@357772@-1@-1@-1@@@ +10@0@10@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:28>, 1, "git-ti", 0, "null") (5, 4, 5, <29:37>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:28>, 1, "git-ti", 0, "null") (5, 4, 5, <29:37>, 1, "sani-yor", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@34@24@-1@-1@-1@-1@-1@-1@-1@1774@392@-1@-1@984696@-1@-1@-1@@@ +11@0@11@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:30>, 1, "git-ti-n", 0, "null") (5, 4, 5, <31:39>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:11>, 1, "seni", 0, "null") (3, 2, 3, <12:21>, 1, "sinema-ya", 0, "null") (4, 3, 4, <22:30>, 1, "git-ti-n", 0, "null") (5, 4, 5, <31:39>, 1, "sani-yor", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@22@16@-1@-1@-1@-1@-1@-1@-1@2027@450@-1@-1@525300@-1@-1@-1@@@ +12@0@12@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@31@20@-1@-1@-1@-1@-1@-1@-1@2113@509@-1@-1@706768@-1@-1@-1@@@ +13@0@13@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:38>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:38>, 1, "sani-yor", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@25@20@-1@-1@-1@-1@-1@-1@-1@2182@561@-1@-1@804296@-1@-1@-1@@@ +14@0@14@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:34>, 1, "diye", 0, "null") (6, 5, 6, <35:43>, 1, "sani-yor", 0, "null")@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:34>, 1, "diye", 0, "null") (6, 5, 6, <35:43>, 1, "sani-yor", 0, "null")@1@-1@4@4@-1@5@-1@-1@-1@-1@-1@-1@33@23@-1@-1@-1@-1@-1@-1@-1@2456@638@-1@-1@992800@-1@-1@-1@@@ +15@0@15@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:32>, 1, "ki", 0, "null") (6, 5, 6, <33:41>, 1, "sani-yor", 0, "null")@6@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:29>, 1, "git-ti-n", 0, "null") (5, 4, 5, <30:32>, 1, "ki", 0, "null") (6, 5, 6, <33:41>, 1, "sani-yor", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@28@16@-1@-1@-1@-1@-1@-1@-1@2763@704@-1@-1@617244@-1@-1@-1@@@ +16@0@16@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@5@(1, 0, 1, <0:6>, 1, "herkes", 0, "null") (2, 1, 2, <7:10>, 1, "sen", 0, "null") (3, 2, 3, <11:20>, 1, "sinema-ya", 0, "null") (4, 3, 4, <21:27>, 1, "git-ti", 0, "null") (5, 4, 5, <28:36>, 1, "sani-yor", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@31@20@-1@-1@-1@-1@-1@-1@-1@2849@763@-1@-1@706768@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-illustr2-tur/result b/tests/regression/home/gold/ccomp-illustr2-tur/result index 2fca0146f..195568c03 100644 --- a/tests/regression/home/gold/ccomp-illustr2-tur/result +++ b/tests/regression/home/gold/ccomp-illustr2-tur/result @@ -1,7 +1,7 @@ 1@0@-1@-1@-1@-1@-1@-1@-1@-1@(57 subj-head 0.000000 0 3 (51 bare-np 0.000000 0 1 (4 sen 0.000000 0 1 ("sen"))) (56 comp-head 0.000000 1 3 (53 bare-np 0.000000 1 2 (52 dat4-suffix 0.000000 1 2 (5 sinema 0.000000 1 2 ("sinema-ya")))) (55 2sg-suffix 0.000000 2 3 (54 past-suffix 0.000000 2 3 (6 git 0.000000 2 3 ("git-ti-n"))))))@@("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("git-ti-n"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h5 BODY: h6 ] [ "_you_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h10 BODY: h11 ] [ "_cinema_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) 3@0@-1@-1@-1@-1@-1@-1@-1@-1@(88 decl-head-opt-subj 0.000000 0 4 (87 comp-head 0.000000 0 4 (84 bare-np 0.000000 0 3 (83 non-event-subj-head 0.000000 0 3 (76 bare-np 0.000000 0 1 (5 senim 0.000000 0 1 ("senim"))) (82 comp-head 0.000000 1 3 (78 bare-np 0.000000 1 2 (77 dat4-suffix 0.000000 1 2 (6 sinema 0.000000 1 2 ("sinema-ya")))) (81 acc4-suffix 0.000000 2 3 (80 2sg-noun-suffix 0.000000 2 3 (79 low-suffix 0.000000 2 3 (7 gel 0.000000 2 3 ("gel-me-n-i")))))))) (86 1sg-suffix 0.000000 3 4 (85 pres-suffix 0.000000 3 4 (8 isti_1 0.000000 3 4 ("isti-yor-um"))))))@@("S" ("VP" ("NP" ("N" ("NP" ("N" ("senim"))) ("N" ("NP" ("N" ("N" ("sinema-ya")))) ("N" ("N" ("N" ("V" ("gel-me-n-i")))))))) ("V" ("V" ("V" ("isti-yor-um"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h10 BODY: h11 ] [ "_you_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h15 BODY: h16 ] [ "_cinema_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_come_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "nominalized_rel"<-1:-1> LBL: h20 ARG0: x5 ARG1: h21 ] [ "_want_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h20 h10 qeq h12 h15 qeq h17 h21 qeq h18 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(97 decl-head-opt-subj 0.000000 0 5 (96 head-comp 0.000000 0 5 (87 1sg-suffix 0.000000 0 1 (86 pres-suffix 0.000000 0 1 (7 isti_2 0.000000 0 1 ("isti-yor-um")))) (95 head-comp 0.000000 1 5 (8 ki 0.000000 1 2 ("ki")) (94 subj-head 0.000000 2 5 (88 bare-np 0.000000 2 3 (9 sen 0.000000 2 3 ("sen"))) (93 comp-head 0.000000 3 5 (90 bare-np 0.000000 3 4 (89 dat4-suffix 0.000000 3 4 (10 sinema 0.000000 3 4 ("sinema-ya")))) (92 2sg-suffix 0.000000 4 5 (91 opt-suffix 0.000000 4 5 (11 gel 0.000000 4 5 ("gel-esi-n")))))))))@@("S" ("VP" ("V" ("V" ("V" ("isti-yor-um")))) ("CP" ("C" ("ki")) ("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("gel-esi-n")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_want_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h7 BODY: h8 ] [ "_you_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h12 BODY: h13 ] [ "_cinema_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_come_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: optative E.MOOD: mood ] ARG1: x6 ARG2: x11 ] > HCONS: < h0 qeq h1 h4 qeq h15 h7 qeq h9 h12 qeq h14 > ICONS: < e2 non-focus x3 e2 info-str e16 > ]@((:ascore . 0.0) (:probability . 1.0)) -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(83 decl-head-opt-subj 0.000000 0 4 (82 head-comp 0.000000 0 4 (74 1sg-suffix 0.000000 0 1 (73 pres-suffix 0.000000 0 1 (6 isti_2 0.000000 0 1 ("isti-yor-um")))) (81 subj-head 0.000000 1 4 (75 bare-np 0.000000 1 2 (7 sen 0.000000 1 2 ("sen"))) (80 comp-head 0.000000 2 4 (77 bare-np 0.000000 2 3 (76 dat4-suffix 0.000000 2 3 (8 sinema 0.000000 2 3 ("sinema-ya")))) (79 2sg-suffix 0.000000 3 4 (78 opt-suffix 0.000000 3 4 (9 gel 0.000000 3 4 ("gel-esi-n"))))))))@@("S" ("VP" ("V" ("V" ("V" ("isti-yor-um")))) ("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("gel-esi-n"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_want_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h7 BODY: h8 ] [ "_you_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h12 BODY: h13 ] [ "_cinema_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_come_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: optative E.MOOD: mood ] ARG1: x6 ARG2: x11 ] > HCONS: < h0 qeq h1 h4 qeq h15 h7 qeq h9 h12 qeq h14 > ICONS: < e2 non-focus x3 e2 info-str e16 > ]@((:ascore . 0.0) (:probability . 1.0)) -10@0@-1@-1@-1@-1@-1@-1@-1@-1@(122 subj-head 0.000000 0 5 (111 bare-np 0.000000 0 1 (110 nom4-lex 0.000000 0 1 (6 herkes 0.000000 0 1 ("herkes")))) (121 comp-head 0.000000 1 5 (118 subj-head 0.000000 1 4 (112 bare-np 0.000000 1 2 (7 seni 0.000000 1 2 ("seni"))) (117 comp-head 0.000000 2 4 (114 bare-np 0.000000 2 3 (113 dat4-suffix 0.000000 2 3 (8 sinema 0.000000 2 3 ("sinema-ya")))) (116 subj-lex 0.000000 3 4 (115 past-suffix 0.000000 3 4 (9 git 0.000000 3 4 ("git-ti")))))) (120 3sg-lex 0.000000 4 5 (119 pres-suffix 0.000000 4 5 (11 sani_2 0.000000 4 5 ("sani-yor"))))))@@("S" ("NP" ("N" ("N" ("herkes")))) ("VP" ("S" ("NP" ("N" ("seni"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("git-ti")))))) ("V" ("V" ("V" ("sani-yor"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_everyone_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h10 BODY: h11 ] [ "_you_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h15 BODY: h16 ] [ "_cinema_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_believe_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < e2 info-str e19 > ]@((:ascore . 0.0) (:probability . 1.0)) -13@0@-1@-1@-1@-1@-1@-1@-1@-1@(108 subj-head 0.000000 0 5 (97 bare-np 0.000000 0 1 (96 nom4-lex 0.000000 0 1 (6 herkes 0.000000 0 1 ("herkes")))) (107 comp-head 0.000000 1 5 (104 subj-head 0.000000 1 4 (98 bare-np 0.000000 1 2 (7 sen 0.000000 1 2 ("sen"))) (103 comp-head 0.000000 2 4 (100 bare-np 0.000000 2 3 (99 dat4-suffix 0.000000 2 3 (8 sinema 0.000000 2 3 ("sinema-ya")))) (102 2sg-suffix 0.000000 3 4 (101 past-suffix 0.000000 3 4 (9 git 0.000000 3 4 ("git-ti-n")))))) (106 3sg-lex 0.000000 4 5 (105 pres-suffix 0.000000 4 5 (10 sani_1 0.000000 4 5 ("sani-yor"))))))@@("S" ("NP" ("N" ("N" ("herkes")))) ("VP" ("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("git-ti-n")))))) ("V" ("V" ("V" ("sani-yor"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_everyone_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h10 BODY: h11 ] [ "_you_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h15 BODY: h16 ] [ "_cinema_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_believe_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < e2 info-str e19 > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(97 decl-head-opt-subj 0.000000 0 5 (96 head-comp 0.000000 0 5 (87 1sg-suffix 0.000000 0 1 (86 pres-suffix 0.000000 0 1 (7 isti_2 0.000000 0 1 ("isti-yor-um")))) (95 head-comp 0.000000 1 5 (8 ki 0.000000 1 2 ("ki")) (94 subj-head 0.000000 2 5 (88 bare-np 0.000000 2 3 (9 sen 0.000000 2 3 ("sen"))) (93 comp-head 0.000000 3 5 (90 bare-np 0.000000 3 4 (89 dat4-suffix 0.000000 3 4 (10 sinema 0.000000 3 4 ("sinema-ya")))) (92 2sg-suffix 0.000000 4 5 (91 opt-suffix 0.000000 4 5 (11 gel 0.000000 4 5 ("gel-esi-n")))))))))@@("S" ("VP" ("V" ("V" ("V" ("isti-yor-um")))) ("CP" ("C" ("ki")) ("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("gel-esi-n")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_want_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h7 BODY: h8 ] [ "_you_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h12 BODY: h13 ] [ "_cinema_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_come_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: optative E.MOOD: mood ] ARG1: x6 ARG2: x11 ] > HCONS: < h0 qeq h1 h4 qeq h15 h7 qeq h9 h12 qeq h14 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(83 decl-head-opt-subj 0.000000 0 4 (82 head-comp 0.000000 0 4 (74 1sg-suffix 0.000000 0 1 (73 pres-suffix 0.000000 0 1 (6 isti_2 0.000000 0 1 ("isti-yor-um")))) (81 subj-head 0.000000 1 4 (75 bare-np 0.000000 1 2 (7 sen 0.000000 1 2 ("sen"))) (80 comp-head 0.000000 2 4 (77 bare-np 0.000000 2 3 (76 dat4-suffix 0.000000 2 3 (8 sinema 0.000000 2 3 ("sinema-ya")))) (79 2sg-suffix 0.000000 3 4 (78 opt-suffix 0.000000 3 4 (9 gel 0.000000 3 4 ("gel-esi-n"))))))))@@("S" ("VP" ("V" ("V" ("V" ("isti-yor-um")))) ("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("gel-esi-n"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_want_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h7 BODY: h8 ] [ "_you_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h12 BODY: h13 ] [ "_cinema_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_come_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: optative E.MOOD: mood ] ARG1: x6 ARG2: x11 ] > HCONS: < h0 qeq h1 h4 qeq h15 h7 qeq h9 h12 qeq h14 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(122 subj-head 0.000000 0 5 (111 bare-np 0.000000 0 1 (110 nom4-lex 0.000000 0 1 (6 herkes 0.000000 0 1 ("herkes")))) (121 comp-head 0.000000 1 5 (118 subj-head 0.000000 1 4 (112 bare-np 0.000000 1 2 (7 seni 0.000000 1 2 ("seni"))) (117 comp-head 0.000000 2 4 (114 bare-np 0.000000 2 3 (113 dat4-suffix 0.000000 2 3 (8 sinema 0.000000 2 3 ("sinema-ya")))) (116 subj-lex 0.000000 3 4 (115 past-suffix 0.000000 3 4 (9 git 0.000000 3 4 ("git-ti")))))) (120 3sg-lex 0.000000 4 5 (119 pres-suffix 0.000000 4 5 (11 sani_2 0.000000 4 5 ("sani-yor"))))))@@("S" ("NP" ("N" ("N" ("herkes")))) ("VP" ("S" ("NP" ("N" ("seni"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("git-ti")))))) ("V" ("V" ("V" ("sani-yor"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_everyone_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h10 BODY: h11 ] [ "_you_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h15 BODY: h16 ] [ "_cinema_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_believe_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(108 subj-head 0.000000 0 5 (97 bare-np 0.000000 0 1 (96 nom4-lex 0.000000 0 1 (6 herkes 0.000000 0 1 ("herkes")))) (107 comp-head 0.000000 1 5 (104 subj-head 0.000000 1 4 (98 bare-np 0.000000 1 2 (7 sen 0.000000 1 2 ("sen"))) (103 comp-head 0.000000 2 4 (100 bare-np 0.000000 2 3 (99 dat4-suffix 0.000000 2 3 (8 sinema 0.000000 2 3 ("sinema-ya")))) (102 2sg-suffix 0.000000 3 4 (101 past-suffix 0.000000 3 4 (9 git 0.000000 3 4 ("git-ti-n")))))) (106 3sg-lex 0.000000 4 5 (105 pres-suffix 0.000000 4 5 (10 sani_1 0.000000 4 5 ("sani-yor"))))))@@("S" ("NP" ("N" ("N" ("herkes")))) ("VP" ("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("git-ti-n")))))) ("V" ("V" ("V" ("sani-yor"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_everyone_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h10 BODY: h11 ] [ "_you_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h15 BODY: h16 ] [ "_cinema_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_believe_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) 14@0@-1@-1@-1@-1@-1@-1@-1@-1@(128 subj-head 0.000000 0 6 (116 bare-np 0.000000 0 1 (115 nom4-lex 0.000000 0 1 (7 herkes 0.000000 0 1 ("herkes")))) (127 comp-head 0.000000 1 6 (124 comp-head 0.000000 1 5 (123 subj-head 0.000000 1 4 (117 bare-np 0.000000 1 2 (8 sen 0.000000 1 2 ("sen"))) (122 comp-head 0.000000 2 4 (119 bare-np 0.000000 2 3 (118 dat4-suffix 0.000000 2 3 (9 sinema 0.000000 2 3 ("sinema-ya")))) (121 2sg-suffix 0.000000 3 4 (120 past-suffix 0.000000 3 4 (10 git 0.000000 3 4 ("git-ti-n")))))) (11 diye 0.000000 4 5 ("diye"))) (126 3sg-lex 0.000000 5 6 (125 pres-suffix 0.000000 5 6 (12 sani_1 0.000000 5 6 ("sani-yor"))))))@@("S" ("NP" ("N" ("N" ("herkes")))) ("VP" ("CP" ("S" ("NP" ("N" ("sen"))) ("VP" ("NP" ("N" ("N" ("sinema-ya")))) ("V" ("V" ("V" ("git-ti-n")))))) ("C" ("diye"))) ("V" ("V" ("V" ("sani-yor"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_everyone_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd ] RSTR: h10 BODY: h11 ] [ "_you_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h15 BODY: h16 ] [ "_cinema_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_believe_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-illustr2-tur/run b/tests/regression/home/gold/ccomp-illustr2-tur/run index 6d0e67fd4..b07010114 100644 --- a/tests/regression/home/gold/ccomp-illustr2-tur/run +++ b/tests/regression/home/gold/ccomp-illustr2-tur/run @@ -1 +1 @@ -0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1492@-1@-1@13@12@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@24-jul-2020 17:15:10@24-jul-2020 17:15:10@-1@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1544@-1@-1@13@12@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@25-aug-2020 14:24:03@25-aug-2020 14:24:03@-1@ diff --git a/tests/regression/home/gold/ccomp-illustr3-deu/item b/tests/regression/home/gold/ccomp-illustr3-deu/item index d0dd45573..465565994 100644 --- a/tests/regression/home/gold/ccomp-illustr3-deu/item +++ b/tests/regression/home/gold/ccomp-illustr3-deu/item @@ -1,9 +1,9 @@ -1@unknown@formal@none@1@S@Ich glaube dass Klaus das Buch lesen will@@@@@@@olzama@2018-01-09 -2@unknown@formal@none@1@S@Ich glaube dass Klaus das Buch liest@@@@@@@olzama@2018-01-09 -3@unknown@formal@none@1@S@Klaus liest das Buch@@@@@@@olzama@2018-01-09 -4@unknown@formal@none@1@S@das Buch liest Klaus@@@@@@@olzama@2018-01-09 -5@unknown@formal@none@1@@Ich glaube dass Klaus will das Buch lesen@@@@@@@olzama@2018-01-09 -6@unknown@formal@none@1@@Ich glaube dass Klaus das Buch will lesen@@@@@@@olzama@2018-01-09 -7@unknown@formal@none@1@@Ich glaube dass Klaus liest das Buch@@@@@@@olzama@2018-01-09 -8@unknown@formal@none@1@@Ich glaube dass das Buch liest Klaus@@@@@@@olzama@2018-01-09 -9@unknown@formal@none@1@S@Ich glaube dass das Buch Klaus liest@@@@@@@olzama@2018-01-09 +1@unknown@formal@none@1@S@Ich glaube dass Klaus das Buch lesen will@@@@1@-1@@olzama@9-jan-2018 +2@unknown@formal@none@1@S@Ich glaube dass Klaus das Buch liest@@@@1@-1@@olzama@9-jan-2018 +3@unknown@formal@none@1@S@Klaus liest das Buch@@@@1@-1@@olzama@9-jan-2018 +4@unknown@formal@none@1@S@das Buch liest Klaus@@@@1@-1@@olzama@9-jan-2018 +5@unknown@formal@none@1@@Ich glaube dass Klaus will das Buch lesen@@@@1@-1@@olzama@9-jan-2018 +6@unknown@formal@none@1@@Ich glaube dass Klaus das Buch will lesen@@@@1@-1@@olzama@9-jan-2018 +7@unknown@formal@none@1@@Ich glaube dass Klaus liest das Buch@@@@1@-1@@olzama@9-jan-2018 +8@unknown@formal@none@1@@Ich glaube dass das Buch liest Klaus@@@@1@-1@@olzama@9-jan-2018 +9@unknown@formal@none@1@S@Ich glaube dass das Buch Klaus liest@@@@1@-1@@olzama@9-jan-2018 diff --git a/tests/regression/home/gold/ccomp-illustr3-deu/parse b/tests/regression/home/gold/ccomp-illustr3-deu/parse index 36a085e96..57b48cd3a 100644 --- a/tests/regression/home/gold/ccomp-illustr3-deu/parse +++ b/tests/regression/home/gold/ccomp-illustr3-deu/parse @@ -1,9 +1,9 @@ -1@1@1@-1@0@-1@0@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@1043892@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@636704@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@367916@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@351276@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@1481776@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@816424@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@684460@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@667384@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@638104@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@8@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:25>, 1, "das", 0, "null") (6, 5, 6, <26:30>, 1, "Buch", 0, "null") (7, 6, 7, <31:36>, 1, "lesen", 0, "null") (8, 7, 8, <37:41>, 1, "will", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:25>, 1, "das", 0, "null") (6, 5, 6, <26:30>, 1, "Buch", 0, "null") (7, 6, 7, <31:36>, 1, "lesen", 0, "null") (8, 7, 8, <37:41>, 1, "will", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@86@32@-1@-1@-1@-1@-1@-1@-1@646@126@-1@-1@1684944@-1@-1@-1@@@ +2@0@2@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:25>, 1, "das", 0, "null") (6, 5, 6, <26:30>, 1, "Buch", 0, "null") (7, 6, 7, <31:36>, 1, "liest", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:25>, 1, "das", 0, "null") (6, 5, 6, <26:30>, 1, "Buch", 0, "null") (7, 6, 7, <31:36>, 1, "liest", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@50@18@-1@-1@-1@-1@-1@-1@-1@1006@210@-1@-1@992520@-1@-1@-1@@@ +3@0@3@4@(1, 0, 1, <0:5>, 1, "Klaus", 0, "null") (2, 1, 2, <6:11>, 1, "liest", 0, "null") (3, 2, 3, <12:15>, 1, "das", 0, "null") (4, 3, 4, <16:20>, 1, "Buch", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Klaus", 0, "null") (2, 1, 2, <6:11>, 1, "liest", 0, "null") (3, 2, 3, <12:15>, 1, "das", 0, "null") (4, 3, 4, <16:20>, 1, "Buch", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@29@10@-1@-1@-1@-1@-1@-1@-1@1282@261@-1@-1@542640@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:3>, 1, "das", 0, "null") (2, 1, 2, <4:8>, 1, "Buch", 0, "null") (3, 2, 3, <9:14>, 1, "liest", 0, "null") (4, 3, 4, <15:20>, 1, "Klaus", 0, "null")@4@(1, 0, 1, <0:3>, 1, "das", 0, "null") (2, 1, 2, <4:8>, 1, "Buch", 0, "null") (3, 2, 3, <9:14>, 1, "liest", 0, "null") (4, 3, 4, <15:20>, 1, "Klaus", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@27@10@-1@-1@-1@-1@-1@-1@-1@1448@306@-1@-1@530240@-1@-1@-1@@@ +5@0@5@8@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:26>, 1, "will", 0, "null") (6, 5, 6, <27:30>, 1, "das", 0, "null") (7, 6, 7, <31:35>, 1, "Buch", 0, "null") (8, 7, 8, <36:41>, 1, "lesen", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:26>, 1, "will", 0, "null") (6, 5, 6, <27:30>, 1, "das", 0, "null") (7, 6, 7, <31:35>, 1, "Buch", 0, "null") (8, 7, 8, <36:41>, 1, "lesen", 0, "null")@0@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@124@55@-1@-1@-1@-1@-1@-1@-1@1930@497@-1@-1@2132184@-1@-1@-1@@@ +6@0@6@8@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:25>, 1, "das", 0, "null") (6, 5, 6, <26:30>, 1, "Buch", 0, "null") (7, 6, 7, <31:35>, 1, "will", 0, "null") (8, 7, 8, <36:41>, 1, "lesen", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:25>, 1, "das", 0, "null") (6, 5, 6, <26:30>, 1, "Buch", 0, "null") (7, 6, 7, <31:35>, 1, "will", 0, "null") (8, 7, 8, <36:41>, 1, "lesen", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@67@23@-1@-1@-1@-1@-1@-1@-1@2116@595@-1@-1@1098600@-1@-1@-1@@@ +7@0@7@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:27>, 1, "liest", 0, "null") (6, 5, 6, <28:31>, 1, "das", 0, "null") (7, 6, 7, <32:36>, 1, "Buch", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:21>, 1, "Klaus", 0, "null") (5, 4, 5, <22:27>, 1, "liest", 0, "null") (6, 5, 6, <28:31>, 1, "das", 0, "null") (7, 6, 7, <32:36>, 1, "Buch", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@58@16@-1@-1@-1@-1@-1@-1@-1@2252@676@-1@-1@932928@-1@-1@-1@@@ +8@0@8@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:19>, 1, "das", 0, "null") (5, 4, 5, <20:24>, 1, "Buch", 0, "null") (6, 5, 6, <25:30>, 1, "liest", 0, "null") (7, 6, 7, <31:36>, 1, "Klaus", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:19>, 1, "das", 0, "null") (5, 4, 5, <20:24>, 1, "Buch", 0, "null") (6, 5, 6, <25:30>, 1, "liest", 0, "null") (7, 6, 7, <31:36>, 1, "Klaus", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@56@16@-1@-1@-1@-1@-1@-1@-1@2388@755@-1@-1@920800@-1@-1@-1@@@ +9@0@9@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:19>, 1, "das", 0, "null") (5, 4, 5, <20:24>, 1, "Buch", 0, "null") (6, 5, 6, <25:30>, 1, "Klaus", 0, "null") (7, 6, 7, <32:37>, 1, "liest", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Ich", 0, "null") (2, 1, 2, <4:10>, 1, "glaube", 0, "null") (3, 2, 3, <11:15>, 1, "dass", 0, "null") (4, 3, 4, <16:19>, 1, "das", 0, "null") (5, 4, 5, <20:24>, 1, "Buch", 0, "null") (6, 5, 6, <25:30>, 1, "Klaus", 0, "null") (7, 6, 7, <32:37>, 1, "liest", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@50@18@-1@-1@-1@-1@-1@-1@-1@2515@830@-1@-1@993600@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-illustr3-deu/result b/tests/regression/home/gold/ccomp-illustr3-deu/result index e2189f0a1..460fd2ff8 100644 --- a/tests/regression/home/gold/ccomp-illustr3-deu/result +++ b/tests/regression/home/gold/ccomp-illustr3-deu/result @@ -1,5 +1,5 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(231 subj-head 0.000000 0 8 (223 bare-np 0.000000 0 1 (9 Ich 0.000000 0 1 ("Ich"))) (230 head-comp 0.000000 1 8 (10 glaube 0.000000 1 2 ("glaube")) (229 head-comp 0.000000 2 8 (11 comps1_complementizer1 0.000000 2 3 ("dass")) (228 subord-subj-head 0.000000 3 8 (224 bare-np 0.000000 3 4 (12 Klaus 0.000000 3 4 ("Klaus"))) (227 subord-comp-head 0.000000 4 8 (225 head-spec 0.000000 4 6 (13 das 0.000000 4 5 ("das")) (14 Buch 0.000000 5 6 ("Buch"))) (226 vc-comp-head 0.000000 6 8 (15 lesen 0.000000 6 7 ("lesen")) (16 will 0.000000 7 8 ("will"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_glaube_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_Klaus_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_the_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] [ "_want_v_rel"<-1:-1> LBL: h21 ARG0: e22 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h21 h12 qeq h9 h16 qeq h18 h23 qeq h19 > ICONS: < e2 info-str e22 > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(161 subj-head 0.000000 0 7 (154 bare-np 0.000000 0 1 (8 Ich 0.000000 0 1 ("Ich"))) (160 head-comp 0.000000 1 7 (9 glaube 0.000000 1 2 ("glaube")) (159 head-comp 0.000000 2 7 (10 comps1_complementizer1 0.000000 2 3 ("dass")) (158 subord-subj-head 0.000000 3 7 (155 bare-np 0.000000 3 4 (11 Klaus 0.000000 3 4 ("Klaus"))) (157 subord-comp-head 0.000000 4 7 (156 head-spec 0.000000 4 6 (12 das 0.000000 4 5 ("das")) (13 Buch 0.000000 5 6 ("Buch"))) (14 liest 0.000000 6 7 ("liest")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_glaube_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_Klaus_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_the_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < e2 info-str e20 > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(88 subj-head 0.000000 0 4 (85 bare-np 0.000000 0 1 (5 Klaus 0.000000 0 1 ("Klaus"))) (87 head-comp 0.000000 1 4 (6 liest 0.000000 1 2 ("liest")) (86 head-spec 0.000000 2 4 (7 das 0.000000 2 3 ("das")) (8 Buch 0.000000 3 4 ("Buch")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_Klaus_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(86 comp-head 0.000000 0 4 (83 head-spec 0.000000 0 2 (5 das 0.000000 0 1 ("das")) (6 Buch 0.000000 1 2 ("Buch"))) (85 head-subj 0.000000 2 4 (7 liest 0.000000 2 3 ("liest")) (84 bare-np 0.000000 3 4 (8 Klaus 0.000000 3 4 ("Klaus")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ARG2: x5 ] [ "_Klaus_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h9 > ICONS: < > ] @ -9@0@-1@-1@-1@-1@-1@-1@-1@-1@(161 subj-head 0.000000 0 7 (154 bare-np 0.000000 0 1 (8 Ich 0.000000 0 1 ("Ich"))) (160 head-comp 0.000000 1 7 (9 glaube 0.000000 1 2 ("glaube")) (159 head-comp 0.000000 2 7 (10 comps1_complementizer1 0.000000 2 3 ("dass")) (158 subord-comp-head 0.000000 3 7 (155 head-spec 0.000000 3 5 (11 das 0.000000 3 4 ("das")) (12 Buch 0.000000 4 5 ("Buch"))) (157 subord-subj-head 0.000000 5 7 (156 bare-np 0.000000 5 6 (13 Klaus 0.000000 5 6 ("Klaus"))) (14 liest 0.000000 6 7 ("liest")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_glaube_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_Klaus_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h13 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(221 subj-head 0.000000 0 8 (213 bare-np 0.000000 0 1 (9 Ich 0.000000 0 1 ("Ich"))) (220 head-comp 0.000000 1 8 (10 glaube 0.000000 1 2 ("glaube")) (219 head-comp 0.000000 2 8 (11 dass 0.000000 2 3 ("dass")) (218 subord-subj-head 0.000000 3 8 (214 bare-np 0.000000 3 4 (12 Klaus 0.000000 3 4 ("Klaus"))) (217 subord-comp-head 0.000000 4 8 (215 head-spec 0.000000 4 6 (13 das 0.000000 4 5 ("das")) (14 Buch 0.000000 5 6 ("Buch"))) (216 vc-comp-head 0.000000 6 8 (15 lesen 0.000000 6 7 ("lesen")) (16 will 0.000000 7 8 ("will"))))))))@@("S" ("NP" ("N" ("Ich"))) ("VP" ("V" ("glaube")) ("CP" ("C" ("dass")) ("S" ("NP" ("N" ("Klaus"))) ("VP" ("NP" ("D" ("das")) ("N" ("Buch"))) ("V" ("V" ("lesen")) ("V" ("will"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_glaube_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h11 BODY: h12 ] [ "_Klaus_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_the_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] [ "_want_v_rel"<-1:-1> LBL: h21 ARG0: e22 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h23 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h21 h11 qeq h13 h16 qeq h18 h23 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(157 subj-head 0.000000 0 7 (150 bare-np 0.000000 0 1 (8 Ich 0.000000 0 1 ("Ich"))) (156 head-comp 0.000000 1 7 (9 glaube 0.000000 1 2 ("glaube")) (155 head-comp 0.000000 2 7 (10 dass 0.000000 2 3 ("dass")) (154 subord-subj-head 0.000000 3 7 (151 bare-np 0.000000 3 4 (11 Klaus 0.000000 3 4 ("Klaus"))) (153 subord-comp-head 0.000000 4 7 (152 head-spec 0.000000 4 6 (12 das 0.000000 4 5 ("das")) (13 Buch 0.000000 5 6 ("Buch"))) (14 liest 0.000000 6 7 ("liest")))))))@@("S" ("NP" ("N" ("Ich"))) ("VP" ("V" ("glaube")) ("CP" ("C" ("dass")) ("S" ("NP" ("N" ("Klaus"))) ("VP" ("NP" ("D" ("das")) ("N" ("Buch"))) ("V" ("liest")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_glaube_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h11 BODY: h12 ] [ "_Klaus_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_the_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(85 subj-head 0.000000 0 4 (82 bare-np 0.000000 0 1 (5 Klaus 0.000000 0 1 ("Klaus"))) (84 head-comp 0.000000 1 4 (6 liest 0.000000 1 2 ("liest")) (83 head-spec 0.000000 2 4 (7 das 0.000000 2 3 ("das")) (8 Buch 0.000000 3 4 ("Buch")))))@@("S" ("NP" ("N" ("Klaus"))) ("VP" ("V" ("liest")) ("NP" ("D" ("das")) ("N" ("Buch")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_Klaus_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(83 comp-head 0.000000 0 4 (80 head-spec 0.000000 0 2 (5 das 0.000000 0 1 ("das")) (6 Buch 0.000000 1 2 ("Buch"))) (82 head-subj 0.000000 2 4 (7 liest 0.000000 2 3 ("liest")) (81 bare-np 0.000000 3 4 (8 Klaus 0.000000 3 4 ("Klaus")))))@@("S" ("NP" ("D" ("das")) ("N" ("Buch"))) ("V" ("V" ("liest")) ("NP" ("N" ("Klaus")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Klaus_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(157 subj-head 0.000000 0 7 (150 bare-np 0.000000 0 1 (8 Ich 0.000000 0 1 ("Ich"))) (156 head-comp 0.000000 1 7 (9 glaube 0.000000 1 2 ("glaube")) (155 head-comp 0.000000 2 7 (10 dass 0.000000 2 3 ("dass")) (154 subord-comp-head 0.000000 3 7 (151 head-spec 0.000000 3 5 (11 das 0.000000 3 4 ("das")) (12 Buch 0.000000 4 5 ("Buch"))) (153 subord-subj-head 0.000000 5 7 (152 bare-np 0.000000 5 6 (13 Klaus 0.000000 5 6 ("Klaus"))) (14 liest 0.000000 6 7 ("liest")))))))@@("S" ("NP" ("N" ("Ich"))) ("VP" ("V" ("glaube")) ("CP" ("C" ("dass")) ("S" ("NP" ("D" ("das")) ("N" ("Buch"))) ("V" ("NP" ("N" ("Klaus"))) ("V" ("liest")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_glaube_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h16 BODY: h17 ] [ "_Klaus_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-illustr3-deu/run b/tests/regression/home/gold/ccomp-illustr3-deu/run index 594a6b16e..7174b3e71 100644 --- a/tests/regression/home/gold/ccomp-illustr3-deu/run +++ b/tests/regression/home/gold/ccomp-illustr3-deu/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1454@-1@-1@9@1@11@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@9@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1532@-1@-1@9@0@11@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 10:09:27@26-aug-2020 10:09:27@-1@ diff --git a/tests/regression/home/gold/ccomp-illustr4-laj/parse b/tests/regression/home/gold/ccomp-illustr4-laj/parse index a46fe51cf..93d50b82e 100644 --- a/tests/regression/home/gold/ccomp-illustr4-laj/parse +++ b/tests/regression/home/gold/ccomp-illustr4-laj/parse @@ -1,7 +1,7 @@ -1@0@1@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:7>, 1, "ni", 0, "null") (3, 2, 3, <8:12>, 1, "loc^", 0, "null") (4, 3, 4, <13:17>, 1, "dago", 0, "null") (5, 4, 5, <18:21>, 1, "tic", 0, "null")@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:7>, 1, "ni", 0, "null") (3, 2, 3, <8:12>, 1, "loc^", 0, "null") (4, 3, 4, <13:17>, 1, "dago", 0, "null") (5, 4, 5, <18:21>, 1, "tic", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@182@24@-1@-1@313768@-1@-1@-1@@@ -2@0@2@4@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null")@4@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@373@46@-1@-1@138980@-1@-1@-1@@@ -3@0@3@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null") (5, 4, 5, <19:21>, 1, "ni", 0, "null")@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null") (5, 4, 5, <19:21>, 1, "ni", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@396@68@-1@-1@212248@-1@-1@-1@@@ -4@0@4@5@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:13>, 1, "ni", 0, "null") (4, 3, 4, <14:18>, 1, "aceg", 0, "null") (5, 4, 5, <19:26>, 1, "doggola", 0, "null")@5@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:13>, 1, "ni", 0, "null") (4, 3, 4, <14:18>, 1, "aceg", 0, "null") (5, 4, 5, <19:26>, 1, "doggola", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@424@92@-1@-1@304200@-1@-1@-1@@@ -5@0@5@4@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:15>, 1, "aceg", 0, "null") (4, 3, 4, <16:23>, 1, "doggola", 0, "null")@4@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:15>, 1, "aceg", 0, "null") (4, 3, 4, <16:23>, 1, "doggola", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@612@113@-1@-1@132720@-1@-1@-1@@@ -6@0@6@2@(1, 0, 1, <0:5>, 1, "ocego", 0, "null") (2, 1, 2, <6:13>, 1, "doggola", 0, "null")@2@(1, 0, 1, <0:5>, 1, "ocego", 0, "null") (2, 1, 2, <6:13>, 1, "doggola", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@619@120@-1@-1@93368@-1@-1@-1@@@ -7@0@7@2@(1, 0, 1, <0:4>, 1, "aceg", 0, "null") (2, 1, 2, <5:12>, 1, "doggola", 0, "null")@2@(1, 0, 1, <0:4>, 1, "aceg", 0, "null") (2, 1, 2, <5:12>, 1, "doggola", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@692@130@-1@-1@61368@-1@-1@-1@@@ +1@0@1@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:7>, 1, "ni", 0, "null") (3, 2, 3, <8:12>, 1, "loc^", 0, "null") (4, 3, 4, <13:17>, 1, "dago", 0, "null") (5, 4, 5, <18:21>, 1, "tic", 0, "null")@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:7>, 1, "ni", 0, "null") (3, 2, 3, <8:12>, 1, "loc^", 0, "null") (4, 3, 4, <13:17>, 1, "dago", 0, "null") (5, 4, 5, <18:21>, 1, "tic", 0, "null")@1@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@182@24@-1@-1@371480@-1@-1@-1@@@ +2@0@2@4@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null")@4@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@373@46@-1@-1@161116@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null") (5, 4, 5, <19:21>, 1, "ni", 0, "null")@5@(1, 0, 1, <0:4>, 1, "aneo", 0, "null") (2, 1, 2, <5:9>, 1, "loc^", 0, "null") (3, 2, 3, <10:14>, 1, "dago", 0, "null") (4, 3, 4, <15:18>, 1, "tic", 0, "null") (5, 4, 5, <19:21>, 1, "ni", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@396@68@-1@-1@249384@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:13>, 1, "ni", 0, "null") (4, 3, 4, <14:18>, 1, "aceg", 0, "null") (5, 4, 5, <19:26>, 1, "doggola", 0, "null")@5@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:13>, 1, "ni", 0, "null") (4, 3, 4, <14:18>, 1, "aceg", 0, "null") (5, 4, 5, <19:26>, 1, "doggola", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@424@92@-1@-1@359296@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:15>, 1, "aceg", 0, "null") (4, 3, 4, <16:23>, 1, "doggola", 0, "null")@4@(1, 0, 1, <0:4>, 1, "atin", 0, "null") (2, 1, 2, <5:10>, 1, "omito", 0, "null") (3, 2, 3, <11:15>, 1, "aceg", 0, "null") (4, 3, 4, <16:23>, 1, "doggola", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@612@113@-1@-1@153416@-1@-1@-1@@@ +6@0@6@2@(1, 0, 1, <0:5>, 1, "ocego", 0, "null") (2, 1, 2, <6:13>, 1, "doggola", 0, "null")@2@(1, 0, 1, <0:5>, 1, "ocego", 0, "null") (2, 1, 2, <6:13>, 1, "doggola", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@619@120@-1@-1@105344@-1@-1@-1@@@ +7@0@7@2@(1, 0, 1, <0:4>, 1, "aceg", 0, "null") (2, 1, 2, <5:12>, 1, "doggola", 0, "null")@2@(1, 0, 1, <0:4>, 1, "aceg", 0, "null") (2, 1, 2, <5:12>, 1, "doggola", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@692@130@-1@-1@70704@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-illustr4-laj/result b/tests/regression/home/gold/ccomp-illustr4-laj/result index 89eb235c3..48c394e77 100644 --- a/tests/regression/home/gold/ccomp-illustr4-laj/result +++ b/tests/regression/home/gold/ccomp-illustr4-laj/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 decl-head-opt-subj 0.000000 0 5 (53 head-comp 0.000000 0 5 (6 aneo 0.000000 0 1 ("aneo")) (52 head-comp 0.000000 1 5 (8 ni_1 0.000000 1 2 ("ni")) (51 subj-head 0.000000 2 5 (48 bare-np 0.000000 2 3 (9 loc%5E 0.000000 2 3 ("loc^"))) (50 head-comp 0.000000 3 5 (10 dago 0.000000 3 4 ("dago")) (49 bare-np 0.000000 4 5 (11 tic 0.000000 4 5 ("tic"))))))))@@("S" ("VP" ("V" ("aneo")) ("CP" ("C" ("ni")) ("S" ("NP" ("N" ("loc^"))) ("VP" ("V" ("dago")) ("NP" ("N" ("tic"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: habitual E.MOOD: indicative ] RELS: < [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h7 BODY: h8 ] [ "_man_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "_hate_v_rel"<-1:-1> LBL: h10 ARG0: e11 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: habitual E.MOOD: indicative ] ARG1: x6 ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_work_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h10 h7 qeq h9 h14 qeq h16 > ICONS: < e2 non-focus x3 e2 info-str e11 > ]@((:ascore . 0.0) (:probability . 1.0)) -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 subj-head 0.000000 0 5 (48 bare-np 0.000000 0 1 (6 atin 0.000000 0 1 ("atin"))) (53 head-comp 0.000000 1 5 (7 omito 0.000000 1 2 ("omito")) (52 head-comp 0.000000 2 5 (8 ni_2 0.000000 2 3 ("ni")) (51 decl-head-opt-subj 0.000000 3 5 (50 head-comp 0.000000 3 5 (10 aceg 0.000000 3 4 ("aceg")) (49 bare-np 0.000000 4 5 (11 doggola 0.000000 4 5 ("doggola"))))))))@@("S" ("NP" ("N" ("atin"))) ("VP" ("V" ("omito")) ("CP" ("C" ("ni")) ("S" ("VP" ("V" ("aceg")) ("NP" ("N" ("doggola"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: perfective E.MOOD: indicative ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_child_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_want_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_close_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: subjunctive ] ARG1: x11 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_door_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h14 qeq h16 > ICONS: < e2 info-str e10 > ]@((:ascore . 0.0) (:probability . 1.0)) +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 decl-head-opt-subj 0.000000 0 5 (53 head-comp 0.000000 0 5 (6 aneo 0.000000 0 1 ("aneo")) (52 head-comp 0.000000 1 5 (8 ni_1 0.000000 1 2 ("ni")) (51 subj-head 0.000000 2 5 (48 bare-np 0.000000 2 3 (9 loc%5E 0.000000 2 3 ("loc^"))) (50 head-comp 0.000000 3 5 (10 dago 0.000000 3 4 ("dago")) (49 bare-np 0.000000 4 5 (11 tic 0.000000 4 5 ("tic"))))))))@@("S" ("VP" ("V" ("aneo")) ("CP" ("C" ("ni")) ("S" ("NP" ("N" ("loc^"))) ("VP" ("V" ("dago")) ("NP" ("N" ("tic"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: habitual E.MOOD: indicative ] RELS: < [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h7 BODY: h8 ] [ "_man_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "_hate_v_rel"<-1:-1> LBL: h10 ARG0: e11 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: habitual E.MOOD: indicative ] ARG1: x6 ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_work_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h10 h7 qeq h9 h14 qeq h16 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 subj-head 0.000000 0 5 (48 bare-np 0.000000 0 1 (6 atin 0.000000 0 1 ("atin"))) (53 head-comp 0.000000 1 5 (7 omito 0.000000 1 2 ("omito")) (52 head-comp 0.000000 2 5 (8 ni_2 0.000000 2 3 ("ni")) (51 decl-head-opt-subj 0.000000 3 5 (50 head-comp 0.000000 3 5 (10 aceg 0.000000 3 4 ("aceg")) (49 bare-np 0.000000 4 5 (11 doggola 0.000000 4 5 ("doggola"))))))))@@("S" ("NP" ("N" ("atin"))) ("VP" ("V" ("omito")) ("CP" ("C" ("ni")) ("S" ("VP" ("V" ("aceg")) ("NP" ("N" ("doggola"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: perfective E.MOOD: indicative ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] RSTR: h5 BODY: h6 ] [ "_child_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_want_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_close_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: subjunctive ] ARG1: x11 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_door_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h14 qeq h16 > ICONS: < e10 non-focus x11 > ]@((:ascore . 0.0) (:probability . 1.0)) 6@0@-1@-1@-1@-1@-1@-1@-1@-1@(18 decl-head-opt-subj 0.000000 0 2 (17 head-comp 0.000000 0 2 (3 ocego 0.000000 0 1 ("ocego")) (16 bare-np 0.000000 1 2 (4 doggola 0.000000 1 2 ("doggola")))))@@("S" ("VP" ("V" ("ocego")) ("NP" ("N" ("doggola")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: perfective E.MOOD: indicative ] RELS: < [ "_close_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_door_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-illustr4-laj/run b/tests/regression/home/gold/ccomp-illustr4-laj/run index c3a98400d..b3e069285 100644 --- a/tests/regression/home/gold/ccomp-illustr4-laj/run +++ b/tests/regression/home/gold/ccomp-illustr4-laj/run @@ -1 +1 @@ -0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1440@-1@-1@14@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@24-jul-2020 17:24:51@24-jul-2020 17:24:51@-1@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1491@-1@-1@14@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 10:19:52@26-aug-2020 10:19:52@-1@ diff --git a/tests/regression/home/gold/ccomp-illustr5-tgl/item b/tests/regression/home/gold/ccomp-illustr5-tgl/item index 455848d6a..87c6ad80d 100644 --- a/tests/regression/home/gold/ccomp-illustr5-tgl/item +++ b/tests/regression/home/gold/ccomp-illustr5-tgl/item @@ -1,6 +1,6 @@ -1@unknown@formal@none@1@S@makita ang babae ng lalaki@@@@@@@olzama@2018-01-12 -2@unknown@formal@none@1@S@sinabi ko ng makita ang babae ng lalaki@@@@@@@olzama@2018-01-12 -3@unknown@formal@none@1@@sinabi ko makita ang babae ng lalaki@@@@@@@olzama@2018-01-12 -4@unknown@formal@none@1@@sinabi ko makita ang babae ng lalaki ng@@@@@@@olzama@2018-01-12 -5@unknown@formal@none@1@@sinabi ko ng ng makita ang babae ng lalaki@@@@@@@olzama@2018-01-12 -6@unknown@formal@none@1@@sinabi ko ng makita ang babae ng lalaki ng@@@@@@@olzama@2018-01-12 +1@unknown@formal@none@1@S@makita ang babae ng lalaki@@@@1@-1@@olzama@12-jan-2018 +2@unknown@formal@none@1@S@sinabi ko ng makita ang babae ng lalaki@@@@1@-1@@olzama@12-jan-2018 +3@unknown@formal@none@1@@sinabi ko makita ang babae ng lalaki@@@@1@-1@@olzama@12-jan-2018 +4@unknown@formal@none@1@@sinabi ko makita ang babae ng lalaki ng@@@@1@-1@@olzama@12-jan-2018 +5@unknown@formal@none@1@@sinabi ko ng ng makita ang babae ng lalaki@@@@1@-1@@olzama@12-jan-2018 +6@unknown@formal@none@1@@sinabi ko ng makita ang babae ng lalaki ng@@@@1@-1@@olzama@12-jan-2018 diff --git a/tests/regression/home/gold/ccomp-illustr5-tgl/parse b/tests/regression/home/gold/ccomp-illustr5-tgl/parse index 10a7bd9b9..be3b19c27 100644 --- a/tests/regression/home/gold/ccomp-illustr5-tgl/parse +++ b/tests/regression/home/gold/ccomp-illustr5-tgl/parse @@ -1,6 +1,6 @@ -1@1@1@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@142292@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@235796@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@158712@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@178352@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@214820@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@208080@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@5@(1, 0, 1, <0:6>, 1, "makita", 0, "null") (2, 1, 2, <7:10>, 1, "ang", 0, "null") (3, 2, 3, <11:16>, 1, "babae", 0, "null") (4, 3, 4, <17:19>, 1, "ng", 0, "null") (5, 4, 5, <20:26>, 1, "lalaki", 0, "null")@5@(1, 0, 1, <0:6>, 1, "makita", 0, "null") (2, 1, 2, <7:10>, 1, "ang", 0, "null") (3, 2, 3, <11:16>, 1, "babae", 0, "null") (4, 3, 4, <17:19>, 1, "ng", 0, "null") (5, 4, 5, <20:26>, 1, "lalaki", 0, "null")@1@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@1@12@-1@-1@-1@-1@-1@-1@-1@256@21@-1@-1@254664@-1@-1@-1@@@ +2@0@2@8@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:12>, 1, "ng", 0, "null") (4, 3, 4, <13:19>, 1, "makita", 0, "null") (5, 4, 5, <20:23>, 1, "ang", 0, "null") (6, 5, 6, <24:29>, 1, "babae", 0, "null") (7, 6, 7, <30:32>, 1, "ng", 0, "null") (8, 7, 8, <33:39>, 1, "lalaki", 0, "null")@8@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:12>, 1, "ng", 0, "null") (4, 3, 4, <13:19>, 1, "makita", 0, "null") (5, 4, 5, <20:23>, 1, "ang", 0, "null") (6, 5, 6, <24:29>, 1, "babae", 0, "null") (7, 6, 7, <30:32>, 1, "ng", 0, "null") (8, 7, 8, <33:39>, 1, "lalaki", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@2@20@-1@-1@-1@-1@-1@-1@-1@466@63@-1@-1@468456@-1@-1@-1@@@ +3@0@3@7@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:16>, 1, "makita", 0, "null") (4, 3, 4, <17:20>, 1, "ang", 0, "null") (5, 4, 5, <21:26>, 1, "babae", 0, "null") (6, 5, 6, <27:29>, 1, "ng", 0, "null") (7, 6, 7, <30:36>, 1, "lalaki", 0, "null")@7@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:16>, 1, "makita", 0, "null") (4, 3, 4, <17:20>, 1, "ang", 0, "null") (5, 4, 5, <21:26>, 1, "babae", 0, "null") (6, 5, 6, <27:29>, 1, "ng", 0, "null") (7, 6, 7, <30:36>, 1, "lalaki", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@16@-1@-1@-1@-1@-1@-1@-1@774@102@-1@-1@233848@-1@-1@-1@@@ +4@0@4@8@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:16>, 1, "makita", 0, "null") (4, 3, 4, <17:20>, 1, "ang", 0, "null") (5, 4, 5, <21:26>, 1, "babae", 0, "null") (6, 5, 6, <27:29>, 1, "ng", 0, "null") (7, 6, 7, <30:36>, 1, "lalaki", 0, "null") (8, 7, 8, <37:39>, 1, "ng", 0, "null")@8@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:16>, 1, "makita", 0, "null") (4, 3, 4, <17:20>, 1, "ang", 0, "null") (5, 4, 5, <21:26>, 1, "babae", 0, "null") (6, 5, 6, <27:29>, 1, "ng", 0, "null") (7, 6, 7, <30:36>, 1, "lalaki", 0, "null") (8, 7, 8, <37:39>, 1, "ng", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@18@-1@-1@-1@-1@-1@-1@-1@806@133@-1@-1@256776@-1@-1@-1@@@ +5@0@5@9@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:12>, 1, "ng", 0, "null") (4, 3, 4, <13:15>, 1, "ng", 0, "null") (5, 4, 5, <16:22>, 1, "makita", 0, "null") (6, 5, 6, <23:26>, 1, "ang", 0, "null") (7, 6, 7, <27:32>, 1, "babae", 0, "null") (8, 7, 8, <33:35>, 1, "ng", 0, "null") (9, 8, 9, <36:42>, 1, "lalaki", 0, "null")@9@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:12>, 1, "ng", 0, "null") (4, 3, 4, <13:15>, 1, "ng", 0, "null") (5, 4, 5, <16:22>, 1, "makita", 0, "null") (6, 5, 6, <23:26>, 1, "ang", 0, "null") (7, 6, 7, <27:32>, 1, "babae", 0, "null") (8, 7, 8, <33:35>, 1, "ng", 0, "null") (9, 8, 9, <36:42>, 1, "lalaki", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@21@-1@-1@-1@-1@-1@-1@-1@846@172@-1@-1@315444@-1@-1@-1@@@ +6@0@6@9@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:12>, 1, "ng", 0, "null") (4, 3, 4, <13:19>, 1, "makita", 0, "null") (5, 4, 5, <20:23>, 1, "ang", 0, "null") (6, 5, 6, <24:29>, 1, "babae", 0, "null") (7, 6, 7, <30:32>, 1, "ng", 0, "null") (8, 7, 8, <33:39>, 1, "lalaki", 0, "null") (9, 8, 9, <40:42>, 1, "ng", 0, "null")@9@(1, 0, 1, <0:6>, 1, "sinabi", 0, "null") (2, 1, 2, <7:9>, 1, "ko", 0, "null") (3, 2, 3, <10:12>, 1, "ng", 0, "null") (4, 3, 4, <13:19>, 1, "makita", 0, "null") (5, 4, 5, <20:23>, 1, "ang", 0, "null") (6, 5, 6, <24:29>, 1, "babae", 0, "null") (7, 6, 7, <30:32>, 1, "ng", 0, "null") (8, 7, 8, <33:39>, 1, "lalaki", 0, "null") (9, 8, 9, <40:42>, 1, "ng", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@22@-1@-1@-1@-1@-1@-1@-1@885@210@-1@-1@314256@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-illustr5-tgl/result b/tests/regression/home/gold/ccomp-illustr5-tgl/result index fadbe7151..c30906ae7 100644 --- a/tests/regression/home/gold/ccomp-illustr5-tgl/result +++ b/tests/regression/home/gold/ccomp-illustr5-tgl/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(47 head-comp 0.000000 0 5 (44 head-subj 0.000000 0 3 (41 verb-pc2_lrt1-prefix 0.000000 0 1 (6 kita 0.000000 0 1 ("makita"))) (43 head-comp 0.000000 1 3 (7 focus-marker 0.000000 1 2 ("ang")) (42 bare-np 0.000000 2 3 (8 babae 0.000000 2 3 ("babae"))))) (46 head-comp 0.000000 3 5 (10 a_case%2C%20o_case-marker 0.000000 3 4 ("ng")) (45 bare-np 0.000000 4 5 (11 lalaki 0.000000 4 5 ("lalaki")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_woman_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "man_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 head-comp 0.000000 0 8 (67 head-subj 0.000000 0 2 (9 sinabi 0.000000 0 1 ("sinabi")) (66 bare-np 0.000000 1 2 (10 ko 0.000000 1 2 ("ko")))) (75 head-comp 0.000000 2 8 (11 comps1_complementizer1 0.000000 2 3 ("ng")) (74 head-comp 0.000000 3 8 (71 head-subj 0.000000 3 6 (68 verb-pc2_lrt1-prefix 0.000000 3 4 (13 kita 0.000000 3 4 ("makita"))) (70 head-comp 0.000000 4 6 (14 focus-marker 0.000000 4 5 ("ang")) (69 bare-np 0.000000 5 6 (15 babae 0.000000 5 6 ("babae"))))) (73 head-comp 0.000000 6 8 (17 a_case%2C%20o_case-marker 0.000000 6 7 ("ng")) (72 bare-np 0.000000 7 8 (18 lalaki 0.000000 7 8 ("lalaki")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_said_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_I_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_woman_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "man_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(47 head-comp 0.000000 0 5 (44 head-subj 0.000000 0 3 (41 verb-pc2_lrt1-prefix 0.000000 0 1 (6 kita 0.000000 0 1 ("makita"))) (43 head-comp 0.000000 1 3 (7 focus-marker 0.000000 1 2 ("ang")) (42 bare-np 0.000000 2 3 (8 babae 0.000000 2 3 ("babae"))))) (46 head-comp 0.000000 3 5 (10 a_case%2C%20o_case-marker 0.000000 3 4 ("ng")) (45 bare-np 0.000000 4 5 (11 lalaki 0.000000 4 5 ("lalaki")))))@@("S" ("V" ("V" ("V" ("makita"))) ("PP" ("P" ("ang")) ("NP" ("N" ("babae"))))) ("PP" ("P" ("ng")) ("NP" ("N" ("lalaki")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_woman_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "man_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 head-comp 0.000000 0 8 (67 head-subj 0.000000 0 2 (9 sinabi 0.000000 0 1 ("sinabi")) (66 bare-np 0.000000 1 2 (10 ko 0.000000 1 2 ("ko")))) (75 head-comp 0.000000 2 8 (11 ng 0.000000 2 3 ("ng")) (74 head-comp 0.000000 3 8 (71 head-subj 0.000000 3 6 (68 verb-pc2_lrt1-prefix 0.000000 3 4 (13 kita 0.000000 3 4 ("makita"))) (70 head-comp 0.000000 4 6 (14 focus-marker 0.000000 4 5 ("ang")) (69 bare-np 0.000000 5 6 (15 babae 0.000000 5 6 ("babae"))))) (73 head-comp 0.000000 6 8 (17 a_case%2C%20o_case-marker 0.000000 6 7 ("ng")) (72 bare-np 0.000000 7 8 (18 lalaki 0.000000 7 8 ("lalaki")))))))@@("S" ("V" ("V" ("sinabi")) ("NP" ("N" ("ko")))) ("CP" ("C" ("ng")) ("S" ("V" ("V" ("V" ("makita"))) ("PP" ("P" ("ang")) ("NP" ("N" ("babae"))))) ("PP" ("P" ("ng")) ("NP" ("N" ("lalaki")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_said_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_I_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_woman_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "man_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-illustr5-tgl/run b/tests/regression/home/gold/ccomp-illustr5-tgl/run index 2013a3415..33b6d04eb 100644 --- a/tests/regression/home/gold/ccomp-illustr5-tgl/run +++ b/tests/regression/home/gold/ccomp-illustr5-tgl/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1411@-1@-1@9@3@3@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@6@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1485@-1@-1@9@3@3@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:04:37@26-aug-2020 11:04:37@-1@ diff --git a/tests/regression/home/gold/ccomp-opt-svo/item b/tests/regression/home/gold/ccomp-opt-svo/item index 77c5665e5..1b641bfa6 100644 --- a/tests/regression/home/gold/ccomp-opt-svo/item +++ b/tests/regression/home/gold/ccomp-opt-svo/item @@ -1,7 +1,7 @@ -1@unknown@formal@none@1@S@noun1 cverb comp1 noun2 tverb noun3@@@@@@@olzama@2017-12-20 -2@unknown@formal@none@1@S@noun1 cverb noun2 tverb noun3@@@@@@@olzama@2017-12-20 -3@unknown@formal@none@1@@comp1 noun1 tverb noun2@@@@@@@olzama@2017-12-20 -4@unknown@formal@none@1@@noun1 cverb comp1 comp1 noun2 tverb noun3@@@@@@@olzama@2017-12-20 -5@unknown@formal@none@1@@noun1 cverb noun2 tverb noun3 comp1@@@@@@@olzama@2017-12-20 -6@unknown@formal@none@1@@noun1 cverb noun2 comp1 tverb noun3@@@@@@@olzama@2017-12-20 -7@unknown@formal@none@1@@noun1 cverb noun2 tverb comp1 noun3@@@@@@@olzama@2017-12-20 +1@unknown@formal@none@1@S@noun1 cverb comp1 noun2 tverb noun3@@@@1@-1@@olzama@20-dec-2017 +2@unknown@formal@none@1@S@noun1 cverb noun2 tverb noun3@@@@1@-1@@olzama@20-dec-2017 +3@unknown@formal@none@1@@comp1 noun1 tverb noun2@@@@1@-1@@olzama@20-dec-2017 +4@unknown@formal@none@1@@noun1 cverb comp1 comp1 noun2 tverb noun3@@@@1@-1@@olzama@20-dec-2017 +5@unknown@formal@none@1@@noun1 cverb noun2 tverb noun3 comp1@@@@1@-1@@olzama@20-dec-2017 +6@unknown@formal@none@1@@noun1 cverb noun2 comp1 tverb noun3@@@@1@-1@@olzama@20-dec-2017 +7@unknown@formal@none@1@@noun1 cverb noun2 tverb comp1 noun3@@@@1@-1@@olzama@20-dec-2017 diff --git a/tests/regression/home/gold/ccomp-opt-svo/parse b/tests/regression/home/gold/ccomp-opt-svo/parse index 28a375c07..8e546d607 100644 --- a/tests/regression/home/gold/ccomp-opt-svo/parse +++ b/tests/regression/home/gold/ccomp-opt-svo/parse @@ -1,7 +1,7 @@ -1@1@1@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@198936@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@173124@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@99380@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@182660@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@199704@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@158004@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@157064@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@143@24@-1@-1@385088@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@3@12@-1@-1@-1@-1@-1@-1@-1@350@52@-1@-1@325544@-1@-1@-1@@@ +3@0@3@4@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null")@4@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@502@74@-1@-1@145376@-1@-1@-1@@@ +4@0@4@7@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null") (7, 6, 7, <36:41>, 1, "noun3", 0, "null")@7@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null") (7, 6, 7, <36:41>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@13@-1@-1@-1@-1@-1@-1@-1@530@99@-1@-1@256584@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@13@-1@-1@-1@-1@-1@-1@-1@559@126@-1@-1@312020@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@10@-1@-1@-1@-1@-1@-1@-1@580@146@-1@-1@212520@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@9@-1@-1@-1@-1@-1@-1@-1@599@165@-1@-1@207980@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-opt-svo/result b/tests/regression/home/gold/ccomp-opt-svo/result index c61759878..8199694ac 100644 --- a/tests/regression/home/gold/ccomp-opt-svo/result +++ b/tests/regression/home/gold/ccomp-opt-svo/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 subj-head 0.000000 0 6 (48 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (54 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (53 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (52 subj-head 0.000000 3 6 (49 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (51 head-comp 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (50 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 subj-head 0.000000 0 5 (40 bare-np 0.000000 0 1 (6 noun1 0.000000 0 1 ("noun1"))) (45 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (44 subj-head 0.000000 2 5 (41 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (43 head-comp 0.000000 3 5 (9 tverb 0.000000 3 4 ("tverb")) (42 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 subj-head 0.000000 0 6 (47 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (53 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (52 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (51 subj-head 0.000000 3 6 (48 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (50 head-comp 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (49 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun3"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(45 subj-head 0.000000 0 5 (39 bare-np 0.000000 0 1 (6 noun1 0.000000 0 1 ("noun1"))) (44 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (43 subj-head 0.000000 2 5 (40 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (42 head-comp 0.000000 3 5 (9 tverb 0.000000 3 4 ("tverb")) (41 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("S" ("NP" ("N" ("noun2"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun3")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-opt-svo/run b/tests/regression/home/gold/ccomp-opt-svo/run index be83034b8..5c02dca08 100644 --- a/tests/regression/home/gold/ccomp-opt-svo/run +++ b/tests/regression/home/gold/ccomp-opt-svo/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1395@-1@-1@6@1@3@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@7@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@c@1471@-1@-1@6@0@3@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:05:42@26-aug-2020 11:05:42@-1@ diff --git a/tests/regression/home/gold/ccomp-pab/parse b/tests/regression/home/gold/ccomp-pab/parse index 6bf65ad31..b3b0ef29e 100644 --- a/tests/regression/home/gold/ccomp-pab/parse +++ b/tests/regression/home/gold/ccomp-pab/parse @@ -1,10 +1,10 @@ -1@0@1@3@(1, 0, 1, <0:11>, 1, "zoimahaliti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@3@(1, 0, 1, <0:11>, 1, "zoimahaliti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@652@19@-1@-1@227816@-1@-1@-1@@@ -2@0@2@3@(1, 0, 1, <0:11>, 1, "zoimahaloti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaliti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@3@(1, 0, 1, <0:11>, 1, "zoimahaloti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaliti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@780@44@-1@-1@227816@-1@-1@-1@@@ -3@0@3@3@(1, 0, 1, <0:5>, 1, "waiya", 0, "null") (2, 1, 2, <6:17>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <18:29>, 1, "zoimahaliti", 0, "null")@3@(1, 0, 1, <0:5>, 1, "waiya", 0, "null") (2, 1, 2, <6:17>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <18:29>, 1, "zoimahaliti", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@8@-1@-1@-1@-1@-1@-1@-1@904@64@-1@-1@132156@-1@-1@-1@@@ -4@0@4@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-ne=ite", 0, "null")@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-ne=ite", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@923@79@-1@-1@250968@-1@-1@-1@@@ -5@0@5@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-re=ite", 0, "null")@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-re=ite", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@1124@104@-1@-1@250968@-1@-1@-1@@@ -6@0@6@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-re", 0, "null")@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-re", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@6@13@-1@-1@-1@-1@-1@-1@-1@1343@139@-1@-1@380808@-1@-1@-1@@@ -7@0@7@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-ne", 0, "null")@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-ne", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1542@156@-1@-1@66316@-1@-1@-1@@post-reduction lexical gap@ -8@0@8@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:25>, 1, "aitse-ne", 0, "null")@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:25>, 1, "aitse-ne", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1547@161@-1@-1@66100@-1@-1@-1@@post-reduction lexical gap@ -9@0@9@3@(1, 0, 1, <0:5>, 1, "oliti", 0, "null") (2, 1, 2, <6:19>, 1, "aitse-hene-re", 0, "null") (3, 2, 3, <20:30>, 1, "wa=waiyore", 0, "null")@3@(1, 0, 1, <0:5>, 1, "oliti", 0, "null") (2, 1, 2, <6:19>, 1, "aitse-hene-re", 0, "null") (3, 2, 3, <20:30>, 1, "wa=waiyore", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@11@-1@-1@-1@-1@-1@-1@-1@1589@186@-1@-1@239524@-1@-1@-1@@@ -10@0@10@2@(1, 0, 1, <0:14>, 1, "e=kaoka-ne=ite", 0, "null") (2, 1, 2, <15:26>, 1, "n=aheko-ita", 0, "null")@2@(1, 0, 1, <0:14>, 1, "e=kaoka-ne=ite", 0, "null") (2, 1, 2, <15:26>, 1, "n=aheko-ita", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@1604@199@-1@-1@128236@-1@-1@-1@@@ +1@0@1@3@(1, 0, 1, <0:11>, 1, "zoimahaliti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@3@(1, 0, 1, <0:11>, 1, "zoimahaliti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@652@19@-1@-1@257968@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:11>, 1, "zoimahaloti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaliti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@3@(1, 0, 1, <0:11>, 1, "zoimahaloti", 0, "null") (2, 1, 2, <12:23>, 1, "zoimahaliti", 0, "null") (3, 2, 3, <24:29>, 1, "waiya", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@780@44@-1@-1@257968@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "waiya", 0, "null") (2, 1, 2, <6:17>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <18:29>, 1, "zoimahaliti", 0, "null")@3@(1, 0, 1, <0:5>, 1, "waiya", 0, "null") (2, 1, 2, <6:17>, 1, "zoimahaloti", 0, "null") (3, 2, 3, <18:29>, 1, "zoimahaliti", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@8@-1@-1@-1@-1@-1@-1@-1@904@64@-1@-1@150188@-1@-1@-1@@@ +4@0@4@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-ne=ite", 0, "null")@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-ne=ite", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@923@79@-1@-1@258416@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-re=ite", 0, "null")@2@(1, 0, 1, <0:11>, 1, "n=aheko-ita", 0, "null") (2, 1, 2, <12:26>, 1, "e=kaoka-re=ite", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@1124@104@-1@-1@258416@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-re", 0, "null")@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-re", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@6@13@-1@-1@-1@-1@-1@-1@-1@1343@139@-1@-1@404016@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-ne", 0, "null")@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:30>, 1, "aitse-hene-ne", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1542@156@-1@-1@69868@-1@-1@-1@@post-reduction lexical gap@ +8@0@8@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:25>, 1, "aitse-ne", 0, "null")@3@(1, 0, 1, <0:10>, 1, "wa=waiyore", 0, "null") (2, 1, 2, <11:16>, 1, "oliti", 0, "null") (3, 2, 3, <17:25>, 1, "aitse-ne", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1547@161@-1@-1@69652@-1@-1@-1@@post-reduction lexical gap@ +9@0@9@3@(1, 0, 1, <0:5>, 1, "oliti", 0, "null") (2, 1, 2, <6:19>, 1, "aitse-hene-re", 0, "null") (3, 2, 3, <20:30>, 1, "wa=waiyore", 0, "null")@3@(1, 0, 1, <0:5>, 1, "oliti", 0, "null") (2, 1, 2, <6:19>, 1, "aitse-hene-re", 0, "null") (3, 2, 3, <20:30>, 1, "wa=waiyore", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@11@-1@-1@-1@-1@-1@-1@-1@1589@186@-1@-1@265316@-1@-1@-1@@@ +10@0@10@2@(1, 0, 1, <0:14>, 1, "e=kaoka-ne=ite", 0, "null") (2, 1, 2, <15:26>, 1, "n=aheko-ita", 0, "null")@2@(1, 0, 1, <0:14>, 1, "e=kaoka-ne=ite", 0, "null") (2, 1, 2, <15:26>, 1, "n=aheko-ita", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@1604@199@-1@-1@136788@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pab/result b/tests/regression/home/gold/ccomp-pab/result index b6eabb1fe..fd709e7a0 100644 --- a/tests/regression/home/gold/ccomp-pab/result +++ b/tests/regression/home/gold/ccomp-pab/result @@ -1,5 +1,5 @@ 1@0@-1@-1@-1@-1@-1@-1@-1@-1@(53 subj-head 0.000000 0 3 (48 bare-np 0.000000 0 1 (4 zoimahaliti 0.000000 0 1 ("zoimahaliti"))) (52 comp-head 0.000000 1 3 (49 bare-np 0.000000 1 2 (5 zoimahaloti 0.000000 1 2 ("zoimahaloti"))) (51 nonfut-lex 0.000000 2 3 (50 3sg-lex 0.000000 2 3 (6 waiya 0.000000 2 3 ("waiya"))))))@@("S" ("NP" ("N" ("zoimahaliti"))) ("VP" ("NP" ("N" ("zoimahaloti"))) ("V" ("V" ("V" ("waiya"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_boy_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_girl_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) 2@0@-1@-1@-1@-1@-1@-1@-1@-1@(53 subj-head 0.000000 0 3 (48 bare-np 0.000000 0 1 (4 zoimahaloti 0.000000 0 1 ("zoimahaloti"))) (52 comp-head 0.000000 1 3 (49 bare-np 0.000000 1 2 (5 zoimahaliti 0.000000 1 2 ("zoimahaliti"))) (51 nonfut-lex 0.000000 2 3 (50 3sg-lex 0.000000 2 3 (6 waiya 0.000000 2 3 ("waiya"))))))@@("S" ("NP" ("N" ("zoimahaloti"))) ("VP" ("NP" ("N" ("zoimahaliti"))) ("V" ("V" ("V" ("waiya"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_girl_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_boy_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 decl-head-opt-subj 0.000000 0 2 (45 head-comp 0.000000 0 2 (39 nonfut-lex 0.000000 0 1 (38 ifv-suffix 0.000000 0 1 (37 1sg-prefix 0.000000 0 1 (3 aheko 0.000000 0 1 ("n=aheko-ita"))))) (44 high-no-rel-nominalized-clause 0.000000 1 2 (43 decl-head-opt-subj 0.000000 1 2 (42 fut-suffix 0.000000 1 2 (41 ne-suffix 0.000000 1 2 (40 3sg-a-prefix 0.000000 1 2 (4 kaoka 0.000000 1 2 ("e=kaoka-ne=ite")))))))))@@("S" ("VP" ("V" ("V" ("V" ("V" ("n=aheko-ita"))))) ("NP" ("S" ("VP" ("VP" ("VP" ("VP" ("e=kaoka-ne=ite")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: imperfective E.MOOD: mood ] RELS: < [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: sg ] ARG2: h4 ] [ "_arrive_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: future E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd PNG.NUM: sg ] ] > HCONS: < h0 qeq h1 h4 qeq h5 > ICONS: < e2 non-focus x3 e2 info-str i8 > ]@((:ascore . 0.0) (:probability . 1.0)) -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 decl-head-opt-subj 0.000000 0 2 (45 head-comp 0.000000 0 2 (39 nonfut-lex 0.000000 0 1 (38 ifv-suffix 0.000000 0 1 (37 1sg-prefix 0.000000 0 1 (3 aheko 0.000000 0 1 ("n=aheko-ita"))))) (44 high-no-rel-nominalized-clause 0.000000 1 2 (43 decl-head-opt-subj 0.000000 1 2 (42 fut-suffix 0.000000 1 2 (41 re-suffix 0.000000 1 2 (40 3sg-a-prefix 0.000000 1 2 (4 kaoka 0.000000 1 2 ("e=kaoka-re=ite")))))))))@@("S" ("VP" ("V" ("V" ("V" ("V" ("n=aheko-ita"))))) ("NP" ("S" ("VP" ("VP" ("VP" ("VP" ("e=kaoka-re=ite")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: imperfective E.MOOD: mood ] RELS: < [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: sg ] ARG2: h4 ] [ "_arrive_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: future E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd PNG.NUM: sg ] ] > HCONS: < h0 qeq h1 h4 qeq h5 > ICONS: < e2 non-focus x3 e2 info-str i8 > ]@((:ascore . 0.0) (:probability . 1.0)) -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(65 decl-head-opt-subj 0.000000 0 3 (64 head-comp 0.000000 0 3 (55 nonfut-lex 0.000000 0 1 (54 1pl-prefix 0.000000 0 1 (4 waiyore 0.000000 0 1 ("wa=waiyore")))) (63 high-no-rel-nominalized-clause 0.000000 1 3 (62 decl-head-opt-subj 0.000000 1 3 (61 comp-head 0.000000 1 3 (56 bare-np 0.000000 1 2 (5 oliti 0.000000 1 2 ("oliti"))) (60 nonfut-lex 0.000000 2 3 (59 re-suffix 0.000000 2 3 (58 trs-suffix 0.000000 2 3 (57 3sg-lex 0.000000 2 3 (6 aitse 0.000000 2 3 ("aitse-hene-re")))))))))))@@("S" ("VP" ("V" ("V" ("V" ("wa=waiyore")))) ("NP" ("S" ("VP" ("NP" ("N" ("oliti"))) ("V" ("V" ("V" ("V" ("V" ("aitse-hene-re")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: pl ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h7 BODY: h8 ] [ "_game_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "_kill_v_rel"<-1:-1> LBL: h10 ARG0: e11 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: transitional E.MOOD: mood ] ARG1: x12 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd PNG.NUM: sg ] ARG2: x6 ] > HCONS: < h0 qeq h1 h4 qeq h10 h7 qeq h9 > ICONS: < e2 non-focus x3 e2 info-str i13 > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 decl-head-opt-subj 0.000000 0 2 (45 head-comp 0.000000 0 2 (39 nonfut-lex 0.000000 0 1 (38 ifv-suffix 0.000000 0 1 (37 1sg-prefix 0.000000 0 1 (3 aheko 0.000000 0 1 ("n=aheko-ita"))))) (44 high-no-rel-nominalized-clause 0.000000 1 2 (43 decl-head-opt-subj 0.000000 1 2 (42 fut-suffix 0.000000 1 2 (41 ne-suffix 0.000000 1 2 (40 3sg-a-prefix 0.000000 1 2 (4 kaoka 0.000000 1 2 ("e=kaoka-ne=ite")))))))))@@("S" ("VP" ("V" ("V" ("V" ("V" ("n=aheko-ita"))))) ("NP" ("S" ("VP" ("VP" ("VP" ("VP" ("e=kaoka-ne=ite")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: imperfective E.MOOD: mood ] RELS: < [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: sg ] ARG2: h4 ] [ "_arrive_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: future E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd PNG.NUM: sg ] ] > HCONS: < h0 qeq h1 h4 qeq h5 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 decl-head-opt-subj 0.000000 0 2 (45 head-comp 0.000000 0 2 (39 nonfut-lex 0.000000 0 1 (38 ifv-suffix 0.000000 0 1 (37 1sg-prefix 0.000000 0 1 (3 aheko 0.000000 0 1 ("n=aheko-ita"))))) (44 high-no-rel-nominalized-clause 0.000000 1 2 (43 decl-head-opt-subj 0.000000 1 2 (42 fut-suffix 0.000000 1 2 (41 re-suffix 0.000000 1 2 (40 3sg-a-prefix 0.000000 1 2 (4 kaoka 0.000000 1 2 ("e=kaoka-re=ite")))))))))@@("S" ("VP" ("V" ("V" ("V" ("V" ("n=aheko-ita"))))) ("NP" ("S" ("VP" ("VP" ("VP" ("VP" ("e=kaoka-re=ite")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: imperfective E.MOOD: mood ] RELS: < [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: sg ] ARG2: h4 ] [ "_arrive_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: future E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd PNG.NUM: sg ] ] > HCONS: < h0 qeq h1 h4 qeq h5 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(65 decl-head-opt-subj 0.000000 0 3 (64 head-comp 0.000000 0 3 (55 nonfut-lex 0.000000 0 1 (54 1pl-prefix 0.000000 0 1 (4 waiyore 0.000000 0 1 ("wa=waiyore")))) (63 high-no-rel-nominalized-clause 0.000000 1 3 (62 decl-head-opt-subj 0.000000 1 3 (61 comp-head 0.000000 1 3 (56 bare-np 0.000000 1 2 (5 oliti 0.000000 1 2 ("oliti"))) (60 nonfut-lex 0.000000 2 3 (59 re-suffix 0.000000 2 3 (58 trs-suffix 0.000000 2 3 (57 3sg-lex 0.000000 2 3 (6 aitse 0.000000 2 3 ("aitse-hene-re")))))))))))@@("S" ("VP" ("V" ("V" ("V" ("wa=waiyore")))) ("NP" ("S" ("VP" ("NP" ("N" ("oliti"))) ("V" ("V" ("V" ("V" ("V" ("aitse-hene-re")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: pl ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h7 BODY: h8 ] [ "_game_n_rel"<-1:-1> LBL: h9 ARG0: x6 ] [ "_kill_v_rel"<-1:-1> LBL: h10 ARG0: e11 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: transitional E.MOOD: mood ] ARG1: x12 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd PNG.NUM: sg ] ARG2: x6 ] > HCONS: < h0 qeq h1 h4 qeq h10 h7 qeq h9 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pab/run b/tests/regression/home/gold/ccomp-pab/run index d9f8b1fe4..a5f383d7c 100644 --- a/tests/regression/home/gold/ccomp-pab/run +++ b/tests/regression/home/gold/ccomp-pab/run @@ -1 +1 @@ -0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@ccomp@1476@-1@-1@8@10@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@24-jul-2020 17:24:53@24-jul-2020 17:24:53@-1@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@ccomp@1527@-1@-1@8@10@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:13:25@26-aug-2020 11:13:25@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/item b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/item index c6085ce59..6f505c271 100644 --- a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/item +++ b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/item @@ -1,10 +1,10 @@ -1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@@@@olzama@2017-12-20 -2@unknown@formal@none@1@@noun1 tverb-FIN noun2@@@@@@@olzama@2017-12-20 -3@unknown@formal@none@1@@noun1 noun2 tverb-FIN@@@@@@@olzama@2017-12-20 -4@unknown@formal@none@1@S@cverb-FIN tverb-FIN noun1 noun2 comp1 noun3@@@@@@@olzama@2017-12-20 -5@unknown@formal@none@1@@cverb-FIN noun3 tverb-FIN noun1 noun2 comp1@@@@@@@olzama@2017-12-20 -6@unknown@formal@none@1@@cverb-FIN comp1 tverb-FIN noun1 noun2 noun3@@@@@@@olzama@2017-12-20 -7@unknown@formal@none@1@@tverb-NFIN noun1 noun2@@@@@@@olzama@2017-12-20 -8@unknown@formal@none@1@@cverb-FIN tverb-NFIN noun1 noun2 comp1 noun3@@@@@@@olzama@2017-12-20 -9@unknown@formal@none@1@@cverb-NFIN tverb-FIN noun1 noun2 comp1 noun3@@@@@@@olzama@2017-12-20 -10@unknown@formal@none@1@@cverb-NFIN tverb-NFIN noun1 noun2 comp1 noun3@@@@@@@olzama@2017-12-20 +1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@1@-1@@olzama@20-dec-2017 +2@unknown@formal@none@1@@noun1 tverb-FIN noun2@@@@1@-1@@olzama@20-dec-2017 +3@unknown@formal@none@1@@noun1 noun2 tverb-FIN@@@@1@-1@@olzama@20-dec-2017 +4@unknown@formal@none@1@S@cverb-FIN tverb-FIN noun1 noun2 comp1 noun3@@@@1@-1@@olzama@20-dec-2017 +5@unknown@formal@none@1@@cverb-FIN noun3 tverb-FIN noun1 noun2 comp1@@@@1@-1@@olzama@20-dec-2017 +6@unknown@formal@none@1@@cverb-FIN comp1 tverb-FIN noun1 noun2 noun3@@@@1@-1@@olzama@20-dec-2017 +7@unknown@formal@none@1@@tverb-NFIN noun1 noun2@@@@1@-1@@olzama@20-dec-2017 +8@unknown@formal@none@1@@cverb-FIN tverb-NFIN noun1 noun2 comp1 noun3@@@@1@-1@@olzama@20-dec-2017 +9@unknown@formal@none@1@@cverb-NFIN tverb-FIN noun1 noun2 comp1 noun3@@@@1@-1@@olzama@20-dec-2017 +10@unknown@formal@none@1@@cverb-NFIN tverb-NFIN noun1 noun2 comp1 noun3@@@@1@-1@@olzama@20-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/parse b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/parse index b05e06b11..5bb155435 100644 --- a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/parse +++ b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/parse @@ -1,10 +1,10 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@113780@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@77228@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@78568@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@248376@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@188196@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@179888@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@90780@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@179928@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@203960@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@179928@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@4@7@-1@-1@-1@-1@-1@-1@-1@248@14@-1@-1@193872@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@6@-1@-1@-1@-1@-1@-1@-1@347@30@-1@-1@105288@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@5@-1@-1@-1@-1@-1@-1@-1@357@40@-1@-1@103116@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:19>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <20:25>, 1, "noun1", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "comp1", 0, "null") (6, 5, 6, <38:43>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:19>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <20:25>, 1, "noun1", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "comp1", 0, "null") (6, 5, 6, <38:43>, 1, "noun3", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@11@14@-1@-1@-1@-1@-1@-1@-1@391@71@-1@-1@491688@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun3", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun1", 0, "null") (5, 4, 5, <32:37>, 1, "noun2", 0, "null") (6, 5, 6, <38:43>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun3", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun1", 0, "null") (5, 4, 5, <32:37>, 1, "noun2", 0, "null") (6, 5, 6, <38:43>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@12@-1@-1@-1@-1@-1@-1@-1@629@108@-1@-1@274760@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "comp1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun1", 0, "null") (5, 4, 5, <32:37>, 1, "noun2", 0, "null") (6, 5, 6, <38:43>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "comp1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun1", 0, "null") (5, 4, 5, <32:37>, 1, "noun2", 0, "null") (6, 5, 6, <38:43>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@11@-1@-1@-1@-1@-1@-1@-1@656@133@-1@-1@258860@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:10>, 1, "tverb-NFIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:10>, 1, "tverb-NFIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@7@-1@-1@-1@-1@-1@-1@-1@668@145@-1@-1@111700@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun1", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "comp1", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun1", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "comp1", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@695@167@-1@-1@219484@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:20>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun1", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "comp1", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:20>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun1", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "comp1", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@14@-1@-1@-1@-1@-1@-1@-1@727@196@-1@-1@303668@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:21>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <22:27>, 1, "noun1", 0, "null") (4, 3, 4, <28:33>, 1, "noun2", 0, "null") (5, 4, 5, <34:39>, 1, "comp1", 0, "null") (6, 5, 6, <40:45>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:21>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <22:27>, 1, "noun1", 0, "null") (4, 3, 4, <28:33>, 1, "noun2", 0, "null") (5, 4, 5, <34:39>, 1, "comp1", 0, "null") (6, 5, 6, <40:45>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@11@-1@-1@-1@-1@-1@-1@-1@753@217@-1@-1@207732@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/result b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/result index 2962e017b..e00198fd2 100644 --- a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/result +++ b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 head-subj 0.000000 0 3 (31 head-comp 0.000000 0 2 (29 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (30 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (32 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 head-subj 0.000000 0 6 (68 head-comp 0.000000 0 5 (61 fin-suffix 0.000000 0 1 (7 cverb 0.000000 0 1 ("cverb-FIN"))) (67 comp-head 0.000000 1 5 (66 head-subj 0.000000 1 4 (64 head-comp 0.000000 1 3 (62 fin-suffix 0.000000 1 2 (8 tverb 0.000000 1 2 ("tverb-FIN"))) (63 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1")))) (65 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (11 comps1_complementizer1 0.000000 4 5 ("comp1")))) (69 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 head-subj 0.000000 0 3 (31 head-comp 0.000000 0 2 (29 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (30 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (32 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 head-subj 0.000000 0 6 (68 head-comp 0.000000 0 5 (61 fin-suffix 0.000000 0 1 (7 cverb 0.000000 0 1 ("cverb-FIN"))) (67 comp-head 0.000000 1 5 (66 head-subj 0.000000 1 4 (64 head-comp 0.000000 1 3 (62 fin-suffix 0.000000 1 2 (8 tverb 0.000000 1 2 ("tverb-FIN"))) (63 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1")))) (65 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (11 comp1 0.000000 4 5 ("comp1")))) (69 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))@@("S" ("VP" ("V" ("V" ("cverb-FIN"))) ("CP" ("S" ("VP" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2")))) ("C" ("comp1")))) ("NP" ("N" ("noun3"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/run b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/run index eb0bde6cd..717176bf5 100644 --- a/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/run +++ b/tests/regression/home/gold/ccomp-pseudo1-vos-noun-same-oblig-after-vf/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1405@-1@-1@6@2@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@10@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1481@-1@-1@6@2@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:15:37@26-aug-2020 11:15:37@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/item b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/item index 4fafa23d1..fcced2d7d 100644 --- a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/item +++ b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/item @@ -1,16 +1,16 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-21 -3@unknown@formal@none@1@@tverb noun1 noun2@@@@@@@olzama@2017-12-21 -4@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -5@unknown@formal@none@1@@noun3 comp1 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-21 -6@unknown@formal@none@1@@comp1 noun1 noun2 tverb noun3 cverb@@@@@@@olzama@2017-12-21 -7@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-21 -8@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -9@unknown@formal@none@1@@noun3 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-21 -10@unknown@formal@none@1@@noun3 noun1 noun2 tverb comp1 cverb@@@@@@@olzama@2017-12-21 -11@unknown@formal@none@1@@noun3 cverb noun1 tverb noun2@@@@@@@olzama@2017-12-21 -12@unknown@formal@none@1@@noun3 cverb comp1 noun1 tverb noun2@@@@@@@olzama@2017-12-21 -13@unknown@formal@none@1@@noun3 cverb noun1 tverb noun2 comp1@@@@@@@olzama@2017-12-21 -14@unknown@formal@none@1@@noun3 cverb tverb noun1 noun2@@@@@@@olzama@2017-12-21 -15@unknown@formal@none@1@@noun3 cverb comp1 tverb noun1 noun2@@@@@@@olzama@2017-12-21 -16@unknown@formal@none@1@@noun3 cverb tverb noun1 noun2 comp1@@@@@@@olzama@2017-12-21 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@21-dec-2017 +3@unknown@formal@none@1@@tverb noun1 noun2@@@@1@-1@@olzama@21-dec-2017 +4@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +5@unknown@formal@none@1@@noun3 comp1 noun1 noun2 tverb cverb@@@@1@-1@@olzama@21-dec-2017 +6@unknown@formal@none@1@@comp1 noun1 noun2 tverb noun3 cverb@@@@1@-1@@olzama@21-dec-2017 +7@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@1@-1@@olzama@21-dec-2017 +8@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +9@unknown@formal@none@1@@noun3 noun1 noun2 tverb cverb@@@@1@-1@@olzama@21-dec-2017 +10@unknown@formal@none@1@@noun3 noun1 noun2 tverb comp1 cverb@@@@1@-1@@olzama@21-dec-2017 +11@unknown@formal@none@1@@noun3 cverb noun1 tverb noun2@@@@1@-1@@olzama@21-dec-2017 +12@unknown@formal@none@1@@noun3 cverb comp1 noun1 tverb noun2@@@@1@-1@@olzama@21-dec-2017 +13@unknown@formal@none@1@@noun3 cverb noun1 tverb noun2 comp1@@@@1@-1@@olzama@21-dec-2017 +14@unknown@formal@none@1@@noun3 cverb tverb noun1 noun2@@@@1@-1@@olzama@21-dec-2017 +15@unknown@formal@none@1@@noun3 cverb comp1 tverb noun1 noun2@@@@1@-1@@olzama@21-dec-2017 +16@unknown@formal@none@1@@noun3 cverb tverb noun1 noun2 comp1@@@@1@-1@@olzama@21-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/parse b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/parse index 5d2efe31b..ca3981a19 100644 --- a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/parse +++ b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/parse @@ -1,16 +1,16 @@ -1@1@1@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@151756@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@129616@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@93656@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@317480@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@304504@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@306944@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@417480@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@281468@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@256616@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@305704@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@267216@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@263256@-1@-1@-1@23-6-2013 14:28:24@0@ -13@1@13@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@308256@-1@-1@-1@23-6-2013 14:28:24@0@ -14@1@14@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@196736@-1@-1@-1@23-6-2013 14:28:24@0@ -15@1@15@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@227336@-1@-1@-1@23-6-2013 14:28:24@0@ -16@1@16@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@237776@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@2@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@9@9@-1@-1@-1@-1@-1@-1@-1@224@21@-1@-1@311224@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@7@-1@-1@-1@-1@-1@-1@-1@399@51@-1@-1@249092@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@5@-1@-1@-1@-1@-1@-1@-1@413@65@-1@-1@158012@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@23@16@-1@-1@-1@-1@-1@-1@-1@476@111@-1@-1@714720@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@34@14@-1@-1@-1@-1@-1@-1@-1@913@180@-1@-1@631188@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@34@15@-1@-1@-1@-1@-1@-1@-1@995@236@-1@-1@637548@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@37@18@-1@-1@-1@-1@-1@-1@-1@1081@299@-1@-1@956240@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@20@14@-1@-1@-1@-1@-1@-1@-1@1487@353@-1@-1@617696@-1@-1@-1@@@ +9@0@9@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@28@12@-1@-1@-1@-1@-1@-1@-1@1811@410@-1@-1@521564@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@34@14@-1@-1@-1@-1@-1@-1@-1@1889@465@-1@-1@627188@-1@-1@-1@@@ +11@0@11@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@23@11@-1@-1@-1@-1@-1@-1@-1@1944@504@-1@-1@445404@-1@-1@-1@@@ +12@0@12@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@26@12@-1@-1@-1@-1@-1@-1@-1@2005@548@-1@-1@498540@-1@-1@-1@@@ +13@0@13@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@28@12@-1@-1@-1@-1@-1@-1@-1@2071@594@-1@-1@523940@-1@-1@-1@@@ +14@0@14@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@9@-1@-1@-1@-1@-1@-1@-1@2113@625@-1@-1@354324@-1@-1@-1@@@ +15@0@15@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@20@10@-1@-1@-1@-1@-1@-1@-1@2161@661@-1@-1@407460@-1@-1@-1@@@ +16@0@16@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@22@10@-1@-1@-1@-1@-1@-1@-1@2214@699@-1@-1@432860@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/result b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/result index c6ba05c34..c293878be 100644 --- a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/result +++ b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/result @@ -1,8 +1,8 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(36 comp-head 0.000000 0 3 (33 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (35 subj-head 0.000000 1 3 (34 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(40 subj-head 0.000000 0 3 (37 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (39 comp-head 0.000000 1 3 (38 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(85 subj-head 0.000000 0 6 (72 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (78 head-comp-verb 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (77 head-comp-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (76 subj-head 0.000000 3 6 (73 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (75 comp-head 0.000000 4 6 (74 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -4@1@-1@-1@-1@-1@-1@-1@-1@-1@(86 subj-head 0.000000 0 6 (72 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (84 head-comp-verb 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (83 head-comp-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (82 comp-head 0.000000 3 6 (79 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (81 subj-head 0.000000 4 6 (80 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(100 subj-head 0.000000 0 6 (87 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (93 head-comp-verb 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (92 comp-head 0.000000 2 6 (91 subj-head 0.000000 2 5 (88 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (90 comp-head 0.000000 3 5 (89 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -7@1@-1@-1@-1@-1@-1@-1@-1@-1@(101 subj-head 0.000000 0 6 (87 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (99 head-comp-verb 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (98 comp-head 0.000000 2 6 (97 comp-head 0.000000 2 5 (94 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (96 subj-head 0.000000 3 5 (95 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 subj-head 0.000000 0 5 (61 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (66 head-comp-verb 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (65 subj-head 0.000000 2 5 (62 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (64 comp-head 0.000000 3 5 (63 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -8@1@-1@-1@-1@-1@-1@-1@-1@-1@(73 subj-head 0.000000 0 5 (61 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (72 head-comp-verb 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (71 comp-head 0.000000 2 5 (68 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (70 subj-head 0.000000 3 5 (69 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(39 comp-head 0.000000 0 3 (36 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (38 subj-head 0.000000 1 3 (37 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(43 subj-head 0.000000 0 3 (40 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (42 comp-head 0.000000 1 3 (41 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(86 head-comp 0.000000 0 6 (80 subj-head 0.000000 0 2 (79 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (85 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (84 subj-head 0.000000 3 6 (81 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (83 comp-head 0.000000 4 6 (82 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb"))))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(92 head-comp 0.000000 0 6 (80 subj-head 0.000000 0 2 (79 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (91 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (90 comp-head 0.000000 3 6 (87 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (89 subj-head 0.000000 4 6 (88 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb"))))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(103 head-comp 0.000000 0 6 (97 subj-head 0.000000 0 2 (96 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (102 comp-head-compl 0.000000 2 6 (101 subj-head 0.000000 2 5 (98 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (100 comp-head 0.000000 3 5 (99 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(109 head-comp 0.000000 0 6 (97 subj-head 0.000000 0 2 (96 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (108 comp-head-compl 0.000000 2 6 (107 comp-head 0.000000 2 5 (104 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (106 subj-head 0.000000 3 5 (105 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 head-comp 0.000000 0 5 (68 subj-head 0.000000 0 2 (67 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (7 cverb 0.000000 1 2 ("cverb"))) (72 subj-head 0.000000 2 5 (69 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (71 comp-head 0.000000 3 5 (70 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb")))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(78 head-comp 0.000000 0 5 (68 subj-head 0.000000 0 2 (67 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (7 cverb 0.000000 1 2 ("cverb"))) (77 comp-head 0.000000 2 5 (74 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (76 subj-head 0.000000 3 5 (75 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb")))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/run b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/run index 10fec2de8..3daea19ff 100644 --- a/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/run +++ b/tests/regression/home/gold/ccomp-pseudo2-vfinal-extra-opt-bef-aft/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1399@-1@-1@6@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@16@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1475@-1@-1@6@0@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:16:47@26-aug-2020 11:16:47@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/item b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/item index a98694016..4d937a87b 100644 --- a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/item +++ b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/item @@ -1,7 +1,7 @@ -1@unknown@formal@none@1@S@noun1 tverb noun2@@@@@@@olzama@2017-12-22 -2@unknown@formal@none@1@@noun1 noun2 tverb@@@@@@@olzama@2017-12-22 -3@unknown@formal@none@1@S@noun1 cverb comp1 noun2 noun3 tverb@@@@@@@olzama@2017-12-22 -4@unknown@formal@none@1@S@comp1 noun2 noun3 tverb cverb noun1@@@@@@@olzama@2017-12-22 -5@unknown@formal@none@1@@noun1 cverb noun2 noun3 tverb@@@@@@@olzama@2017-12-22 -6@unknown@formal@none@1@@noun1 cverb comp1 noun2 tverb noun3@@@@@@@olzama@2017-12-22 -7@unknown@formal@none@1@@noun1 cverb noun2 tverb noun3 comp1@@@@@@@olzama@2017-12-22 +1@unknown@formal@none@1@S@noun1 tverb noun2@@@@1@-1@@olzama@22-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb@@@@1@-1@@olzama@22-dec-2017 +3@unknown@formal@none@1@S@noun1 cverb comp1 noun2 noun3 tverb@@@@1@-1@@olzama@22-dec-2017 +4@unknown@formal@none@1@S@comp1 noun2 noun3 tverb cverb noun1@@@@1@-1@@olzama@22-dec-2017 +5@unknown@formal@none@1@@noun1 cverb noun2 noun3 tverb@@@@1@-1@@olzama@22-dec-2017 +6@unknown@formal@none@1@@noun1 cverb comp1 noun2 tverb noun3@@@@1@-1@@olzama@22-dec-2017 +7@unknown@formal@none@1@@noun1 cverb noun2 tverb noun3 comp1@@@@1@-1@@olzama@22-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/parse b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/parse index 2fa0e4f20..e8567a658 100644 --- a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/parse +++ b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/parse @@ -1,7 +1,7 @@ -1@1@1@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@385356@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@208340@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@585440@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@829216@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@502456@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@651984@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@888696@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@34@13@-1@-1@-1@-1@-1@-1@-1@410@50@-1@-1@653912@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@9@-1@-1@-1@-1@-1@-1@-1@593@87@-1@-1@296776@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@47@20@-1@-1@-1@-1@-1@-1@-1@695@161@-1@-1@1060792@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@2@-1@5@5@-1@6@-1@-1@-1@-1@-1@-1@79@20@-1@-1@-1@-1@-1@-1@-1@1225@282@-1@-1@1507952@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@48@17@-1@-1@-1@-1@-1@-1@-1@1670@366@-1@-1@761732@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@64@19@-1@-1@-1@-1@-1@-1@-1@1793@455@-1@-1@1003396@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@96@20@-1@-1@-1@-1@-1@-1@-1@1973@577@-1@-1@1421812@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/result b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/result index ae3bf415a..77edef93c 100644 --- a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/result +++ b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/result @@ -1,6 +1,6 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(77 comp-head 0.000000 0 3 (74 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (76 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (75 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(81 subj-head 0.000000 0 3 (78 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (80 head-comp 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (79 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(141 subj-head 0.000000 0 6 (128 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (134 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (133 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (132 subord-subj-head 0.000000 3 6 (129 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (131 subord-comp-head 0.000000 4 6 (130 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun3_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -3@1@-1@-1@-1@-1@-1@-1@-1@-1@(142 subj-head 0.000000 0 6 (128 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (140 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (139 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (138 subord-comp-head 0.000000 3 6 (135 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (137 subord-subj-head 0.000000 4 6 (136 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun3_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(167 comp-head 0.000000 0 6 (164 head-comp 0.000000 0 4 (7 comps1_complementizer1 0.000000 0 1 ("comp1")) (163 subord-subj-head 0.000000 1 4 (160 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (162 subord-comp-head 0.000000 2 4 (161 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))) (10 tverb 0.000000 3 4 ("tverb"))))) (166 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (165 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_noun3_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x10 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h12 qeq h9 h16 qeq h14 h19 qeq h17 > ICONS: < > ] @ -4@1@-1@-1@-1@-1@-1@-1@-1@-1@(173 comp-head 0.000000 0 6 (172 head-comp 0.000000 0 4 (7 comps1_complementizer1 0.000000 0 1 ("comp1")) (171 subord-comp-head 0.000000 1 4 (168 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (170 subord-subj-head 0.000000 2 4 (169 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))) (10 tverb 0.000000 3 4 ("tverb"))))) (166 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (165 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_noun3_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x5 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h12 qeq h9 h16 qeq h14 h19 qeq h17 > ICONS: < > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 comp-head 0.000000 0 3 (73 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (75 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (74 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(80 subj-head 0.000000 0 3 (77 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (79 head-comp 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (78 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(140 subj-head 0.000000 0 6 (127 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (133 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (132 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (131 subord-subj-head 0.000000 3 6 (128 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (130 subord-comp-head 0.000000 4 6 (129 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))) (12 tverb 0.000000 5 6 ("tverb")))))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("VP" ("NP" ("N" ("noun3"))) ("V" ("tverb")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun3_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(141 subj-head 0.000000 0 6 (127 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (139 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (138 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (137 subord-comp-head 0.000000 3 6 (134 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (136 subord-subj-head 0.000000 4 6 (135 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))) (12 tverb 0.000000 5 6 ("tverb")))))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("V" ("NP" ("N" ("noun3"))) ("V" ("tverb")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun3_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(166 comp-head 0.000000 0 6 (163 head-comp 0.000000 0 4 (7 comp1 0.000000 0 1 ("comp1")) (162 subord-subj-head 0.000000 1 4 (159 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (161 subord-comp-head 0.000000 2 4 (160 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))) (10 tverb 0.000000 3 4 ("tverb"))))) (165 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (164 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("VP" ("NP" ("N" ("noun3"))) ("V" ("tverb"))))) ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x10 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h13 h16 qeq h14 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(172 comp-head 0.000000 0 6 (171 head-comp 0.000000 0 4 (7 comp1 0.000000 0 1 ("comp1")) (170 subord-comp-head 0.000000 1 4 (167 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (169 subord-subj-head 0.000000 2 4 (168 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))) (10 tverb 0.000000 3 4 ("tverb"))))) (165 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (164 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("V" ("NP" ("N" ("noun3"))) ("V" ("tverb"))))) ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x5 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h13 h16 qeq h14 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/run b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/run index 5d8faa449..54f57cb0a 100644 --- a/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/run +++ b/tests/regression/home/gold/ccomp-pseudo22-v2-vfinal-comp-bef-oblig/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1417@-1@-1@6@1@9@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@7@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1493@-1@-1@6@0@9@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:19:17@26-aug-2020 11:19:17@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/item b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/item index d9a936ada..95f1b0b79 100644 --- a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/item +++ b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/item @@ -1,7 +1,7 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-22 -2@unknown@formal@none@1@@noun tverb noun2@@@@@@@olzama@2017-12-22 -3@unknown@formal@none@1@@tverb noun1 noun2@@@@@@@olzama@2017-12-22 -4@unknown@formal@none@1@S@noun1 cverb noun2 noun3 tverb-NMZ@@@@@@@olzama@2017-12-22 -5@unknown@formal@none@1@@noun1 cverb noun2 noun3 tverb@@@@@@@olzama@2017-12-22 -6@unknown@formal@none@1@@noun1 noun2 noun3 tverb-NMZ cverb@@@@@@@olzama@2017-12-22 -7@unknown@formal@none@1@@noun1 noun2 tverb-NMZ@@@@@@@olzama@2017-12-22 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@22-dec-2017 +2@unknown@formal@none@1@@noun tverb noun2@@@@1@-1@@olzama@22-dec-2017 +3@unknown@formal@none@1@@tverb noun1 noun2@@@@1@-1@@olzama@22-dec-2017 +4@unknown@formal@none@1@S@noun1 cverb noun2 noun3 tverb-NMZ@@@@1@-1@@olzama@22-dec-2017 +5@unknown@formal@none@1@@noun1 cverb noun2 noun3 tverb@@@@1@-1@@olzama@22-dec-2017 +6@unknown@formal@none@1@@noun1 noun2 noun3 tverb-NMZ cverb@@@@1@-1@@olzama@22-dec-2017 +7@unknown@formal@none@1@@noun1 noun2 tverb-NMZ@@@@1@-1@@olzama@22-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/parse b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/parse index 86354a6a5..6bc7ecb65 100644 --- a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/parse +++ b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/parse @@ -1,7 +1,7 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@130780@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@27508@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@95376@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@257884@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@198020@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@258016@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@119504@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@251@15@-1@-1@204928@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:4>, 1, "noun", 0, "null") (2, 1, 2, <5:10>, 1, "tverb", 0, "null") (3, 2, 3, <11:16>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:4>, 1, "noun", 0, "null") (2, 1, 2, <5:10>, 1, "tverb", 0, "null") (3, 2, 3, <11:16>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@329@21@-1@-1@32984@-1@-1@-1@@post-reduction lexical gap@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@341@32@-1@-1@125332@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:33>, 1, "tverb-NMZ", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:33>, 1, "tverb-NMZ", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@11@13@-1@-1@-1@-1@-1@-1@-1@376@61@-1@-1@424560@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@10@-1@-1@-1@-1@-1@-1@-1@563@95@-1@-1@272252@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:33>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:33>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@11@-1@-1@-1@-1@-1@-1@-1@596@124@-1@-1@313420@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-NMZ", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-NMZ", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@614@140@-1@-1@157964@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/result b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/result index b31980cc5..6ea8a5458 100644 --- a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/result +++ b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 subj-head 0.000000 0 3 (32 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 comp-head 0.000000 1 3 (33 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 subj-head 0.000000 0 5 (58 bare-np 0.000000 0 1 (6 noun1 0.000000 0 1 ("noun1"))) (65 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (64 high-no-rel-nominalized-clause 0.000000 2 5 (63 subj-head 0.000000 2 5 (59 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (62 comp-head 0.000000 3 5 (60 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))) (61 high-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NMZ"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun3_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str i21 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 subj-head 0.000000 0 3 (32 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 comp-head 0.000000 1 3 (33 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 subj-head 0.000000 0 5 (58 bare-np 0.000000 0 1 (6 noun1 0.000000 0 1 ("noun1"))) (65 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (64 high-no-rel-nominalized-clause 0.000000 2 5 (63 subj-head 0.000000 2 5 (59 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (62 comp-head 0.000000 3 5 (60 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))) (61 high-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NMZ"))))))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("NP" ("S" ("NP" ("N" ("noun2"))) ("VP" ("NP" ("N" ("noun3"))) ("V" ("V" ("tverb-NMZ"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun3_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/run b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/run index d5242d864..9cf491890 100644 --- a/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/run +++ b/tests/regression/home/gold/ccomp-pseudo23-sov-high-empty-extra/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1402@-1@-1@5@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@7@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1478@-1@-1@5@1@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:23:31@26-aug-2020 11:23:31@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/item b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/item index 830ef86ec..8ad818822 100644 --- a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/item +++ b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/item @@ -1,4 +1,4 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@S@cverb noun3 comp1 tverb noun1 noun2@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@@cverb comp1 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@S@cverb noun3 comp1 tverb noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@@cverb comp1 tverb noun1 noun2 noun3@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/parse b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/parse index 2ae71a944..5f0e57450 100644 --- a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/parse +++ b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/parse @@ -1,4 +1,4 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@74324@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@49620@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@149272@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@108516@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@-1@7@-1@-1@-1@-1@-1@-1@-1@205@9@-1@-1@130464@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-2@6@-1@-1@-1@-1@-1@-1@-1@289@20@-1@-1@64608@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@14@-1@-1@-1@-1@-1@-1@-1@311@39@-1@-1@302704@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-2@12@-1@-1@-1@-1@-1@-1@-1@511@63@-1@-1@153864@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/result b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/result index eafbd553d..2da3ec475 100644 --- a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/result +++ b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(28 head-subj 0.000000 0 3 (26 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (25 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (27 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(60 head-comp-ccomp 0.000000 0 6 (54 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (53 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (59 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (58 head-subj 0.000000 3 6 (56 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (55 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (57 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(27 head-subj 0.000000 0 3 (25 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (24 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (26 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 head-comp-ccomp 0.000000 0 6 (53 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (52 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (58 head-comp-ccomp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (57 head-subj 0.000000 3 6 (55 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (54 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (56 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/run b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/run index bc63f33ad..e4862680f 100644 --- a/tests/regression/home/gold/ccomp-pseudo27-vos-extra/run +++ b/tests/regression/home/gold/ccomp-pseudo27-vos-extra/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1402@-1@-1@6@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@4@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1478@-1@-1@6@0@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:26:16@26-aug-2020 11:26:16@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/item b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/item index 63ea6f9b1..e6add83e2 100644 --- a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/item +++ b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/item @@ -1,4 +1,4 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-24 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-24 -3@unknown@formal@none@1@S@cverb noun3 comp1 tverb noun1 noun2@@@@@@@olzama@2017-12-24 -4@unknown@formal@none@1@@cverb comp1 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-24 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@24-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@24-dec-2017 +3@unknown@formal@none@1@S@cverb noun3 comp1 tverb noun1 noun2@@@@1@-1@@olzama@24-dec-2017 +4@unknown@formal@none@1@@cverb comp1 tverb noun1 noun2 noun3@@@@1@-1@@olzama@24-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/parse b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/parse index f57fff409..f35ed1b58 100644 --- a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/parse +++ b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/parse @@ -1,4 +1,4 @@ -1@1@1@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@103140@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@55592@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@183984@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@118804@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@2@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@1@9@-1@-1@-1@-1@-1@-1@-1@170@13@-1@-1@207944@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@7@-1@-1@-1@-1@-1@-1@-1@327@30@-1@-1@78312@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@1@16@-1@-1@-1@-1@-1@-1@-1@355@54@-1@-1@439360@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@14@-1@-1@-1@-1@-1@-1@-1@730@89@-1@-1@188256@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/result b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/result index 3f505a726..ca3143a86 100644 --- a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/result +++ b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/result @@ -1,4 +1,4 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 head-comp 0.000000 0 3 (28 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (27 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (29 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(34 head-subj 0.000000 0 3 (32 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (31 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (33 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(60 head-comp-ccomp 0.000000 0 6 (54 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (53 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (59 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (58 head-subj 0.000000 3 6 (56 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (55 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (57 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -3@1@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-comp-ccomp 0.000000 0 6 (54 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (53 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (65 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (64 head-comp 0.000000 3 6 (62 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (61 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (63 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(29 head-comp 0.000000 0 3 (27 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (26 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (28 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(33 head-subj 0.000000 0 3 (31 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (30 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (32 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 head-comp-ccomp 0.000000 0 6 (53 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (52 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (58 head-comp-ccomp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (57 head-subj 0.000000 3 6 (55 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (54 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (56 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp-ccomp 0.000000 0 6 (53 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (52 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (64 head-comp-ccomp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (63 head-comp 0.000000 3 6 (61 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (60 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (62 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/run b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/run index d1406183a..9d93be592 100644 --- a/tests/regression/home/gold/ccomp-pseudo28-vin-extra/run +++ b/tests/regression/home/gold/ccomp-pseudo28-vin-extra/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1397@-1@-1@6@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@4@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1473@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:45:02@26-aug-2020 11:45:02@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/item b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/item index b10a97856..e1b083324 100644 --- a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/item +++ b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/item @@ -1,5 +1,5 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-24 -2@unknown@formal@none@1@S@cverb noun3 comp1 tverb noun1 noun2@@@@@@@olzama@2017-12-24 -3@unknown@formal@none@1@S@cverb noun3 tverb noun1 noun2@@@@@@@olzama@2017-12-24 -4@unknown@formal@none@1@@cverb comp1 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-24 -5@unknown@formal@none@1@@cverb tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-24 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@24-dec-2017 +2@unknown@formal@none@1@S@cverb noun3 comp1 tverb noun1 noun2@@@@1@-1@@olzama@24-dec-2017 +3@unknown@formal@none@1@S@cverb noun3 tverb noun1 noun2@@@@1@-1@@olzama@24-dec-2017 +4@unknown@formal@none@1@@cverb comp1 tverb noun1 noun2 noun3@@@@1@-1@@olzama@24-dec-2017 +5@unknown@formal@none@1@@cverb tverb noun1 noun2 noun3@@@@1@-1@@olzama@24-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/parse b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/parse index 812a428db..7a99128c3 100644 --- a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/parse +++ b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/parse @@ -1,5 +1,5 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@104252@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@215880@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@222308@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@181968@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@152248@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@1@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@-1@7@-1@-1@-1@-1@-1@-1@-1@126@9@-1@-1@130568@-1@-1@-1@@@ +2@0@2@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@-1@14@-1@-1@-1@-1@-1@-1@-1@217@32@-1@-1@300728@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@12@-1@-1@-1@-1@-1@-1@-1@410@56@-1@-1@255544@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-2@12@-1@-1@-1@-1@-1@-1@-1@554@79@-1@-1@150888@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-2@10@-1@-1@-1@-1@-1@-1@-1@567@92@-1@-1@126172@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/result b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/result index c0246f2fa..0b8efb2a9 100644 --- a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/result +++ b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 head-comp 0.000000 0 3 (28 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (27 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (29 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(64 head-comp 0.000000 0 6 (58 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (57 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (63 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (62 head-comp 0.000000 3 6 (60 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (59 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (61 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(61 head-comp 0.000000 0 5 (56 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (55 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (60 head-comp 0.000000 2 5 (58 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (57 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (59 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(23 head-comp 0.000000 0 3 (21 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (20 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (22 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 head-comp 0.000000 0 6 (43 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (42 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (48 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (47 head-comp 0.000000 3 6 (45 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (44 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (46 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(41 head-comp 0.000000 0 5 (36 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (35 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (40 head-comp 0.000000 2 5 (38 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (37 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (39 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun3")))) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/run b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/run index 46a8d8f09..97ec72fb7 100644 --- a/tests/regression/home/gold/ccomp-pseudo29-vso-opt/run +++ b/tests/regression/home/gold/ccomp-pseudo29-vso-opt/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1398@-1@-1@6@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@5@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1471@-1@-1@6@0@3@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:47:16@26-aug-2020 11:47:16@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/item b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/item index bc381c862..363c059db 100644 --- a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/item +++ b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/item @@ -1,14 +1,14 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-21 -3@unknown@formal@none@1@@tverb noun1 noun2@@@@@@@olzama@2017-12-21 -4@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -5@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -6@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-21 -7@unknown@formal@none@1@@comp1 noun1 tverb noun2 noun1 cverb@@@@@@@olzama@2017-12-21 -8@unknown@formal@none@1@@noun1 comp1 noun1 tverb noun2 cverb@@@@@@@olzama@2017-12-21 -9@unknown@formal@none@1@@cverb noun3 comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -10@unknown@formal@none@1@@noun3 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-21 -11@unknown@formal@none@1@@noun1 noun2 tverb cverb noun3@@@@@@@olzama@2017-12-21 -12@unknown@formal@none@1@@cverb noun3 noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-21 -13@unknown@formal@none@1@@noun1 noun2 tverb comp1 cverb noun3@@@@@@@olzama@2017-12-21 -14@unknown@formal@none@1@@noun1 noun2 tverb comp1 noun3 cverb@@@@@@@olzama@2017-12-21 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@21-dec-2017 +3@unknown@formal@none@1@@tverb noun1 noun2@@@@1@-1@@olzama@21-dec-2017 +4@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +5@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +6@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@1@-1@@olzama@21-dec-2017 +7@unknown@formal@none@1@@comp1 noun1 tverb noun2 noun1 cverb@@@@1@-1@@olzama@21-dec-2017 +8@unknown@formal@none@1@@noun1 comp1 noun1 tverb noun2 cverb@@@@1@-1@@olzama@21-dec-2017 +9@unknown@formal@none@1@@cverb noun3 comp1 noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +10@unknown@formal@none@1@@noun3 noun1 noun2 tverb cverb@@@@1@-1@@olzama@21-dec-2017 +11@unknown@formal@none@1@@noun1 noun2 tverb cverb noun3@@@@1@-1@@olzama@21-dec-2017 +12@unknown@formal@none@1@@cverb noun3 noun1 noun2 tverb comp1@@@@1@-1@@olzama@21-dec-2017 +13@unknown@formal@none@1@@noun1 noun2 tverb comp1 cverb noun3@@@@1@-1@@olzama@21-dec-2017 +14@unknown@formal@none@1@@noun1 noun2 tverb comp1 noun3 cverb@@@@1@-1@@olzama@21-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/parse b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/parse index 9bab15b60..34852c2c9 100644 --- a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/parse +++ b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/parse @@ -1,14 +1,14 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@129732@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@111728@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@93648@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@284320@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@249868@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@350360@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@238048@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@238048@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@226964@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@221928@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@213688@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@256324@-1@-1@-1@23-6-2013 14:28:24@0@ -13@1@13@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@261048@-1@-1@-1@23-6-2013 14:28:24@0@ -14@1@14@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@271728@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@173@15@-1@-1@205264@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@6@-1@-1@-1@-1@-1@-1@-1@261@33@-1@-1@156548@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@272@44@-1@-1@123508@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@14@14@-1@-1@-1@-1@-1@-1@-1@311@78@-1@-1@489824@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@12@-1@-1@-1@-1@-1@-1@-1@520@115@-1@-1@420920@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@19@16@-1@-1@-1@-1@-1@-1@-1@695@163@-1@-1@593024@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@11@-1@-1@-1@-1@-1@-1@-1@910@201@-1@-1@330196@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@11@-1@-1@-1@-1@-1@-1@-1@948@231@-1@-1@330196@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@12@-1@-1@-1@-1@-1@-1@-1@981@260@-1@-1@311824@-1@-1@-1@@@ +10@0@10@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@10@-1@-1@-1@-1@-1@-1@-1@1015@288@-1@-1@318820@-1@-1@-1@@@ +11@0@11@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "cverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "cverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@10@-1@-1@-1@-1@-1@-1@-1@1047@314@-1@-1@301020@-1@-1@-1@@@ +12@0@12@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@12@-1@-1@-1@-1@-1@-1@-1@1084@346@-1@-1@361904@-1@-1@-1@@@ +13@0@13@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@12@-1@-1@-1@-1@-1@-1@-1@1124@379@-1@-1@375676@-1@-1@-1@@@ +14@0@14@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@13@-1@-1@-1@-1@-1@-1@-1@1168@415@-1@-1@399796@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/result b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/result index a573d4c61..3267f600f 100644 --- a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/result +++ b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/result @@ -1,4 +1,4 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(34 comp-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (33 subj-head 0.000000 1 3 (32 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 subj-head 0.000000 0 6 (69 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (75 head-comp-verb 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (74 head-comp-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (73 comp-head 0.000000 3 6 (70 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (72 subj-head 0.000000 4 6 (71 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(64 subj-head 0.000000 0 5 (58 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (63 head-comp-verb 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (62 comp-head 0.000000 2 5 (59 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (61 subj-head 0.000000 3 5 (60 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(86 subj-head 0.000000 0 6 (79 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (85 head-comp-verb 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (84 comp-head 0.000000 2 6 (83 comp-head 0.000000 2 5 (80 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (82 subj-head 0.000000 3 5 (81 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 comp-head 0.000000 0 3 (28 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (30 subj-head 0.000000 1 3 (29 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(69 head-comp 0.000000 0 6 (63 subj-head 0.000000 0 2 (62 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (68 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (67 comp-head 0.000000 3 6 (64 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (66 subj-head 0.000000 4 6 (65 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb"))))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(58 head-comp 0.000000 0 5 (53 subj-head 0.000000 0 2 (52 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (7 cverb 0.000000 1 2 ("cverb"))) (57 comp-head 0.000000 2 5 (54 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (56 subj-head 0.000000 3 5 (55 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb")))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 head-comp 0.000000 0 6 (70 subj-head 0.000000 0 2 (69 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (75 comp-head 0.000000 2 6 (74 comp-head 0.000000 2 5 (71 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (73 subj-head 0.000000 3 5 (72 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/run b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/run index 960c6fa35..292afce10 100644 --- a/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/run +++ b/tests/regression/home/gold/ccomp-pseudo3-osv-extra-opt-bef-aft/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1399@-1@-1@6@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@14@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1473@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 11:53:06@26-aug-2020 11:53:06@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/item b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/item index 518c96436..621b82258 100644 --- a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/item +++ b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/item @@ -1,5 +1,5 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@@@@olzama@2017-12-24 -2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 -3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb-NFIN cverb-FIN@@@@@@@olzama@2017-12-24 -4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb-FIN@@@@@@@olzama@2017-12-24 -5@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb-NFIN@@@@@@@olzama@2017-12-24 +1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@1@-1@@olzama@24-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 +3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb-NFIN cverb-FIN@@@@1@-1@@olzama@24-dec-2017 +4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb-FIN@@@@1@-1@@olzama@24-dec-2017 +5@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb-NFIN@@@@1@-1@@olzama@24-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/parse b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/parse index f3bbe4efe..ea32e04e1 100644 --- a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/parse +++ b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/parse @@ -1,5 +1,5 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@138428@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@115332@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@282016@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@233056@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@233056@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@213@16@-1@-1@219496@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@319@37@-1@-1@161908@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:38>, 1, "cverb-FIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:38>, 1, "cverb-FIN", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@15@12@-1@-1@-1@-1@-1@-1@-1@358@69@-1@-1@492376@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:37>, 1, "cverb-FIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:37>, 1, "cverb-FIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@10@-1@-1@-1@-1@-1@-1@-1@553@108@-1@-1@335628@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:38>, 1, "cverb-NFIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:38>, 1, "cverb-NFIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@10@-1@-1@-1@-1@-1@-1@-1@588@138@-1@-1@335636@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/result b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/result index 7024ee8df..114f6fb96 100644 --- a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/result +++ b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 subj-head 0.000000 0 3 (29 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (32 comp-head 0.000000 1 3 (30 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (31 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(63 subj-head 0.000000 0 5 (55 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (62 comp-head 0.000000 1 5 (60 subj-head 0.000000 1 4 (56 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (59 comp-head 0.000000 2 4 (57 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (58 nonfin-suffix 0.000000 3 4 (9 tverb 0.000000 3 4 ("tverb-NFIN"))))) (61 fin-suffix 0.000000 4 5 (10 cverb 0.000000 4 5 ("cverb-FIN")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < e2 info-str e19 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 subj-head 0.000000 0 3 (29 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (32 comp-head 0.000000 1 3 (30 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (31 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-FIN")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(61 subj-head 0.000000 0 5 (53 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (60 comp-head 0.000000 1 5 (58 subj-head 0.000000 1 4 (54 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (57 comp-head 0.000000 2 4 (55 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (56 nonfin-suffix 0.000000 3 4 (9 tverb 0.000000 3 4 ("tverb-NFIN"))))) (59 fin-suffix 0.000000 4 5 (10 cverb 0.000000 4 5 ("cverb-FIN")))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NFIN"))))) ("V" ("V" ("cverb-FIN")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/run b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/run index 4e40c2b56..c4ca7df71 100644 --- a/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/run +++ b/tests/regression/home/gold/ccomp-pseudo30-sov-nonfin/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1399@-1@-1@5@2@3@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@5@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1475@-1@-1@5@2@3@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:04:35@26-aug-2020 12:04:35@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/item b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/item index 0e06a55b5..f7b9cf40e 100644 --- a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/item +++ b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/item @@ -1,5 +1,5 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@@@@olzama@2017-12-24 -2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 -3@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN cverb-FIN@@@@@@@olzama@2017-12-24 -4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb-FIN@@@@@@@olzama@2017-12-24 -5@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 +1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@1@-1@@olzama@24-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 +3@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN cverb-FIN@@@@1@-1@@olzama@24-dec-2017 +4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb-FIN@@@@1@-1@@olzama@24-dec-2017 +5@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/parse b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/parse index 87af991d3..2f6daf485 100644 --- a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/parse +++ b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/parse @@ -1,5 +1,5 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@138884@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@115788@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@233912@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@233872@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@250512@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@252@16@-1@-1@220504@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@358@37@-1@-1@162916@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:38>, 1, "cverb-FIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:38>, 1, "cverb-FIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@10@-1@-1@-1@-1@-1@-1@-1@396@67@-1@-1@337684@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:37>, 1, "cverb-FIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:37>, 1, "cverb-FIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@10@-1@-1@-1@-1@-1@-1@-1@432@97@-1@-1@337676@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@12@-1@-1@-1@-1@-1@-1@-1@466@126@-1@-1@444904@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/result b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/result index a19076e31..6ca28c00e 100644 --- a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/result +++ b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 subj-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 comp-head 0.000000 1 3 (32 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (33 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 subj-head 0.000000 0 5 (54 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (61 head-comp 0.000000 1 5 (55 fin-suffix 0.000000 1 2 (7 cverb 0.000000 1 2 ("cverb-FIN"))) (60 subj-head 0.000000 2 5 (56 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (59 comp-head 0.000000 3 5 (57 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (58 nonfin-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NFIN")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 subj-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 comp-head 0.000000 1 3 (32 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (33 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-FIN")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 subj-head 0.000000 0 5 (54 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (61 head-comp 0.000000 1 5 (55 fin-suffix 0.000000 1 2 (7 cverb 0.000000 1 2 ("cverb-FIN"))) (60 subj-head 0.000000 2 5 (56 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (59 comp-head 0.000000 3 5 (57 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (58 nonfin-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NFIN")))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("V" ("cverb-FIN"))) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NFIN")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/run b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/run index b5699f439..2aea7ead1 100644 --- a/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/run +++ b/tests/regression/home/gold/ccomp-pseudo31-sov-nonfin-extra/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1402@-1@-1@5@2@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@5@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1478@-1@-1@5@2@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:05:51@26-aug-2020 12:05:51@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/item b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/item index b7945182e..c5dd701d0 100644 --- a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/item +++ b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/item @@ -1,7 +1,7 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@@@@olzama@2017-12-24 -2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 -3@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN cverb@@@@@@@olzama@2017-12-24 -4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb@@@@@@@olzama@2017-12-24 -5@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 -6@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN comp1@@@@@@@olzama@2017-12-24 -7@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN comp1 cverb@@@@@@@olzama@2017-12-24 +1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@1@-1@@olzama@24-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 +3@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN cverb@@@@1@-1@@olzama@24-dec-2017 +4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb@@@@1@-1@@olzama@24-dec-2017 +5@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 +6@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN comp1@@@@1@-1@@olzama@24-dec-2017 +7@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN comp1 cverb@@@@1@-1@@olzama@24-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/parse b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/parse index a7cb8b80b..967bc4f2e 100644 --- a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/parse +++ b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/parse @@ -1,7 +1,7 @@ -1@1@1@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@138884@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@115788@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@230032@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@229992@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@250512@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@351924@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@274832@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@252@16@-1@-1@220472@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@358@37@-1@-1@162924@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@10@-1@-1@-1@-1@-1@-1@-1@395@66@-1@-1@331876@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:33>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:33>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@10@-1@-1@-1@-1@-1@-1@-1@430@95@-1@-1@331868@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@12@-1@-1@-1@-1@-1@-1@-1@464@124@-1@-1@444872@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null") (6, 5, 6, <39:44>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null") (6, 5, 6, <39:44>, 1, "comp1", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@21@16@-1@-1@-1@-1@-1@-1@-1@678@176@-1@-1@669576@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "comp1", 0, "null") (6, 5, 6, <35:40>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "comp1", 0, "null") (6, 5, 6, <35:40>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@12@-1@-1@-1@-1@-1@-1@-1@929@221@-1@-1@402252@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/result b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/result index 41686568e..58df5f1ee 100644 --- a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/result +++ b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 subj-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 comp-head 0.000000 1 3 (32 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (33 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 subj-head 0.000000 0 5 (54 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (61 head-comp 0.000000 1 5 (55 fin-suffix 0.000000 1 2 (7 cverb 0.000000 1 2 ("cverb-FIN"))) (60 subj-head 0.000000 2 5 (56 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (59 comp-head 0.000000 3 5 (57 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (58 nonfin-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NFIN")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(82 subj-head 0.000000 0 6 (73 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (81 head-comp 0.000000 1 6 (74 fin-suffix 0.000000 1 2 (8 cverb 0.000000 1 2 ("cverb-FIN"))) (80 comp-head 0.000000 2 6 (79 subj-head 0.000000 2 5 (75 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (78 comp-head 0.000000 3 5 (76 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (77 nonfin-suffix 0.000000 4 5 (11 tverb 0.000000 4 5 ("tverb-NFIN"))))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 subj-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 comp-head 0.000000 1 3 (32 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (33 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-FIN")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 subj-head 0.000000 0 5 (54 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (61 head-comp 0.000000 1 5 (55 fin-suffix 0.000000 1 2 (7 cverb 0.000000 1 2 ("cverb-FIN"))) (60 subj-head 0.000000 2 5 (56 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (59 comp-head 0.000000 3 5 (57 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (58 nonfin-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NFIN")))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("V" ("cverb-FIN"))) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NFIN")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(82 subj-head 0.000000 0 6 (73 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (81 head-comp 0.000000 1 6 (74 fin-suffix 0.000000 1 2 (8 cverb 0.000000 1 2 ("cverb-FIN"))) (80 comp-head 0.000000 2 6 (79 subj-head 0.000000 2 5 (75 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (78 comp-head 0.000000 3 5 (76 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (77 nonfin-suffix 0.000000 4 5 (11 tverb 0.000000 4 5 ("tverb-NFIN"))))) (12 comp1 0.000000 5 6 ("comp1")))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("V" ("cverb-FIN"))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NFIN"))))) ("C" ("comp1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/run b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/run index 7a24c87f2..fcf1e831c 100644 --- a/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/run +++ b/tests/regression/home/gold/ccomp-pseudo32-sov-nonfin-extra-opt/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1404@-1@-1@6@2@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@7@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1480@-1@-1@6@2@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:07:04@26-aug-2020 12:07:04@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/item b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/item index 9e2392f38..b4a929941 100644 --- a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/item +++ b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/item @@ -1,8 +1,8 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@@@@olzama@2017-12-24 -2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 -3@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN cverb@@@@@@@olzama@2017-12-24 -4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb@@@@@@@olzama@2017-12-24 -5@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 -6@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN comp1@@@@@@@olzama@2017-12-24 -7@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN comp1 cverb@@@@@@@olzama@2017-12-24 -8@unknown@formal@none@1@S@noun3 cverb-FIN comp1 noun1 noun2 tverb-NFIN@@@@@@@olzama@2017-12-24 +1@unknown@formal@none@1@S@noun1 noun2 tverb-FIN@@@@1@-1@@olzama@24-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 +3@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN cverb@@@@1@-1@@olzama@24-dec-2017 +4@unknown@formal@none@1@@noun3 noun1 noun2 tverb-FIN cverb@@@@1@-1@@olzama@24-dec-2017 +5@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 +6@unknown@formal@none@1@S@noun3 cverb-FIN noun1 noun2 tverb-NFIN comp1@@@@1@-1@@olzama@24-dec-2017 +7@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NFIN comp1 cverb@@@@1@-1@@olzama@24-dec-2017 +8@unknown@formal@none@1@S@noun3 cverb-FIN comp1 noun1 noun2 tverb-NFIN@@@@1@-1@@olzama@24-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/parse b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/parse index 4bdc0f724..9047a311a 100644 --- a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/parse +++ b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/parse @@ -1,8 +1,8 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@139276@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@116180@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@230784@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@230744@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@251264@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@352876@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@279744@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@287036@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@252@16@-1@-1@220496@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@7@-1@-1@-1@-1@-1@-1@-1@358@37@-1@-1@162908@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@10@-1@-1@-1@-1@-1@-1@-1@395@66@-1@-1@331900@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:33>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <28:33>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@10@-1@-1@-1@-1@-1@-1@-1@430@95@-1@-1@331892@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@12@-1@-1@-1@-1@-1@-1@-1@464@124@-1@-1@444896@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null") (6, 5, 6, <39:44>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun1", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "tverb-NFIN", 0, "null") (6, 5, 6, <39:44>, 1, "comp1", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@21@16@-1@-1@-1@-1@-1@-1@-1@678@176@-1@-1@669760@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "comp1", 0, "null") (6, 5, 6, <35:40>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:28>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <29:34>, 1, "comp1", 0, "null") (6, 5, 6, <35:40>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@18@12@-1@-1@-1@-1@-1@-1@-1@930@222@-1@-1@409156@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "comp1", 0, "null") (4, 3, 4, <22:27>, 1, "noun1", 0, "null") (5, 4, 5, <28:33>, 1, "noun2", 0, "null") (6, 5, 6, <34:44>, 1, "tverb-NFIN", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:15>, 1, "cverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "comp1", 0, "null") (4, 3, 4, <22:27>, 1, "noun1", 0, "null") (5, 4, 5, <28:33>, 1, "noun2", 0, "null") (6, 5, 6, <34:44>, 1, "tverb-NFIN", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@14@14@-1@-1@-1@-1@-1@-1@-1@970@256@-1@-1@519000@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/result b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/result index 24ec02a2d..805ba3853 100644 --- a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/result +++ b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/result @@ -1,4 +1,4 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(37 subj-head 0.000000 0 3 (33 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (36 comp-head 0.000000 1 3 (34 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (35 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 subj-head 0.000000 0 5 (58 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (65 head-comp-verb 0.000000 1 5 (59 fin-suffix 0.000000 1 2 (7 cverb 0.000000 1 2 ("cverb-FIN"))) (64 subj-head 0.000000 2 5 (60 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (63 comp-head 0.000000 3 5 (61 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (62 nonfin-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NFIN")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(87 subj-head 0.000000 0 6 (78 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (86 head-comp-verb 0.000000 1 6 (79 fin-suffix 0.000000 1 2 (8 cverb 0.000000 1 2 ("cverb-FIN"))) (85 comp-head 0.000000 2 6 (84 subj-head 0.000000 2 5 (80 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (83 comp-head 0.000000 3 5 (81 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (82 nonfin-suffix 0.000000 4 5 (11 tverb 0.000000 4 5 ("tverb-NFIN"))))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 subj-head 0.000000 0 6 (69 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (77 head-comp-verb 0.000000 1 6 (70 fin-suffix 0.000000 1 2 (8 cverb 0.000000 1 2 ("cverb-FIN"))) (76 head-comp-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (75 subj-head 0.000000 3 6 (71 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (74 comp-head 0.000000 4 6 (72 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (73 nonfin-suffix 0.000000 5 6 (12 tverb 0.000000 5 6 ("tverb-NFIN"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 subj-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 comp-head 0.000000 1 3 (32 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (33 fin-suffix 0.000000 2 3 (6 tverb 0.000000 2 3 ("tverb-FIN")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-FIN")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 subj-head 0.000000 0 5 (54 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (61 head-comp 0.000000 1 5 (55 fin-suffix 0.000000 1 2 (7 cverb 0.000000 1 2 ("cverb-FIN"))) (60 subj-head 0.000000 2 5 (56 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (59 comp-head 0.000000 3 5 (57 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (58 nonfin-suffix 0.000000 4 5 (10 tverb 0.000000 4 5 ("tverb-NFIN")))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("V" ("cverb-FIN"))) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NFIN")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(82 subj-head 0.000000 0 6 (73 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (81 head-comp 0.000000 1 6 (74 fin-suffix 0.000000 1 2 (8 cverb 0.000000 1 2 ("cverb-FIN"))) (80 comp-head 0.000000 2 6 (79 subj-head 0.000000 2 5 (75 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (78 comp-head 0.000000 3 5 (76 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (77 nonfin-suffix 0.000000 4 5 (11 tverb 0.000000 4 5 ("tverb-NFIN"))))) (12 comp1 0.000000 5 6 ("comp1")))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("V" ("cverb-FIN"))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NFIN"))))) ("C" ("comp1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 subj-head 0.000000 0 6 (64 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (72 head-comp 0.000000 1 6 (65 fin-suffix 0.000000 1 2 (8 cverb 0.000000 1 2 ("cverb-FIN"))) (71 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (70 subj-head 0.000000 3 6 (66 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (69 comp-head 0.000000 4 6 (67 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (68 nonfin-suffix 0.000000 5 6 (12 tverb 0.000000 5 6 ("tverb-NFIN"))))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("V" ("cverb-FIN"))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NFIN"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/run b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/run index 325896d6e..7f8566b1c 100644 --- a/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/run +++ b/tests/regression/home/gold/ccomp-pseudo33-sov-nonfin-extra-opt-bef-aft/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1406@-1@-1@6@2@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@8@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1480@-1@-1@6@2@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:08:22@26-aug-2020 12:08:22@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/item b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/item index a6b7553e2..147eb5dea 100644 --- a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/item +++ b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/item @@ -1,12 +1,12 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-24 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-24 -3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-24 -4@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@@@@olzama@2017-12-24 -5@unknown@formal@none@1@S@noun3 comp1 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-24 -6@unknown@formal@none@1@S@noun3 noun1 noun2 tverb comp1 cverb@@@@@@@olzama@2017-12-24 -7@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-24 -8@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-24 -9@unknown@formal@none@1@@noun3 comp1 comp1 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-24 -10@unknown@formal@none@1@@noun3 cverb noun1 noun2 tverb comp1 comp1@@@@@@@olzama@2017-12-24 -11@unknown@formal@none@1@@comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-24 -12@unknown@formal@none@1@@noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-24 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@24-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@24-dec-2017 +3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb cverb@@@@1@-1@@olzama@24-dec-2017 +4@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@1@-1@@olzama@24-dec-2017 +5@unknown@formal@none@1@S@noun3 comp1 noun1 noun2 tverb cverb@@@@1@-1@@olzama@24-dec-2017 +6@unknown@formal@none@1@S@noun3 noun1 noun2 tverb comp1 cverb@@@@1@-1@@olzama@24-dec-2017 +7@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@1@-1@@olzama@24-dec-2017 +8@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@1@-1@@olzama@24-dec-2017 +9@unknown@formal@none@1@@noun3 comp1 comp1 noun1 noun2 tverb cverb@@@@1@-1@@olzama@24-dec-2017 +10@unknown@formal@none@1@@noun3 cverb noun1 noun2 tverb comp1 comp1@@@@1@-1@@olzama@24-dec-2017 +11@unknown@formal@none@1@@comp1 noun1 noun2 tverb@@@@1@-1@@olzama@24-dec-2017 +12@unknown@formal@none@1@@noun1 noun2 tverb comp1@@@@1@-1@@olzama@24-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/parse b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/parse index 3e745e8d7..a89e5fad9 100644 --- a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/parse +++ b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/parse @@ -1,12 +1,12 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@128260@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@111216@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@262076@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@230156@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@314184@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@307864@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@264448@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@330808@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@307212@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@388296@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@140732@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@170452@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@173@15@-1@-1@202904@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@6@-1@-1@-1@-1@-1@-1@-1@265@33@-1@-1@156188@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@12@-1@-1@-1@-1@-1@-1@-1@301@63@-1@-1@452640@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@10@12@-1@-1@-1@-1@-1@-1@-1@469@97@-1@-1@405000@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@17@15@-1@-1@-1@-1@-1@-1@-1@652@142@-1@-1@562424@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@17@14@-1@-1@-1@-1@-1@-1@-1@881@187@-1@-1@551744@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@14@-1@-1@-1@-1@-1@-1@-1@1104@227@-1@-1@476224@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@19@17@-1@-1@-1@-1@-1@-1@-1@1341@277@-1@-1@624384@-1@-1@-1@@@ +9@0@9@7@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null") (7, 6, 7, <36:41>, 1, "cverb", 0, "null")@7@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null") (7, 6, 7, <36:41>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@19@15@-1@-1@-1@-1@-1@-1@-1@1579@326@-1@-1@454384@-1@-1@-1@@@ +10@0@10@7@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null") (7, 6, 7, <36:41>, 1, "comp1", 0, "null")@7@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null") (7, 6, 7, <36:41>, 1, "comp1", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@29@19@-1@-1@-1@-1@-1@-1@-1@1648@381@-1@-1@663932@-1@-1@-1@@@ +11@0@11@4@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null")@4@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@9@-1@-1@-1@-1@-1@-1@-1@1672@401@-1@-1@202432@-1@-1@-1@@@ +12@0@12@4@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null")@4@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@9@-1@-1@-1@-1@-1@-1@-1@1702@424@-1@-1@253312@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/result b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/result index c9fd48c91..09291e106 100644 --- a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/result +++ b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/result @@ -1,7 +1,7 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(32 subj-head 0.000000 0 3 (29 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (31 comp-head 0.000000 1 3 (30 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 subj-head 0.000000 0 5 (56 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (61 comp-head 0.000000 1 5 (60 subj-head 0.000000 1 4 (57 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (59 comp-head 0.000000 2 4 (58 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (9 tverb 0.000000 3 4 ("tverb")))) (10 cverb 0.000000 4 5 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < e2 info-str e19 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(57 subj-head 0.000000 0 5 (51 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (56 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (55 subj-head 0.000000 2 5 (52 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (54 comp-head 0.000000 3 5 (53 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(77 subj-head 0.000000 0 6 (70 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (76 comp-head 0.000000 1 6 (75 head-comp 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (74 subj-head 0.000000 2 5 (71 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (73 comp-head 0.000000 3 5 (72 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb"))))) (12 cverb 0.000000 5 6 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 subj-head 0.000000 0 6 (66 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (72 comp-head 0.000000 1 6 (71 comp-head 0.000000 1 5 (70 subj-head 0.000000 1 4 (67 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (69 comp-head 0.000000 2 4 (68 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comps1_complementizer1 0.000000 4 5 ("comp1"))) (12 cverb 0.000000 5 6 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 subj-head 0.000000 0 6 (61 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (67 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (66 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (65 subj-head 0.000000 3 6 (62 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (64 comp-head 0.000000 4 6 (63 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 subj-head 0.000000 0 6 (71 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (77 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (76 comp-head 0.000000 2 6 (75 subj-head 0.000000 2 5 (72 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (74 comp-head 0.000000 3 5 (73 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 subj-head 0.000000 0 3 (28 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (30 comp-head 0.000000 1 3 (29 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 subj-head 0.000000 0 5 (53 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (58 comp-head 0.000000 1 5 (57 subj-head 0.000000 1 4 (54 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (56 comp-head 0.000000 2 4 (55 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (9 tverb 0.000000 3 4 ("tverb")))) (10 cverb 0.000000 4 5 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(56 subj-head 0.000000 0 5 (50 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (55 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (54 subj-head 0.000000 2 5 (51 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (53 comp-head 0.000000 3 5 (52 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb"))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("cverb")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 subj-head 0.000000 0 6 (66 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (72 comp-head 0.000000 1 6 (71 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (70 subj-head 0.000000 2 5 (67 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (69 comp-head 0.000000 3 5 (68 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb"))))) (12 cverb 0.000000 5 6 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(72 subj-head 0.000000 0 6 (65 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (71 comp-head 0.000000 1 6 (70 comp-head 0.000000 1 5 (69 subj-head 0.000000 1 4 (66 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (68 comp-head 0.000000 2 4 (67 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comp1 0.000000 4 5 ("comp1"))) (12 cverb 0.000000 5 6 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 subj-head 0.000000 0 6 (60 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (66 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (65 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (64 subj-head 0.000000 3 6 (61 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (63 comp-head 0.000000 4 6 (62 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(77 subj-head 0.000000 0 6 (70 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (76 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (75 comp-head 0.000000 2 6 (74 subj-head 0.000000 2 5 (71 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (73 comp-head 0.000000 3 5 (72 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comp1 0.000000 5 6 ("comp1")))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("cverb")) ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/run b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/run index f7c568532..b2fa8e450 100644 --- a/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/run +++ b/tests/regression/home/gold/ccomp-pseudo34-sov-nonfin-extra-same-opt-bef-aft/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1397@-1@-1@6@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@12@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1473@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:10:18@26-aug-2020 12:10:18@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/item b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/item index 0e76fad2c..d8c8169eb 100644 --- a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/item +++ b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/item @@ -1,6 +1,6 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@@cverb comp1 tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -6@unknown@formal@none@1@@cverb tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@@cverb comp1 tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +6@unknown@formal@none@1@@cverb tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/parse b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/parse index 1ef608f9d..b97c92367 100644 --- a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/parse +++ b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/parse @@ -1,6 +1,6 @@ -1@1@1@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@103548@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@55960@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@184912@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@165300@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@119732@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@103908@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@1@9@-1@-1@-1@-1@-1@-1@-1@170@13@-1@-1@207944@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@7@-1@-1@-1@-1@-1@-1@-1@327@30@-1@-1@78312@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@1@16@-1@-1@-1@-1@-1@-1@-1@355@54@-1@-1@439360@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@1@14@-1@-1@-1@-1@-1@-1@-1@730@89@-1@-1@377536@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@14@-1@-1@-1@-1@-1@-1@-1@1009@122@-1@-1@188256@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@12@-1@-1@-1@-1@-1@-1@-1@1028@139@-1@-1@156372@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/result b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/result index db8da4184..d31f0270f 100644 --- a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/result +++ b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/result @@ -1,6 +1,6 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(32 head-comp 0.000000 0 3 (30 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (29 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (31 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(36 head-subj 0.000000 0 3 (34 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (33 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (35 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp-ccomp 0.000000 0 6 (59 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (58 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (64 head-comp-cmpl 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (63 head-subj 0.000000 3 6 (61 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (60 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (62 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -3@1@-1@-1@-1@-1@-1@-1@-1@-1@(71 head-comp-ccomp 0.000000 0 6 (59 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (58 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (70 head-comp-cmpl 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (69 head-comp 0.000000 3 6 (67 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (66 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (68 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp-ccomp 0.000000 0 5 (50 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (49 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (54 head-subj 0.000000 2 5 (52 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (51 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (53 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@1@-1@-1@-1@-1@-1@-1@-1@-1@(60 head-comp-ccomp 0.000000 0 5 (50 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (49 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (59 head-comp 0.000000 2 5 (57 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (56 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (58 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(29 head-comp 0.000000 0 3 (27 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (26 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (28 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(33 head-subj 0.000000 0 3 (31 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (30 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (32 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 head-comp-ccomp 0.000000 0 6 (53 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (52 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (58 head-comp-ccomp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (57 head-subj 0.000000 3 6 (55 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (54 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (56 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp-ccomp 0.000000 0 6 (53 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (52 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (64 head-comp-ccomp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (63 head-comp 0.000000 3 6 (61 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (60 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (62 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(50 head-comp-ccomp 0.000000 0 5 (45 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (44 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (49 head-subj 0.000000 2 5 (47 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (46 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (48 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp-ccomp 0.000000 0 5 (45 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (44 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (54 head-comp 0.000000 2 5 (52 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (51 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (53 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/run b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/run index d35f2be5e..f159391b8 100644 --- a/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/run +++ b/tests/regression/home/gold/ccomp-pseudo35-vin-extra-opt-bef/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1398@-1@-1@6@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@6@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1473@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:21:10@26-aug-2020 12:21:10@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/item b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/item index 0e76fad2c..d8c8169eb 100644 --- a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/item +++ b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/item @@ -1,6 +1,6 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@@cverb comp1 tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -6@unknown@formal@none@1@@cverb tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@@cverb comp1 tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +6@unknown@formal@none@1@@cverb tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/parse b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/parse index 0561a2754..04bcba0b8 100644 --- a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/parse +++ b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/parse @@ -1,6 +1,6 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@74188@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@49484@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@149096@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@131444@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@108340@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@93356@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@-1@7@-1@-1@-1@-1@-1@-1@-1@205@9@-1@-1@130216@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-2@6@-1@-1@-1@-1@-1@-1@-1@289@20@-1@-1@64360@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@-1@14@-1@-1@-1@-1@-1@-1@-1@311@39@-1@-1@302136@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@12@-1@-1@-1@-1@-1@-1@-1@510@63@-1@-1@256392@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-2@12@-1@-1@-1@-1@-1@-1@-1@661@86@-1@-1@153296@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-2@10@-1@-1@-1@-1@-1@-1@-1@676@99@-1@-1@128036@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/result b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/result index 7d282fd2a..4d4037b7d 100644 --- a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/result +++ b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 head-subj 0.000000 0 3 (28 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (27 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (29 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp-ccomp 0.000000 0 6 (59 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (58 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (64 head-comp-cmpl 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (63 head-subj 0.000000 3 6 (61 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (60 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (62 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 head-comp-ccomp 0.000000 0 5 (49 head-subj-ccomp 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (48 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (53 head-subj 0.000000 2 5 (51 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (50 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (52 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(27 head-subj 0.000000 0 3 (25 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (24 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (26 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 head-comp-ccomp 0.000000 0 6 (53 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (52 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (58 head-comp-ccomp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (57 head-subj 0.000000 3 6 (55 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (54 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (56 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 head-comp-ccomp 0.000000 0 5 (44 head-subj-ccomp 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (43 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (48 head-subj 0.000000 2 5 (46 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (45 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (47 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/run b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/run index 4304fe377..b41a06335 100644 --- a/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/run +++ b/tests/regression/home/gold/ccomp-pseudo36-vos-extra-opt-bef/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1400@-1@-1@6@1@6@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@6@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1475@-1@-1@6@0@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:24:16@26-aug-2020 12:24:16@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/item b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/item index e1708735d..4d2ae4a21 100644 --- a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/item +++ b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/item @@ -1,7 +1,7 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@S@cverb comp1 tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -6@unknown@formal@none@1@S@cverb tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -7@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3 comp1@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@S@cverb comp1 tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +6@unknown@formal@none@1@S@cverb tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +7@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3 comp1@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/parse b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/parse index 64ad79efb..ed5197916 100644 --- a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/parse +++ b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/parse @@ -1,7 +1,7 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@104156@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@72172@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@221024@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@195452@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@237664@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@205212@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@240704@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@209@13@-1@-1@175344@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@298@27@-1@-1@97248@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@9@14@-1@-1@-1@-1@-1@-1@-1@332@56@-1@-1@410864@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@8@12@-1@-1@-1@-1@-1@-1@-1@542@89@-1@-1@354040@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@11@14@-1@-1@-1@-1@-1@-1@-1@708@127@-1@-1@463744@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@9@12@-1@-1@-1@-1@-1@-1@-1@921@161@-1@-1@390600@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@11@16@-1@-1@-1@-1@-1@-1@-1@1096@201@-1@-1@462784@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/result b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/result index c12f10a6e..6aea0cc45 100644 --- a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/result +++ b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/result @@ -1,6 +1,6 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(34 head-subj 0.000000 0 3 (32 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (31 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (33 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(75 head-comp-ccomp 0.000000 0 6 (69 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (68 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (74 head-comp-ccomp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (73 head-subj 0.000000 3 6 (71 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (70 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (72 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(63 head-comp-ccomp 0.000000 0 5 (58 head-subj-ccomp 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (57 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (62 head-subj 0.000000 2 5 (60 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (59 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (61 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(77 head-subj 0.000000 0 6 (75 head-comp-ccomp 0.000000 0 5 (7 cverb 0.000000 0 1 ("cverb")) (74 head-comp-ccomp 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (73 head-subj 0.000000 2 5 (71 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (70 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (72 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))))) (76 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(64 head-subj 0.000000 0 5 (62 head-comp-ccomp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (61 head-subj 0.000000 1 4 (59 head-comp 0.000000 1 3 (7 tverb 0.000000 1 2 ("tverb")) (58 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (60 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (63 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 head-comp-ccomp 0.000000 0 6 (72 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (71 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (77 comp-head 0.000000 2 6 (76 head-subj 0.000000 2 5 (74 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (73 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (75 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 head-subj 0.000000 0 3 (29 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (28 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (30 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(69 head-comp 0.000000 0 6 (63 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (62 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (68 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (67 head-subj 0.000000 3 6 (65 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (64 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (66 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(58 head-comp 0.000000 0 5 (53 head-subj-ccomp 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (52 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (57 head-subj 0.000000 2 5 (55 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (54 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (56 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(71 head-subj 0.000000 0 6 (69 head-comp 0.000000 0 5 (7 cverb 0.000000 0 1 ("cverb")) (68 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (67 head-subj 0.000000 2 5 (65 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (64 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (66 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))))) (70 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 head-subj 0.000000 0 5 (57 head-comp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (56 head-subj 0.000000 1 4 (54 head-comp 0.000000 1 3 (7 tverb 0.000000 1 2 ("tverb")) (53 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (55 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (58 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 head-comp 0.000000 0 6 (67 head-subj-ccomp 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (66 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (72 comp-head 0.000000 2 6 (71 head-subj 0.000000 2 5 (69 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (68 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (70 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/run b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/run index faf3f3211..f85ec0bd0 100644 --- a/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/run +++ b/tests/regression/home/gold/ccomp-pseudo37-vos-extra-same-opt-bef-after/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1402@-1@-1@6@1@6@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@7@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1476@-1@-1@6@0@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:26:18@26-aug-2020 12:26:18@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/item b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/item index e1708735d..4d2ae4a21 100644 --- a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/item +++ b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/item @@ -1,7 +1,7 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@S@cverb comp1 tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -6@unknown@formal@none@1@S@cverb tverb noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -7@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3 comp1@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@S@cverb noun1 comp1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@S@cverb comp1 tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +6@unknown@formal@none@1@S@cverb tverb noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +7@unknown@formal@none@1@S@cverb noun1 tverb noun2 noun3 comp1@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/parse b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/parse index 6d1825167..a8f52337c 100644 --- a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/parse +++ b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/parse @@ -1,7 +1,7 @@ -1@1@1@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@140756@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@78688@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@264080@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@236548@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@292280@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@258588@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@293160@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@6@9@-1@-1@-1@-1@-1@-1@-1@174@18@-1@-1@265368@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@7@-1@-1@-1@-1@-1@-1@-1@338@38@-1@-1@111176@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@2@-1@3@3@-1@5@-1@-1@-1@-1@-1@-1@12@16@-1@-1@-1@-1@-1@-1@-1@378@73@-1@-1@559824@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@2@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@11@14@-1@-1@-1@-1@-1@-1@-1@766@118@-1@-1@486920@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@2@-1@13@13@-1@21@-1@-1@-1@-1@-1@-1@15@16@-1@-1@-1@-1@-1@-1@-1@1062@168@-1@-1@654144@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null")@2@-1@6@6@-1@7@-1@-1@-1@-1@-1@-1@13@14@-1@-1@-1@-1@-1@-1@-1@1458@216@-1@-1@561240@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@2@-1@5@5@-1@16@-1@-1@-1@-1@-1@-1@15@18@-1@-1@-1@-1@-1@-1@-1@1770@270@-1@-1@636144@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/result b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/result index d67e3cbfb..b97f00f16 100644 --- a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/result +++ b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/result @@ -1,12 +1,12 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(37 head-comp 0.000000 0 3 (35 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (34 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (36 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(41 head-subj 0.000000 0 3 (39 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (38 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (40 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 head-comp-ccomp 0.000000 0 6 (70 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (69 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (75 head-comp-ccomp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (74 head-subj 0.000000 3 6 (72 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (71 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (73 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -3@1@-1@-1@-1@-1@-1@-1@-1@-1@(82 head-comp-ccomp 0.000000 0 6 (70 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (69 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (81 head-comp-ccomp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (80 head-comp 0.000000 3 6 (78 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (77 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (79 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp-ccomp 0.000000 0 5 (60 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (59 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (64 head-subj 0.000000 2 5 (62 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (61 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (63 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@1@-1@-1@-1@-1@-1@-1@-1@-1@(70 head-comp-ccomp 0.000000 0 5 (60 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (59 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (69 head-comp 0.000000 2 5 (67 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (66 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (68 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(85 head-subj 0.000000 0 6 (77 head-comp-ccomp 0.000000 0 5 (7 cverb 0.000000 0 1 ("cverb")) (76 head-comp-ccomp 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (75 head-subj 0.000000 2 5 (73 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (72 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (74 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))))) (84 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -5@1@-1@-1@-1@-1@-1@-1@-1@-1@(86 head-subj 0.000000 0 6 (83 head-comp-ccomp 0.000000 0 5 (7 cverb 0.000000 0 1 ("cverb")) (82 head-comp-ccomp 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (81 head-comp 0.000000 2 5 (79 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (78 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (80 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))))) (84 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x7 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x8 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 head-subj 0.000000 0 5 (65 head-comp-ccomp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (64 head-subj 0.000000 1 4 (62 head-comp 0.000000 1 3 (7 tverb 0.000000 1 2 ("tverb")) (61 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (63 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (66 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -6@1@-1@-1@-1@-1@-1@-1@-1@-1@(73 head-subj 0.000000 0 5 (72 head-comp-ccomp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (71 head-comp 0.000000 1 4 (69 head-subj 0.000000 1 3 (7 tverb 0.000000 1 2 ("tverb")) (68 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (70 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (66 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x7 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x8 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(81 head-comp-ccomp 0.000000 0 6 (75 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (74 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (80 comp-head 0.000000 2 6 (79 head-subj 0.000000 2 5 (77 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (76 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (78 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -7@1@-1@-1@-1@-1@-1@-1@-1@-1@(87 head-comp-ccomp 0.000000 0 6 (75 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (74 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (86 comp-head 0.000000 2 6 (85 head-comp 0.000000 2 5 (83 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (82 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (84 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(34 head-comp 0.000000 0 3 (32 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (31 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (33 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(38 head-subj 0.000000 0 3 (36 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (35 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (37 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 head-comp 0.000000 0 6 (64 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (63 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (69 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (68 head-subj 0.000000 3 6 (66 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (65 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (67 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(76 head-comp 0.000000 0 6 (64 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (63 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (75 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (74 head-comp 0.000000 3 6 (72 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (71 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (73 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(60 head-comp 0.000000 0 5 (55 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (54 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (59 head-subj 0.000000 2 5 (57 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (56 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (58 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp 0.000000 0 5 (55 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (54 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (64 head-comp 0.000000 2 5 (62 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (61 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (63 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(79 head-subj 0.000000 0 6 (71 head-comp 0.000000 0 5 (7 cverb 0.000000 0 1 ("cverb")) (70 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (69 head-subj 0.000000 2 5 (67 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (66 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (68 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))))) (78 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@1@-1@-1@-1@-1@-1@-1@-1@-1@(80 head-subj 0.000000 0 6 (77 head-comp 0.000000 0 5 (7 cverb 0.000000 0 1 ("cverb")) (76 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (75 head-comp 0.000000 2 5 (73 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (72 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (74 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))))) (78 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x8 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 head-subj 0.000000 0 5 (60 head-comp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (59 head-subj 0.000000 1 4 (57 head-comp 0.000000 1 3 (7 tverb 0.000000 1 2 ("tverb")) (56 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (58 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (61 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(68 head-subj 0.000000 0 5 (67 head-comp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (66 head-comp 0.000000 1 4 (64 head-subj 0.000000 1 3 (7 tverb 0.000000 1 2 ("tverb")) (63 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (65 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (61 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x8 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 head-comp 0.000000 0 6 (70 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (69 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (75 comp-head 0.000000 2 6 (74 head-subj 0.000000 2 5 (72 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (71 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (73 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(82 head-comp 0.000000 0 6 (70 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (69 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (81 comp-head 0.000000 2 6 (80 head-comp 0.000000 2 5 (78 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (77 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))) (79 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/run b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/run index f4e080e18..cf8ecd682 100644 --- a/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/run +++ b/tests/regression/home/gold/ccomp-pseudo38-vin-extra-same-opt-bef-after/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1400@-1@-1@6@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@7@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1474@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 12:39:38@26-aug-2020 12:39:38@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/item b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/item index 2ccae2780..6137aff30 100644 --- a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/item +++ b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/item @@ -1,15 +1,15 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@S@noun3 comp1 noun1 noun2 tverb cverb@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@S@noun3 noun1 noun2 tverb comp1 cverb@@@@@@@olzama@2017-12-26 -6@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@@@@olzama@2017-12-26 -7@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-26 -8@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-26 -9@unknown@formal@none@1@@cverb noun3 noun1 noun2 tverb@@@@@@@olzama@2017-12-26 -10@unknown@formal@none@1@@cverb noun3 comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-26 -11@unknown@formal@none@1@@cverb noun3 noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-26 -12@unknown@formal@none@1@@cverb noun1 noun2 tverb noun3@@@@@@@olzama@2017-12-26 -13@unknown@formal@none@1@@cverb noun1 noun2 tverb comp1 noun3@@@@@@@olzama@2017-12-26 -14@unknown@formal@none@1@@cverb comp1 noun1 noun2 tverb noun3@@@@@@@olzama@2017-12-26 -15@unknown@formal@none@1@@noun1 cverb noun2@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb cverb@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@S@noun3 comp1 noun1 noun2 tverb cverb@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@S@noun3 noun1 noun2 tverb comp1 cverb@@@@1@-1@@olzama@26-dec-2017 +6@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb@@@@1@-1@@olzama@26-dec-2017 +7@unknown@formal@none@1@S@noun3 cverb comp1 noun1 noun2 tverb@@@@1@-1@@olzama@26-dec-2017 +8@unknown@formal@none@1@S@noun3 cverb noun1 noun2 tverb comp1@@@@1@-1@@olzama@26-dec-2017 +9@unknown@formal@none@1@@cverb noun3 noun1 noun2 tverb@@@@1@-1@@olzama@26-dec-2017 +10@unknown@formal@none@1@@cverb noun3 comp1 noun1 noun2 tverb@@@@1@-1@@olzama@26-dec-2017 +11@unknown@formal@none@1@@cverb noun3 noun1 noun2 tverb comp1@@@@1@-1@@olzama@26-dec-2017 +12@unknown@formal@none@1@@cverb noun1 noun2 tverb noun3@@@@1@-1@@olzama@26-dec-2017 +13@unknown@formal@none@1@@cverb noun1 noun2 tverb comp1 noun3@@@@1@-1@@olzama@26-dec-2017 +14@unknown@formal@none@1@@cverb comp1 noun1 noun2 tverb noun3@@@@1@-1@@olzama@26-dec-2017 +15@unknown@formal@none@1@@noun1 cverb noun2@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/parse b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/parse index d8db2333f..54151abe6 100644 --- a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/parse +++ b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/parse @@ -1,15 +1,15 @@ -1@1@1@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@151772@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@129632@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@323764@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@2@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@378032@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@375432@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@281844@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@317856@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@417856@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@199120@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@231836@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@292916@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@268000@-1@-1@-1@23-6-2013 14:28:24@0@ -13@1@13@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@334712@-1@-1@-1@23-6-2013 14:28:24@0@ -14@1@14@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@314072@-1@-1@-1@23-6-2013 14:28:24@0@ -15@1@15@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@115912@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@5@9@-1@-1@-1@-1@-1@-1@-1@177@17@-1@-1@267456@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@7@-1@-1@-1@-1@-1@-1@-1@345@42@-1@-1@190724@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@17@14@-1@-1@-1@-1@-1@-1@-1@396@79@-1@-1@640448@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@2@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@21@17@-1@-1@-1@-1@-1@-1@-1@723@138@-1@-1@780992@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@21@16@-1@-1@-1@-1@-1@-1@-1@1140@197@-1@-1@759672@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@14@-1@-1@-1@-1@-1@-1@-1@1540@244@-1@-1@528648@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@14@16@-1@-1@-1@-1@-1@-1@-1@1841@293@-1@-1@614472@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@23@18@-1@-1@-1@-1@-1@-1@-1@2252@356@-1@-1@784912@-1@-1@-1@@@ +9@0@9@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@12@-1@-1@-1@-1@-1@-1@-1@2635@396@-1@-1@278604@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@14@-1@-1@-1@-1@-1@-1@-1@2673@428@-1@-1@334168@-1@-1@-1@@@ +11@0@11@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@18@14@-1@-1@-1@-1@-1@-1@-1@2720@467@-1@-1@439168@-1@-1@-1@@@ +12@0@12@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@12@-1@-1@-1@-1@-1@-1@-1@2757@499@-1@-1@372836@-1@-1@-1@@@ +13@0@13@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@19@14@-1@-1@-1@-1@-1@-1@-1@2805@539@-1@-1@453100@-1@-1@-1@@@ +14@0@14@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@19@14@-1@-1@-1@-1@-1@-1@-1@2851@579@-1@-1@457100@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@2869@594@-1@-1@165964@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/result b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/result index 4dad6a539..5ffd4a8c3 100644 --- a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/result +++ b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/result @@ -1,14 +1,14 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(36 comp-head 0.000000 0 3 (33 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (35 subj-head 0.000000 1 3 (34 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(40 subj-head 0.000000 0 3 (37 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (39 comp-head 0.000000 1 3 (38 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(71 subj-head 0.000000 0 5 (65 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (70 comp-head 0.000000 1 5 (69 subj-head 0.000000 1 4 (66 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (68 comp-head 0.000000 2 4 (67 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (9 tverb 0.000000 3 4 ("tverb")))) (10 cverb 0.000000 4 5 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < e2 info-str e19 > ] @ -3@1@-1@-1@-1@-1@-1@-1@-1@-1@(77 subj-head 0.000000 0 5 (65 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (76 comp-head 0.000000 1 5 (75 comp-head 0.000000 1 4 (72 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (74 subj-head 0.000000 2 4 (73 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (9 tverb 0.000000 3 4 ("tverb")))) (10 cverb 0.000000 4 5 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ARG2: x9 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < e2 info-str e19 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(93 subj-head 0.000000 0 6 (80 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (86 comp-head 0.000000 1 6 (85 head-comp-cmpl 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (84 subj-head 0.000000 2 5 (81 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (83 comp-head 0.000000 3 5 (82 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb"))))) (12 cverb 0.000000 5 6 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ] @ -4@1@-1@-1@-1@-1@-1@-1@-1@-1@(94 subj-head 0.000000 0 6 (80 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (92 comp-head 0.000000 1 6 (91 head-comp-cmpl 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (90 comp-head 0.000000 2 5 (87 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (89 subj-head 0.000000 3 5 (88 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb"))))) (12 cverb 0.000000 5 6 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ARG2: x9 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(91 subj-head 0.000000 0 6 (78 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (84 comp-head 0.000000 1 6 (83 comp-head 0.000000 1 5 (82 subj-head 0.000000 1 4 (79 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (81 comp-head 0.000000 2 4 (80 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comps1_complementizer1 0.000000 4 5 ("comp1"))) (12 cverb 0.000000 5 6 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ] @ -5@1@-1@-1@-1@-1@-1@-1@-1@-1@(92 subj-head 0.000000 0 6 (78 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (90 comp-head 0.000000 1 6 (89 comp-head 0.000000 1 5 (88 comp-head 0.000000 1 4 (85 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (87 subj-head 0.000000 2 4 (86 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comps1_complementizer1 0.000000 4 5 ("comp1"))) (12 cverb 0.000000 5 6 ("cverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ARG2: x9 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 subj-head 0.000000 0 5 (61 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (66 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (65 subj-head 0.000000 2 5 (62 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (64 comp-head 0.000000 3 5 (63 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -6@1@-1@-1@-1@-1@-1@-1@-1@-1@(73 subj-head 0.000000 0 5 (61 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (72 head-comp 0.000000 1 5 (7 cverb 0.000000 1 2 ("cverb")) (71 comp-head 0.000000 2 5 (68 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (70 subj-head 0.000000 3 5 (69 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(85 subj-head 0.000000 0 6 (72 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (78 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (77 head-comp-cmpl 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (76 subj-head 0.000000 3 6 (73 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (75 comp-head 0.000000 4 6 (74 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -7@1@-1@-1@-1@-1@-1@-1@-1@-1@(86 subj-head 0.000000 0 6 (72 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (84 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (83 head-comp-cmpl 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (82 comp-head 0.000000 3 6 (79 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (81 subj-head 0.000000 4 6 (80 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(100 subj-head 0.000000 0 6 (87 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (93 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (92 comp-head 0.000000 2 6 (91 subj-head 0.000000 2 5 (88 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (90 comp-head 0.000000 3 5 (89 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ -8@1@-1@-1@-1@-1@-1@-1@-1@-1@(101 subj-head 0.000000 0 6 (87 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (99 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (98 comp-head 0.000000 2 6 (97 comp-head 0.000000 2 5 (94 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (96 subj-head 0.000000 3 5 (95 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 comp-head 0.000000 0 3 (30 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (32 subj-head 0.000000 1 3 (31 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(37 subj-head 0.000000 0 3 (34 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (36 comp-head 0.000000 1 3 (35 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 subj-head 0.000000 0 5 (60 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (65 comp-head 0.000000 1 5 (64 subj-head 0.000000 1 4 (61 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (63 comp-head 0.000000 2 4 (62 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (9 tverb 0.000000 3 4 ("tverb")))) (10 cverb 0.000000 4 5 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(72 subj-head 0.000000 0 5 (60 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (71 comp-head 0.000000 1 5 (70 comp-head 0.000000 1 4 (67 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (69 subj-head 0.000000 2 4 (68 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (9 tverb 0.000000 3 4 ("tverb")))) (10 cverb 0.000000 4 5 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ARG2: x9 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(87 subj-head 0.000000 0 6 (74 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (80 comp-head 0.000000 1 6 (79 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (78 subj-head 0.000000 2 5 (75 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (77 comp-head 0.000000 3 5 (76 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb"))))) (12 cverb 0.000000 5 6 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(88 subj-head 0.000000 0 6 (74 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (86 comp-head 0.000000 1 6 (85 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (84 comp-head 0.000000 2 5 (81 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (83 subj-head 0.000000 3 5 (82 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb"))))) (12 cverb 0.000000 5 6 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ARG2: x9 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(85 subj-head 0.000000 0 6 (72 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (78 comp-head 0.000000 1 6 (77 comp-head 0.000000 1 5 (76 subj-head 0.000000 1 4 (73 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (75 comp-head 0.000000 2 4 (74 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comp1 0.000000 4 5 ("comp1"))) (12 cverb 0.000000 5 6 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@1@-1@-1@-1@-1@-1@-1@-1@-1@(86 subj-head 0.000000 0 6 (72 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (84 comp-head 0.000000 1 6 (83 comp-head 0.000000 1 5 (82 comp-head 0.000000 1 4 (79 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (81 subj-head 0.000000 2 4 (80 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comp1 0.000000 4 5 ("comp1"))) (12 cverb 0.000000 5 6 ("cverb"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("CP" ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))) ("V" ("cverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ARG2: x9 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(61 head-comp 0.000000 0 5 (56 subj-head 0.000000 0 2 (55 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (7 cverb 0.000000 1 2 ("cverb"))) (60 subj-head 0.000000 2 5 (57 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (59 comp-head 0.000000 3 5 (58 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb")))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-comp 0.000000 0 5 (56 subj-head 0.000000 0 2 (55 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (7 cverb 0.000000 1 2 ("cverb"))) (65 comp-head 0.000000 2 5 (62 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (64 subj-head 0.000000 3 5 (63 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2"))) (10 tverb 0.000000 4 5 ("tverb")))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(72 head-comp 0.000000 0 6 (66 subj-head 0.000000 0 2 (65 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (71 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (70 subj-head 0.000000 3 6 (67 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (69 comp-head 0.000000 4 6 (68 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb"))))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(78 head-comp 0.000000 0 6 (66 subj-head 0.000000 0 2 (65 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (77 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (76 comp-head 0.000000 3 6 (73 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (75 subj-head 0.000000 4 6 (74 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb"))))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(84 head-comp 0.000000 0 6 (78 subj-head 0.000000 0 2 (77 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (83 comp-head 0.000000 2 6 (82 subj-head 0.000000 2 5 (79 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (81 comp-head 0.000000 3 5 (80 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(90 head-comp 0.000000 0 6 (78 subj-head 0.000000 0 2 (77 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (8 cverb 0.000000 1 2 ("cverb"))) (89 comp-head 0.000000 2 6 (88 comp-head 0.000000 2 5 (85 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (87 subj-head 0.000000 3 5 (86 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("NP" ("N" ("noun3"))) ("V" ("cverb"))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("V" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/run b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/run index cd52e9b6c..8543dd7c7 100644 --- a/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/run +++ b/tests/regression/home/gold/ccomp-pseudo39-vfin-extra-same-opt-bef-aft/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1399@-1@-1@6@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@15@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1473@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 13:33:46@26-aug-2020 13:33:46@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/item b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/item index 23710f0e9..1805803f5 100644 --- a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/item +++ b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/item @@ -1,9 +1,9 @@ -1@unknown@formal@none@1@S@noun1 tverb noun2@@@@@@@olzama@2017-12-21 -2@unknown@formal@none@1@@noun1 noun2 tverb@@@@@@@olzama@2017-12-21 -3@unknown@formal@none@1@@tverb noun1 noun2@@@@@@@olzama@2017-12-21 -4@unknown@formal@none@1@S@cverb noun1 comp1 noun1 tverb noun2@@@@@@@olzama@2017-12-21 -5@unknown@formal@none@1@S@cverb noun1 noun1 tverb noun2@@@@@@@olzama@2017-12-21 -6@unknown@formal@none@1@S@cverb noun1 noun1 tverb noun2 comp1@@@@@@@olzama@2017-12-21 -7@unknown@formal@none@1@@comp1 noun1 tverb noun2 noun1 cverb@@@@@@@olzama@2017-12-21 -8@unknown@formal@none@1@@noun1 comp1 noun1 tverb noun2 cverb@@@@@@@olzama@2017-12-21 -9@unknown@formal@none@1@@comp1 noun1 tverb noun2 cverb noun1@@@@@@@olzama@2017-12-21 +1@unknown@formal@none@1@S@noun1 tverb noun2@@@@1@-1@@olzama@21-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb@@@@1@-1@@olzama@21-dec-2017 +3@unknown@formal@none@1@@tverb noun1 noun2@@@@1@-1@@olzama@21-dec-2017 +4@unknown@formal@none@1@S@cverb noun1 comp1 noun1 tverb noun2@@@@1@-1@@olzama@21-dec-2017 +5@unknown@formal@none@1@S@cverb noun1 noun1 tverb noun2@@@@1@-1@@olzama@21-dec-2017 +6@unknown@formal@none@1@S@cverb noun1 noun1 tverb noun2 comp1@@@@1@-1@@olzama@21-dec-2017 +7@unknown@formal@none@1@@comp1 noun1 tverb noun2 noun1 cverb@@@@1@-1@@olzama@21-dec-2017 +8@unknown@formal@none@1@@noun1 comp1 noun1 tverb noun2 cverb@@@@1@-1@@olzama@21-dec-2017 +9@unknown@formal@none@1@@comp1 noun1 tverb noun2 cverb noun1@@@@1@-1@@olzama@21-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/parse b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/parse index 1e7b2b3f1..9dc03e188 100644 --- a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/parse +++ b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/parse @@ -1,9 +1,9 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@94724@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@73160@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@81000@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@207192@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@181580@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@235872@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@180680@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@180680@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@181240@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@168@11@-1@-1@156824@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@5@-1@-1@-1@-1@-1@-1@-1@249@24@-1@-1@95148@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@6@-1@-1@-1@-1@-1@-1@-1@261@35@-1@-1@111628@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun2", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@6@14@-1@-1@-1@-1@-1@-1@-1@291@61@-1@-1@384184@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@12@-1@-1@-1@-1@-1@-1@-1@491@91@-1@-1@327360@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@9@16@-1@-1@-1@-1@-1@-1@-1@655@129@-1@-1@447824@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@12@-1@-1@-1@-1@-1@-1@-1@861@162@-1@-1@263316@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@12@-1@-1@-1@-1@-1@-1@-1@890@187@-1@-1@263316@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@13@-1@-1@-1@-1@-1@-1@-1@923@213@-1@-1@267236@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/result b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/result index 399e680ec..7a4f777b0 100644 --- a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/result +++ b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/result @@ -1,4 +1,4 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 comp-head 0.000000 0 3 (27 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (29 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (28 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 head-comp-verb 0.000000 0 6 (61 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (60 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (66 head-comp-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (65 comp-head 0.000000 3 6 (62 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (64 head-subj 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (63 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h14 h7 qeq h5 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(56 head-comp-verb 0.000000 0 5 (51 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (50 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (55 comp-head 0.000000 2 5 (52 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (54 head-subj 0.000000 3 5 (9 tverb 0.000000 3 4 ("tverb")) (53 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h14 h7 qeq h5 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(72 head-comp-verb 0.000000 0 6 (66 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (65 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (71 comp-head 0.000000 2 6 (70 comp-head 0.000000 2 5 (67 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (69 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (68 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))))) (12 comps1_complementizer1 0.000000 5 6 ("comp1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h14 h7 qeq h5 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(27 comp-head 0.000000 0 3 (24 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (26 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (25 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(61 head-comp 0.000000 0 6 (55 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (54 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (60 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (59 comp-head 0.000000 3 6 (56 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (58 head-subj 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (57 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2")))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(51 head-comp 0.000000 0 5 (46 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (45 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (50 comp-head 0.000000 2 5 (47 bare-np 0.000000 2 3 (8 noun1 0.000000 2 3 ("noun1"))) (49 head-subj 0.000000 3 5 (9 tverb 0.000000 3 4 ("tverb")) (48 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-comp 0.000000 0 6 (60 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (59 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (65 comp-head 0.000000 2 6 (64 comp-head 0.000000 2 5 (61 bare-np 0.000000 2 3 (9 noun1 0.000000 2 3 ("noun1"))) (63 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (62 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun2"))))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/run b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/run index 7a4ca422a..07d1878f0 100644 --- a/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/run +++ b/tests/regression/home/gold/ccomp-pseudo4-ovs-extra-opt-bef-aft/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1400@-1@-1@6@1@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@9@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1474@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 13:46:15@26-aug-2020 13:46:16@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/item b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/item index 489432f2b..6271357b7 100644 --- a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/item +++ b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/item @@ -1,5 +1,5 @@ -1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@S@cverb-FIN noun1 tverb-NFIN noun2 noun3@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@@cverb-FIN noun1 tverb-FIN noun2 noun3@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@@cverb-FIN tverb-NFIN noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@@cverb-NFIN noun1 tverb-NFIN noun2 noun3@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@S@cverb-FIN noun1 tverb-NFIN noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@@cverb-FIN noun1 tverb-FIN noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@@cverb-FIN tverb-NFIN noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@@cverb-NFIN noun1 tverb-NFIN noun2 noun3@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/parse b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/parse index 78513012f..2620f96be 100644 --- a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/parse +++ b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/parse @@ -1,5 +1,5 @@ -1@1@1@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@116580@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@186704@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@117432@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@112852@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@119888@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@249@14@-1@-1@235952@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:26>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:26>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@3@14@-1@-1@-1@-1@-1@-1@-1@447@47@-1@-1@428848@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@13@-1@-1@-1@-1@-1@-1@-1@773@83@-1@-1@187668@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:32>, 1, "noun3", 0, "null") (5, 4, 5, <33:38>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:32>, 1, "noun3", 0, "null") (5, 4, 5, <33:38>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@12@-1@-1@-1@-1@-1@-1@-1@794@102@-1@-1@173316@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:27>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <28:33>, 1, "noun2", 0, "null") (5, 4, 5, <34:39>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:27>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <28:33>, 1, "noun2", 0, "null") (5, 4, 5, <34:39>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@14@-1@-1@-1@-1@-1@-1@-1@820@125@-1@-1@213684@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/result b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/result index feb2d19fe..1c5773197 100644 --- a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/result +++ b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/result @@ -1,4 +1,4 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 head-comp 0.000000 0 3 (31 head-subj 0.000000 0 2 (29 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (30 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (32 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(38 head-subj 0.000000 0 3 (36 head-comp 0.000000 0 2 (34 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (35 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (37 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(56 head-comp-ccomp 0.000000 0 5 (50 head-subj 0.000000 0 2 (48 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (49 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (55 head-subj 0.000000 2 5 (53 head-comp 0.000000 2 4 (51 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (52 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (54 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -2@1@-1@-1@-1@-1@-1@-1@-1@-1@(62 head-comp-ccomp 0.000000 0 5 (50 head-subj 0.000000 0 2 (48 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (49 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (61 head-comp 0.000000 2 5 (59 head-subj 0.000000 2 4 (57 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (58 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (60 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 head-comp 0.000000 0 3 (31 head-subj 0.000000 0 2 (29 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (30 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (32 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(38 head-subj 0.000000 0 3 (36 head-comp 0.000000 0 2 (34 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (35 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (37 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(56 head-comp-ccomp 0.000000 0 5 (50 head-subj 0.000000 0 2 (48 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (49 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (55 head-subj 0.000000 2 5 (53 head-comp 0.000000 2 4 (51 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (52 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (54 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("V" ("cverb-FIN"))) ("NP" ("N" ("noun1")))) ("S" ("VP" ("V" ("V" ("tverb-NFIN"))) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@1@-1@-1@-1@-1@-1@-1@-1@-1@(62 head-comp-ccomp 0.000000 0 5 (50 head-subj 0.000000 0 2 (48 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (49 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (61 head-comp 0.000000 2 5 (59 head-subj 0.000000 2 4 (57 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (58 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (60 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("V" ("cverb-FIN"))) ("NP" ("N" ("noun1")))) ("S" ("V" ("V" ("V" ("tverb-NFIN"))) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/run b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/run index b5699f439..12138ed65 100644 --- a/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/run +++ b/tests/regression/home/gold/ccomp-pseudo41-vin-extra-feat/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1402@-1@-1@5@2@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@5@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1478@-1@-1@5@2@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 13:48:57@26-aug-2020 13:48:57@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/item b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/item index f16f8f8e3..924f3d49d 100644 --- a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/item +++ b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/item @@ -1,5 +1,5 @@ -1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@S@cverb-FIN noun1 tverb-NFIN noun2 noun3@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@@cverb-FIN noun1 tverb-FIN noun2 noun3@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@@cverb-FIN tverb-NFIN noun2 noun3 noun1@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@@cverb-NFIN tverb-NFIN noun2 noun3 noun1@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@S@cverb-FIN noun1 tverb-NFIN noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@@cverb-FIN noun1 tverb-FIN noun2 noun3@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@@cverb-FIN tverb-NFIN noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@@cverb-NFIN tverb-NFIN noun2 noun3 noun1@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/parse b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/parse index ddd3073e8..7c97bfb56 100644 --- a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/parse +++ b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/parse @@ -1,5 +1,5 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@83132@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@148600@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@106840@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@102252@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@102292@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@0@7@-1@-1@-1@-1@-1@-1@-1@284@10@-1@-1@147632@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:26>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:26>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@12@-1@-1@-1@-1@-1@-1@-1@392@33@-1@-1@292872@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@11@-1@-1@-1@-1@-1@-1@-1@567@59@-1@-1@157524@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:32>, 1, "noun3", 0, "null") (5, 4, 5, <33:38>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:32>, 1, "noun3", 0, "null") (5, 4, 5, <33:38>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@10@-1@-1@-1@-1@-1@-1@-1@584@74@-1@-1@143148@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:21>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <22:27>, 1, "noun2", 0, "null") (4, 3, 4, <28:33>, 1, "noun3", 0, "null") (5, 4, 5, <34:39>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:21>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <22:27>, 1, "noun2", 0, "null") (4, 3, 4, <28:33>, 1, "noun3", 0, "null") (5, 4, 5, <34:39>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@10@-1@-1@-1@-1@-1@-1@-1@601@89@-1@-1@143156@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/result b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/result index 336ff1d15..9ce9108a6 100644 --- a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/result +++ b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 head-subj 0.000000 0 3 (29 head-comp 0.000000 0 2 (27 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (28 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (30 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp-ccomp 0.000000 0 5 (49 head-subj-ccomp 0.000000 0 2 (47 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (48 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (54 head-subj 0.000000 2 5 (52 head-comp 0.000000 2 4 (50 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (51 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (53 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 head-subj 0.000000 0 3 (29 head-comp 0.000000 0 2 (27 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (28 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (30 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp-ccomp 0.000000 0 5 (49 head-subj-ccomp 0.000000 0 2 (47 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (48 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (54 head-subj 0.000000 2 5 (52 head-comp 0.000000 2 4 (50 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (51 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (53 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("V" ("cverb-FIN"))) ("NP" ("N" ("noun1")))) ("S" ("VP" ("V" ("V" ("tverb-NFIN"))) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/run b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/run index 1e8105283..f10d0e332 100644 --- a/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/run +++ b/tests/regression/home/gold/ccomp-pseudo42-vos-extra-feat/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1404@-1@-1@5@2@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@5@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1480@-1@-1@5@2@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 13:50:08@26-aug-2020 13:50:08@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/item b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/item index 701fcb187..2ec10c163 100644 --- a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/item +++ b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/item @@ -1,5 +1,5 @@ -1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@@@@olzama@2017-12-27 -2@unknown@formal@none@1@S@cverb-FIN noun1 tverb-NFIN noun2 noun3@@@@@@@olzama@2017-12-27 -3@unknown@formal@none@1@@cverb-FIN noun1 tverb-FIN noun2 noun3@@@@@@@olzama@2017-12-27 -4@unknown@formal@none@1@S@cverb-FIN tverb-NFIN noun2 noun3 noun1@@@@@@@olzama@2017-12-27 -5@unknown@formal@none@1@@cverb-NFIN tverb-NFIN noun2 noun3 noun1@@@@@@@olzama@2017-12-27 +1@unknown@formal@none@1@S@tverb-FIN noun1 noun2@@@@1@-1@@olzama@27-dec-2017 +2@unknown@formal@none@1@S@cverb-FIN noun1 tverb-NFIN noun2 noun3@@@@1@-1@@olzama@27-dec-2017 +3@unknown@formal@none@1@@cverb-FIN noun1 tverb-FIN noun2 noun3@@@@1@-1@@olzama@27-dec-2017 +4@unknown@formal@none@1@S@cverb-FIN tverb-NFIN noun2 noun3 noun1@@@@1@-1@@olzama@27-dec-2017 +5@unknown@formal@none@1@@cverb-NFIN tverb-NFIN noun2 noun3 noun1@@@@1@-1@@olzama@27-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/parse b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/parse index 3a874782c..c4c4b9b07 100644 --- a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/parse +++ b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/parse @@ -1,5 +1,5 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@83004@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@152472@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@110712@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@155032@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@114184@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:9>, 1, "tverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@0@7@-1@-1@-1@-1@-1@-1@-1@284@10@-1@-1@147648@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:26>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:26>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <27:32>, 1, "noun2", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@2@12@-1@-1@-1@-1@-1@-1@-1@392@34@-1@-1@300928@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:25>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <26:31>, 1, "noun2", 0, "null") (5, 4, 5, <32:37>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@11@-1@-1@-1@-1@-1@-1@-1@567@61@-1@-1@165260@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:32>, 1, "noun3", 0, "null") (5, 4, 5, <33:38>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:9>, 1, "cverb-FIN", 0, "null") (2, 1, 2, <10:20>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:32>, 1, "noun3", 0, "null") (5, 4, 5, <33:38>, 1, "noun1", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@2@12@-1@-1@-1@-1@-1@-1@-1@587@80@-1@-1@322968@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:21>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <22:27>, 1, "noun2", 0, "null") (4, 3, 4, <28:33>, 1, "noun3", 0, "null") (5, 4, 5, <34:39>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:10>, 1, "cverb-NFIN", 0, "null") (2, 1, 2, <11:21>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <22:27>, 1, "noun2", 0, "null") (4, 3, 4, <28:33>, 1, "noun3", 0, "null") (5, 4, 5, <34:39>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@12@-1@-1@-1@-1@-1@-1@-1@767@108@-1@-1@188276@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/result b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/result index 0894033de..173bd6af6 100644 --- a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/result +++ b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(29 head-subj 0.000000 0 3 (27 head-comp 0.000000 0 2 (25 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (26 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (28 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(52 head-comp 0.000000 0 5 (46 head-subj-ccomp 0.000000 0 2 (44 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (45 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (51 head-subj 0.000000 2 5 (49 head-comp 0.000000 2 4 (47 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (48 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (50 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(52 head-subj 0.000000 0 5 (50 head-comp 0.000000 0 4 (44 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (49 head-subj 0.000000 1 4 (47 head-comp 0.000000 1 3 (45 nfin-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NFIN"))) (46 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (48 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (51 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 head-subj 0.000000 0 3 (29 head-comp 0.000000 0 2 (27 fin-suffix 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb-FIN"))) (28 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (30 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(56 head-comp-ccomp 0.000000 0 5 (50 head-subj-ccomp 0.000000 0 2 (48 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (49 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1")))) (55 head-subj 0.000000 2 5 (53 head-comp 0.000000 2 4 (51 nfin-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NFIN"))) (52 bare-np 0.000000 3 4 (9 noun2 0.000000 3 4 ("noun2")))) (54 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("V" ("V" ("V" ("cverb-FIN"))) ("NP" ("N" ("noun1")))) ("S" ("VP" ("V" ("V" ("tverb-NFIN"))) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(56 head-subj 0.000000 0 5 (54 head-comp 0.000000 0 4 (48 fin-suffix 0.000000 0 1 (6 cverb 0.000000 0 1 ("cverb-FIN"))) (53 head-subj 0.000000 1 4 (51 head-comp 0.000000 1 3 (49 nfin-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NFIN"))) (50 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (52 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3"))))) (55 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@@("S" ("VP" ("V" ("V" ("cverb-FIN"))) ("S" ("VP" ("V" ("V" ("tverb-NFIN"))) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/run b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/run index b5699f439..b3dceac91 100644 --- a/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/run +++ b/tests/regression/home/gold/ccomp-pseudo43-vos-same-extra-feat/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1402@-1@-1@5@2@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@5@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1480@-1@-1@5@2@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 13:55:42@26-aug-2020 13:55:42@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/item b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/item index 45e3deb4a..121274942 100644 --- a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/item +++ b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/item @@ -1,8 +1,8 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-28 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-28 -3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb comp1 cverb1@@@@@@@olzama@2017-12-28 -4@unknown@formal@none@1@@noun3 comp1 noun1 noun2 tverb cverb1@@@@@@@olzama@2017-12-28 -5@unknown@formal@none@1@@noun3 cverb noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-28 -6@unknown@formal@none@1@S@noun3 cverb2 comp2 noun1 noun2 tverb@@@@@@@olzama@2017-12-28 -7@unknown@formal@none@1@@noun3 cverb2 noun1 noun2 tverb comp2@@@@@@@olzama@2017-12-28 -8@unknown@formal@none@1@@noun3 comp2 noun1 noun2 tverb cverb2@@@@@@@olzama@2017-12-28 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@28-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@28-dec-2017 +3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb comp1 cverb1@@@@1@-1@@olzama@28-dec-2017 +4@unknown@formal@none@1@@noun3 comp1 noun1 noun2 tverb cverb1@@@@1@-1@@olzama@28-dec-2017 +5@unknown@formal@none@1@@noun3 cverb noun1 noun2 tverb comp1@@@@1@-1@@olzama@28-dec-2017 +6@unknown@formal@none@1@S@noun3 cverb2 comp2 noun1 noun2 tverb@@@@1@-1@@olzama@28-dec-2017 +7@unknown@formal@none@1@@noun3 cverb2 noun1 noun2 tverb comp2@@@@1@-1@@olzama@28-dec-2017 +8@unknown@formal@none@1@@noun3 comp2 noun1 noun2 tverb cverb2@@@@1@-1@@olzama@28-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/parse b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/parse index 03d8b721c..119310f32 100644 --- a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/parse +++ b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/parse @@ -1,8 +1,8 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@128268@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@111224@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@304076@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@247424@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@54848@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@263980@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@253344@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@267224@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@1@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@173@15@-1@-1@202904@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@6@-1@-1@-1@-1@-1@-1@-1@265@33@-1@-1@156188@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@1@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@16@14@-1@-1@-1@-1@-1@-1@-1@309@69@-1@-1@544752@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@11@-1@-1@-1@-1@-1@-1@-1@534@108@-1@-1@352964@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@539@113@-1@-1@65612@-1@-1@-1@@post-reduction lexical gap@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:12>, 1, "cverb2", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:12>, 1, "cverb2", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "tverb", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@14@-1@-1@-1@-1@-1@-1@-1@577@145@-1@-1@475592@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:12>, 1, "cverb2", 0, "null") (3, 2, 3, <13:18>, 1, "noun1", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "tverb", 0, "null") (6, 5, 6, <31:36>, 1, "comp2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:12>, 1, "cverb2", 0, "null") (3, 2, 3, <13:18>, 1, "noun1", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "tverb", 0, "null") (6, 5, 6, <31:36>, 1, "comp2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@11@-1@-1@-1@-1@-1@-1@-1@802@185@-1@-1@363320@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp2", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:36>, 1, "cverb2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp2", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:36>, 1, "cverb2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@12@-1@-1@-1@-1@-1@-1@-1@846@220@-1@-1@394724@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/result b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/result index c0aa5f520..d58aa855a 100644 --- a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/result +++ b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(32 subj-head 0.000000 0 3 (29 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (31 comp-head 0.000000 1 3 (30 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(72 subj-head 0.000000 0 6 (65 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (71 comp-head 0.000000 1 6 (70 comp-head 0.000000 1 5 (69 subj-head 0.000000 1 4 (66 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (68 comp-head 0.000000 2 4 (67 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comps1_complementizer1 0.000000 4 5 ("comp1"))) (12 cverb1 0.000000 5 6 ("cverb1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 subj-head 0.000000 0 6 (61 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (67 head-comp 0.000000 1 6 (8 cverb2 0.000000 1 2 ("cverb2")) (66 head-comp 0.000000 2 6 (9 comps2_complementizer1 0.000000 2 3 ("comp2")) (65 subj-head 0.000000 3 6 (62 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (64 comp-head 0.000000 4 6 (63 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 subj-head 0.000000 0 3 (28 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (30 comp-head 0.000000 1 3 (29 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(71 subj-head 0.000000 0 6 (64 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (70 comp-head 0.000000 1 6 (69 comp-head 0.000000 1 5 (68 subj-head 0.000000 1 4 (65 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (67 comp-head 0.000000 2 4 (66 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (10 tverb 0.000000 3 4 ("tverb")))) (11 comp1 0.000000 4 5 ("comp1"))) (12 cverb1 0.000000 5 6 ("cverb1"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("CP" ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))) ("C" ("comp1"))) ("V" ("cverb1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 subj-head 0.000000 0 6 (60 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (66 head-comp 0.000000 1 6 (8 cverb2 0.000000 1 2 ("cverb2")) (65 head-comp 0.000000 2 6 (9 comp2 0.000000 2 3 ("comp2")) (64 subj-head 0.000000 3 6 (61 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (63 comp-head 0.000000 4 6 (62 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("cverb2")) ("CP" ("C" ("comp2")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/run b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/run index eb7f80f1b..e5087070b 100644 --- a/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/run +++ b/tests/regression/home/gold/ccomp-pseudo44-2-2complementizers/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1400@-1@-1@8@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@8@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1476@-1@-1@8@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 13:57:31@26-aug-2020 13:57:31@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/item b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/item index dc0497708..e323b68b9 100644 --- a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/item +++ b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/item @@ -1,10 +1,10 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-28 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-28 -3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb-NMZ cverb2@@@@@@@olzama@2017-12-28 -4@unknown@formal@none@1@S@noun3 cverb1 comp1 noun1 noun2 tverb@@@@@@@olzama@2017-12-28 -5@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NMZ comp1 cverb1@@@@@@@olzama@2017-12-28 -6@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NMZ comp1 cverb2@@@@@@@olzama@2017-12-28 -7@unknown@formal@none@1@@noun3 noun1 noun2 tverb comp1 cverb1@@@@@@@olzama@2017-12-28 -8@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NMZ cverb1@@@@@@@olzama@2017-12-28 -9@unknown@formal@none@1@@noun3 comp1 noun1 noun2 tverb cverb1@@@@@@@olzama@2017-12-28 -10@unknown@formal@none@1@@noun3 cverb noun1 noun2 tverb comp1@@@@@@@olzama@2017-12-28 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@28-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@28-dec-2017 +3@unknown@formal@none@1@S@noun3 noun1 noun2 tverb-NMZ cverb2@@@@1@-1@@olzama@28-dec-2017 +4@unknown@formal@none@1@S@noun3 cverb1 comp1 noun1 noun2 tverb@@@@1@-1@@olzama@28-dec-2017 +5@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NMZ comp1 cverb1@@@@1@-1@@olzama@28-dec-2017 +6@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NMZ comp1 cverb2@@@@1@-1@@olzama@28-dec-2017 +7@unknown@formal@none@1@@noun3 noun1 noun2 tverb comp1 cverb1@@@@1@-1@@olzama@28-dec-2017 +8@unknown@formal@none@1@@noun3 noun1 noun2 tverb-NMZ cverb1@@@@1@-1@@olzama@28-dec-2017 +9@unknown@formal@none@1@@noun3 comp1 noun1 noun2 tverb cverb1@@@@1@-1@@olzama@28-dec-2017 +10@unknown@formal@none@1@@noun3 cverb noun1 noun2 tverb comp1@@@@1@-1@@olzama@28-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/parse b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/parse index c75c356f8..4819c2a67 100644 --- a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/parse +++ b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/parse @@ -1,10 +1,10 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@147500@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@141736@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@413416@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@314132@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@396256@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@396256@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@318576@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@355936@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@343136@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@56160@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@1@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@7@7@-1@-1@-1@-1@-1@-1@-1@293@17@-1@-1@228440@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@6@-1@-1@-1@-1@-1@-1@-1@389@38@-1@-1@200964@-1@-1@-1@@@ +3@0@3@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:34>, 1, "cverb2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:34>, 1, "cverb2", 0, "null")@1@-1@7@7@-1@8@-1@-1@-1@-1@-1@-1@28@15@-1@-1@-1@-1@-1@-1@-1@446@86@-1@-1@695312@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:12>, 1, "cverb1", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:12>, 1, "cverb1", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "tverb", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@17@14@-1@-1@-1@-1@-1@-1@-1@635@133@-1@-1@542928@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:33>, 1, "comp1", 0, "null") (6, 5, 6, <34:40>, 1, "cverb1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:33>, 1, "comp1", 0, "null") (6, 5, 6, <34:40>, 1, "cverb1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@31@14@-1@-1@-1@-1@-1@-1@-1@880@192@-1@-1@573876@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:33>, 1, "comp1", 0, "null") (6, 5, 6, <34:40>, 1, "cverb2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:33>, 1, "comp1", 0, "null") (6, 5, 6, <34:40>, 1, "cverb2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@31@14@-1@-1@-1@-1@-1@-1@-1@940@243@-1@-1@574156@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@22@11@-1@-1@-1@-1@-1@-1@-1@987@282@-1@-1@457180@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:34>, 1, "cverb1", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:27>, 1, "tverb-NMZ", 0, "null") (5, 4, 5, <28:34>, 1, "cverb1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@28@13@-1@-1@-1@-1@-1@-1@-1@1041@328@-1@-1@519660@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:36>, 1, "cverb1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@25@12@-1@-1@-1@-1@-1@-1@-1@1094@371@-1@-1@507220@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun3", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1099@376@-1@-1@66676@-1@-1@-1@@post-reduction lexical gap@ diff --git a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/result b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/result index 52f52f6aa..7bbdb9b16 100644 --- a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/result +++ b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(39 subj-head 0.000000 0 3 (36 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (38 comp-head 0.000000 1 3 (37 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(90 subj-head 0.000000 0 5 (81 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (89 comp-head 0.000000 1 5 (88 bare-np 0.000000 1 4 (87 non-event-subj-head 0.000000 1 4 (82 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (86 mid-nominalized-clause 0.000000 2 4 (85 comp-head 0.000000 2 4 (83 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (84 mid-suffix 0.000000 3 4 (9 tverb 0.000000 3 4 ("tverb-NMZ"))))))) (10 cverb2 0.000000 4 5 ("cverb2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_tverb_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "nominalized_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG1: h22 ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x21 RSTR: h24 BODY: h25 ] [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h16 qeq h13 h22 qeq h18 h24 qeq h20 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(84 subj-head 0.000000 0 6 (77 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (83 head-comp 0.000000 1 6 (8 cverb1 0.000000 1 2 ("cverb1")) (82 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (81 subj-head 0.000000 3 6 (78 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (80 comp-head 0.000000 4 6 (79 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun3_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun2_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(39 subj-head 0.000000 0 3 (36 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (38 comp-head 0.000000 1 3 (37 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(90 subj-head 0.000000 0 5 (81 bare-np 0.000000 0 1 (6 noun3 0.000000 0 1 ("noun3"))) (89 comp-head 0.000000 1 5 (88 bare-np 0.000000 1 4 (87 non-event-subj-head 0.000000 1 4 (82 bare-np 0.000000 1 2 (7 noun1 0.000000 1 2 ("noun1"))) (86 mid-nominalized-clause 0.000000 2 4 (85 comp-head 0.000000 2 4 (83 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2"))) (84 mid-suffix 0.000000 3 4 (9 tverb 0.000000 3 4 ("tverb-NMZ"))))))) (10 cverb2 0.000000 4 5 ("cverb2"))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("NP" ("N" ("NP" ("N" ("noun1"))) ("N" ("VP" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb-NMZ"))))))) ("V" ("cverb2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x13 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x13 ] [ "nominalized_rel"<-1:-1> LBL: h17 ARG0: x9 ARG1: h18 ] [ "exist_q_rel"<-1:-1> LBL: h19 ARG0: x20 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h21 BODY: h22 ] [ "_noun2_n_rel"<-1:-1> LBL: h23 ARG0: x20 ] [ "_tverb_v_rel"<-1:-1> LBL: h24 ARG0: e25 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x13 ARG2: x20 ] [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h17 h14 qeq h16 h18 qeq h24 h21 qeq h23 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(84 subj-head 0.000000 0 6 (77 bare-np 0.000000 0 1 (7 noun3 0.000000 0 1 ("noun3"))) (83 head-comp 0.000000 1 6 (8 cverb1 0.000000 1 2 ("cverb1")) (82 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (81 subj-head 0.000000 3 6 (78 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1"))) (80 comp-head 0.000000 4 6 (79 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2"))) (12 tverb 0.000000 5 6 ("tverb")))))))@@("S" ("NP" ("N" ("noun3"))) ("VP" ("V" ("cverb1")) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun3_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun2_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/run b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/run index 34183fe2f..eef8ab344 100644 --- a/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/run +++ b/tests/regression/home/gold/ccomp-pseudo45-2-nmz-and-comp/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1409@-1@-1@7@1@6@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@10@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1485@-1@-1@7@1@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 14:02:24@26-aug-2020 14:02:24@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/item b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/item index 8baa48f42..892fd9f9e 100644 --- a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/item +++ b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/item @@ -1,17 +1,17 @@ -1@unknown@formal@none@1@S@noun1 tverb-FIN noun2@@@@@@@olzama@2017-12-28 -2@unknown@formal@none@1@@noun1 tverb-NFIN noun2@@@@@@@olzama@2017-12-28 -3@unknown@formal@none@1@S@cverb1-FIN noun1 comp1 noun2 tverb-FIN noun3@@@@@@@olzama@2017-12-28 -4@unknown@formal@none@1@S@cverb1-FIN noun1 noun2 tverb-FIN noun3 comp1@@@@@@@olzama@2017-12-28 -5@unknown@formal@none@1@S@comp1 noun1 tverb-FIN noun2 cverb1-FIN noun3@@@@@@@olzama@2017-12-28 -6@unknown@formal@none@1@S@noun2 tverb-FIN noun3 comp1 cverb1-FIN noun1@@@@@@@olzama@2017-12-28 -7@unknown@formal@none@1@@noun2 tverb-NFIN noun3 comp1 cverb1-FIN noun1@@@@@@@olzama@2017-12-28 -8@unknown@formal@none@1@@comp1 noun2 tverb-NFIN noun3 cverb1-FIN noun1@@@@@@@olzama@2017-12-28 -9@unknown@formal@none@1@@cverb1-FIN noun1 noun2 tverb-NFIN noun3 comp1@@@@@@@olzama@2017-12-28 -10@unknown@formal@none@1@S@noun1 tverb-NFIN-NMZ noun2 cverb2-FIN noun3@@@@@@@olzama@2017-12-28 -11@unknown@formal@none@1@@noun1 tverb-NFIN-NMZ noun2 cverb2-FIN-NMZ noun3@@@@@@@olzama@2017-12-28 -12@unknown@formal@none@1@@noun1 tverb-FIN-NMZ noun2 cverb2-FIN noun3@@@@@@@olzama@2017-12-28 -13@unknown@formal@none@1@@noun1 tverb-FIN noun2 cverb2-FIN noun3@@@@@@@olzama@2017-12-28 -14@unknown@formal@none@1@@noun1 tverb-NFIN noun2 cverb2-FIN noun3@@@@@@@olzama@2017-12-28 -15@unknown@formal@none@1@@cverb2-FIN noun1 tverb-FIN-NMZ noun2 noun3@@@@@@@olzama@2017-12-28 -16@unknown@formal@none@1@@cverb2-FIN comp1 noun1 tverb-FIN-NMZ noun2 noun3@@@@@@@olzama@2017-12-28 -17@unknown@formal@none@1@@cverb2-FIN comp1 noun1 tverb-FIN noun2 noun3@@@@@@@olzama@2017-12-28 +1@unknown@formal@none@1@S@noun1 tverb-FIN noun2@@@@1@-1@@olzama@28-dec-2017 +2@unknown@formal@none@1@@noun1 tverb-NFIN noun2@@@@1@-1@@olzama@28-dec-2017 +3@unknown@formal@none@1@S@cverb1-FIN noun1 comp1 noun2 tverb-FIN noun3@@@@1@-1@@olzama@28-dec-2017 +4@unknown@formal@none@1@S@cverb1-FIN noun1 noun2 tverb-FIN noun3 comp1@@@@1@-1@@olzama@28-dec-2017 +5@unknown@formal@none@1@S@comp1 noun1 tverb-FIN noun2 cverb1-FIN noun3@@@@1@-1@@olzama@28-dec-2017 +6@unknown@formal@none@1@S@noun2 tverb-FIN noun3 comp1 cverb1-FIN noun1@@@@1@-1@@olzama@28-dec-2017 +7@unknown@formal@none@1@@noun2 tverb-NFIN noun3 comp1 cverb1-FIN noun1@@@@1@-1@@olzama@28-dec-2017 +8@unknown@formal@none@1@@comp1 noun2 tverb-NFIN noun3 cverb1-FIN noun1@@@@1@-1@@olzama@28-dec-2017 +9@unknown@formal@none@1@@cverb1-FIN noun1 noun2 tverb-NFIN noun3 comp1@@@@1@-1@@olzama@28-dec-2017 +10@unknown@formal@none@1@S@noun1 tverb-NFIN-NMZ noun2 cverb2-FIN noun3@@@@1@-1@@olzama@28-dec-2017 +11@unknown@formal@none@1@@noun1 tverb-NFIN-NMZ noun2 cverb2-FIN-NMZ noun3@@@@1@-1@@olzama@28-dec-2017 +12@unknown@formal@none@1@@noun1 tverb-FIN-NMZ noun2 cverb2-FIN noun3@@@@1@-1@@olzama@28-dec-2017 +13@unknown@formal@none@1@@noun1 tverb-FIN noun2 cverb2-FIN noun3@@@@1@-1@@olzama@28-dec-2017 +14@unknown@formal@none@1@@noun1 tverb-NFIN noun2 cverb2-FIN noun3@@@@1@-1@@olzama@28-dec-2017 +15@unknown@formal@none@1@@cverb2-FIN noun1 tverb-FIN-NMZ noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +16@unknown@formal@none@1@@cverb2-FIN comp1 noun1 tverb-FIN-NMZ noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +17@unknown@formal@none@1@@cverb2-FIN comp1 noun1 tverb-FIN noun2 noun3@@@@1@-1@@olzama@28-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/parse b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/parse index c91cf676e..d68540a89 100644 --- a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/parse +++ b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/parse @@ -1,17 +1,17 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@106372@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@82848@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@230892@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@254252@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@246988@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@248068@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@192280@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@192240@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@206800@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@245708@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@77664@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -12@1@12@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@69008@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -13@1@13@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@169440@-1@-1@-1@23-6-2013 14:28:24@0@ -14@1@14@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@169400@-1@-1@-1@23-6-2013 14:28:24@0@ -15@1@15@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@69008@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -16@1@16@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@78536@-1@-1@-1@23-6-2013 14:28:24@post-reduction lexical gap@ -17@1@17@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@201000@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@1@-1@4@4@-1@6@-1@-1@-1@-1@-1@-1@2@7@-1@-1@-1@-1@-1@-1@-1@325@12@-1@-1@176360@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:16>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:16>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@7@-1@-1@-1@-1@-1@-1@-1@422@29@-1@-1@117616@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:10>, 1, "cverb1-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "comp1", 0, "null") (4, 3, 4, <23:28>, 1, "noun2", 0, "null") (5, 4, 5, <29:38>, 1, "tverb-FIN", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:10>, 1, "cverb1-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "comp1", 0, "null") (4, 3, 4, <23:28>, 1, "noun2", 0, "null") (5, 4, 5, <29:38>, 1, "tverb-FIN", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@8@14@-1@-1@-1@-1@-1@-1@-1@457@57@-1@-1@428824@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:10>, 1, "cverb1-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null") (4, 3, 4, <23:32>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null") (6, 5, 6, <39:44>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:10>, 1, "cverb1-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null") (4, 3, 4, <23:32>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null") (6, 5, 6, <39:44>, 1, "comp1", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@11@14@-1@-1@-1@-1@-1@-1@-1@694@98@-1@-1@467664@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-FIN", 0, "null") (4, 3, 4, <22:27>, 1, "noun2", 0, "null") (5, 4, 5, <28:38>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@10@14@-1@-1@-1@-1@-1@-1@-1@931@138@-1@-1@459784@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun3", 0, "null") (4, 3, 4, <22:27>, 1, "comp1", 0, "null") (5, 4, 5, <29:39>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <40:45>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun3", 0, "null") (4, 3, 4, <22:27>, 1, "comp1", 0, "null") (5, 4, 5, <29:39>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <40:45>, 1, "noun1", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@10@14@-1@-1@-1@-1@-1@-1@-1@1168@178@-1@-1@457704@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:16>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <17:22>, 1, "noun3", 0, "null") (4, 3, 4, <23:28>, 1, "comp1", 0, "null") (5, 4, 5, <29:39>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <40:45>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:16>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <17:22>, 1, "noun3", 0, "null") (4, 3, 4, <23:28>, 1, "comp1", 0, "null") (5, 4, 5, <29:39>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <40:45>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@12@-1@-1@-1@-1@-1@-1@-1@1403@215@-1@-1@277880@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <23:28>, 1, "noun3", 0, "null") (5, 4, 5, <29:39>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <40:45>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:22>, 1, "tverb-NFIN", 0, "null") (4, 3, 4, <23:28>, 1, "noun3", 0, "null") (5, 4, 5, <29:39>, 1, "cverb1-FIN", 0, "null") (6, 5, 6, <40:45>, 1, "noun1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@12@-1@-1@-1@-1@-1@-1@-1@1436@242@-1@-1@277924@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:10>, 1, "cverb1-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null") (4, 3, 4, <23:33>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <34:39>, 1, "noun3", 0, "null") (6, 5, 6, <40:45>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:10>, 1, "cverb1-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null") (4, 3, 4, <23:33>, 1, "tverb-NFIN", 0, "null") (5, 4, 5, <34:39>, 1, "noun3", 0, "null") (6, 5, 6, <40:45>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@12@-1@-1@-1@-1@-1@-1@-1@1471@271@-1@-1@303684@-1@-1@-1@@@ +10@0@10@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:20>, 1, "tverb-NFIN-NMZ", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:37>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <38:43>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:20>, 1, "tverb-NFIN-NMZ", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:37>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <38:43>, 1, "noun3", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@9@13@-1@-1@-1@-1@-1@-1@-1@1504@299@-1@-1@424304@-1@-1@-1@@@ +11@0@11@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:20>, 1, "tverb-NFIN-NMZ", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:41>, 1, "cverb2-FIN-NMZ", 0, "null") (5, 4, 5, <42:47>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:20>, 1, "tverb-NFIN-NMZ", 0, "null") (3, 2, 3, <21:26>, 1, "noun2", 0, "null") (4, 3, 4, <27:41>, 1, "cverb2-FIN-NMZ", 0, "null") (5, 4, 5, <42:47>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1683@317@-1@-1@89800@-1@-1@-1@@post-reduction lexical gap@ +12@0@12@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:19>, 1, "tverb-FIN-NMZ", 0, "null") (3, 2, 3, <20:25>, 1, "noun2", 0, "null") (4, 3, 4, <26:36>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <37:42>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:19>, 1, "tverb-FIN-NMZ", 0, "null") (3, 2, 3, <20:25>, 1, "noun2", 0, "null") (4, 3, 4, <26:36>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <37:42>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1689@323@-1@-1@82364@-1@-1@-1@@post-reduction lexical gap@ +13@0@13@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null") (4, 3, 4, <22:32>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-FIN", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null") (4, 3, 4, <22:32>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <33:38>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@11@-1@-1@-1@-1@-1@-1@-1@1719@347@-1@-1@247540@-1@-1@-1@@@ +14@0@14@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:16>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null") (4, 3, 4, <23:33>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <34:39>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:16>, 1, "tverb-NFIN", 0, "null") (3, 2, 3, <17:22>, 1, "noun2", 0, "null") (4, 3, 4, <23:33>, 1, "cverb2-FIN", 0, "null") (5, 4, 5, <34:39>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@11@-1@-1@-1@-1@-1@-1@-1@1749@371@-1@-1@247504@-1@-1@-1@@@ +15@0@15@5@(1, 0, 1, <0:10>, 1, "cverb2-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:30>, 1, "tverb-FIN-NMZ", 0, "null") (4, 3, 4, <31:36>, 1, "noun2", 0, "null") (5, 4, 5, <37:42>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:10>, 1, "cverb2-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "noun1", 0, "null") (3, 2, 3, <17:30>, 1, "tverb-FIN-NMZ", 0, "null") (4, 3, 4, <31:36>, 1, "noun2", 0, "null") (5, 4, 5, <37:42>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1755@377@-1@-1@82364@-1@-1@-1@@post-reduction lexical gap@ +16@0@16@6@(1, 0, 1, <0:10>, 1, "cverb2-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "comp1", 0, "null") (3, 2, 3, <17:22>, 1, "noun1", 0, "null") (4, 3, 4, <23:36>, 1, "tverb-FIN-NMZ", 0, "null") (5, 4, 5, <37:42>, 1, "noun2", 0, "null") (6, 5, 6, <43:48>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:10>, 1, "cverb2-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "comp1", 0, "null") (3, 2, 3, <17:22>, 1, "noun1", 0, "null") (4, 3, 4, <23:36>, 1, "tverb-FIN-NMZ", 0, "null") (5, 4, 5, <37:42>, 1, "noun2", 0, "null") (6, 5, 6, <43:48>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1762@384@-1@-1@93508@-1@-1@-1@@post-reduction lexical gap@ +17@0@17@6@(1, 0, 1, <0:10>, 1, "cverb2-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "comp1", 0, "null") (3, 2, 3, <17:22>, 1, "noun1", 0, "null") (4, 3, 4, <23:32>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <33:38>, 1, "noun2", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:10>, 1, "cverb2-FIN", 0, "null") (2, 1, 2, <11:16>, 1, "comp1", 0, "null") (3, 2, 3, <17:22>, 1, "noun1", 0, "null") (4, 3, 4, <23:32>, 1, "tverb-FIN", 0, "null") (5, 4, 5, <33:38>, 1, "noun2", 0, "null") (6, 5, 6, <39:44>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@13@-1@-1@-1@-1@-1@-1@-1@1795@413@-1@-1@301396@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/result b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/result index bbf72d461..9eda9278f 100644 --- a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/result +++ b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/result @@ -1,6 +1,6 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 comp-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 head-subj 0.000000 1 3 (32 fin-suffix 0.000000 1 2 (5 tverb 0.000000 1 2 ("tverb-FIN"))) (33 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(74 head-comp 0.000000 0 6 (67 head-subj 0.000000 0 2 (65 fin-suffix 0.000000 0 1 (7 cverb1 0.000000 0 1 ("cverb1-FIN"))) (66 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (73 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (72 comp-head 0.000000 3 6 (68 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (71 head-subj 0.000000 4 6 (69 fin-suffix 0.000000 4 5 (11 tverb 0.000000 4 5 ("tverb-FIN"))) (70 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3")))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h14 h7 qeq h5 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(77 head-comp 0.000000 0 6 (70 head-subj 0.000000 0 2 (68 fin-suffix 0.000000 0 1 (7 cverb1 0.000000 0 1 ("cverb1-FIN"))) (69 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (76 comp-head 0.000000 2 6 (75 comp-head 0.000000 2 5 (71 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (74 head-subj 0.000000 3 5 (72 fin-suffix 0.000000 3 4 (10 tverb 0.000000 3 4 ("tverb-FIN"))) (73 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comps1_complementizer1 0.000000 5 6 ("comp1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h14 h7 qeq h5 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 comp-head 0.000000 0 6 (72 head-comp 0.000000 0 4 (7 comps1_complementizer1 0.000000 0 1 ("comp1")) (71 comp-head 0.000000 1 4 (67 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (70 head-subj 0.000000 2 4 (68 fin-suffix 0.000000 2 3 (9 tverb 0.000000 2 3 ("tverb-FIN"))) (69 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))))) (75 head-subj 0.000000 4 6 (73 fin-suffix 0.000000 4 5 (11 cverb1 0.000000 4 5 ("cverb1-FIN"))) (74 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 comp-head 0.000000 0 6 (72 comp-head 0.000000 0 4 (71 comp-head 0.000000 0 3 (67 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (70 head-subj 0.000000 1 3 (68 fin-suffix 0.000000 1 2 (8 tverb 0.000000 1 2 ("tverb-FIN"))) (69 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comps1_complementizer1 0.000000 3 4 ("comp1"))) (75 head-subj 0.000000 4 6 (73 fin-suffix 0.000000 4 5 (11 cverb1 0.000000 4 5 ("cverb1-FIN"))) (74 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun3_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ -10@0@-1@-1@-1@-1@-1@-1@-1@-1@(69 comp-head 0.000000 0 5 (65 high-no-rel-nominalized-clause 0.000000 0 3 (64 comp-head 0.000000 0 3 (59 bare-np 0.000000 0 1 (6 noun1 0.000000 0 1 ("noun1"))) (63 head-subj 0.000000 1 3 (61 high-suffix 0.000000 1 2 (60 nonfin-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NFIN-NMZ")))) (62 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))))) (68 head-subj 0.000000 3 5 (66 fin-suffix 0.000000 3 4 (9 cverb2 0.000000 3 4 ("cverb2-FIN"))) (67 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 comp-head 0.000000 0 3 (31 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (34 head-subj 0.000000 1 3 (32 fin-suffix 0.000000 1 2 (5 tverb 0.000000 1 2 ("tverb-FIN"))) (33 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(74 head-comp 0.000000 0 6 (67 head-subj 0.000000 0 2 (65 fin-suffix 0.000000 0 1 (7 cverb1 0.000000 0 1 ("cverb1-FIN"))) (66 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (73 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (72 comp-head 0.000000 3 6 (68 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (71 head-subj 0.000000 4 6 (69 fin-suffix 0.000000 4 5 (11 tverb 0.000000 4 5 ("tverb-FIN"))) (70 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3")))))))@@("S" ("V" ("V" ("V" ("cverb1-FIN"))) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun3")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(77 head-comp 0.000000 0 6 (70 head-subj 0.000000 0 2 (68 fin-suffix 0.000000 0 1 (7 cverb1 0.000000 0 1 ("cverb1-FIN"))) (69 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (76 comp-head 0.000000 2 6 (75 comp-head 0.000000 2 5 (71 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (74 head-subj 0.000000 3 5 (72 fin-suffix 0.000000 3 4 (10 tverb 0.000000 3 4 ("tverb-FIN"))) (73 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("V" ("V" ("cverb1-FIN"))) ("NP" ("N" ("noun1")))) ("CP" ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun3"))))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 comp-head 0.000000 0 6 (72 head-comp 0.000000 0 4 (7 comp1 0.000000 0 1 ("comp1")) (71 comp-head 0.000000 1 4 (67 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1"))) (70 head-subj 0.000000 2 4 (68 fin-suffix 0.000000 2 3 (9 tverb 0.000000 2 3 ("tverb-FIN"))) (69 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2")))))) (75 head-subj 0.000000 4 6 (73 fin-suffix 0.000000 4 5 (11 cverb1 0.000000 4 5 ("cverb1-FIN"))) (74 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3")))))@@("S" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun2")))))) ("V" ("V" ("V" ("cverb1-FIN"))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun2_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 comp-head 0.000000 0 6 (72 comp-head 0.000000 0 4 (71 comp-head 0.000000 0 3 (67 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (70 head-subj 0.000000 1 3 (68 fin-suffix 0.000000 1 2 (8 tverb 0.000000 1 2 ("tverb-FIN"))) (69 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comp1 0.000000 3 4 ("comp1"))) (75 head-subj 0.000000 4 6 (73 fin-suffix 0.000000 4 5 (11 cverb1 0.000000 4 5 ("cverb1-FIN"))) (74 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("V" ("tverb-FIN"))) ("NP" ("N" ("noun3"))))) ("C" ("comp1"))) ("V" ("V" ("V" ("cverb1-FIN"))) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun3_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(69 comp-head 0.000000 0 5 (65 high-no-rel-nominalized-clause 0.000000 0 3 (64 comp-head 0.000000 0 3 (59 bare-np 0.000000 0 1 (6 noun1 0.000000 0 1 ("noun1"))) (63 head-subj 0.000000 1 3 (61 high-suffix 0.000000 1 2 (60 nonfin-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NFIN-NMZ")))) (62 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))))) (68 head-subj 0.000000 3 5 (66 fin-suffix 0.000000 3 4 (9 cverb2 0.000000 3 4 ("cverb2-FIN"))) (67 bare-np 0.000000 4 5 (10 noun3 0.000000 4 5 ("noun3")))))@@("S" ("NP" ("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("V" ("V" ("tverb-NFIN-NMZ")))) ("NP" ("N" ("noun2")))))) ("V" ("V" ("V" ("cverb2-FIN"))) ("NP" ("N" ("noun3")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun2_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/run b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/run index 46a36f878..11a0a4c61 100644 --- a/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/run +++ b/tests/regression/home/gold/ccomp-pseudo46-2-nmz-and-comp-same-and-extra/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1413@-1@-1@7@3@5@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@17@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1489@-1@-1@7@3@5@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 14:03:17@26-aug-2020 14:03:17@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo47-2-vin/item b/tests/regression/home/gold/ccomp-pseudo47-2-vin/item index abdf34e14..305ff2ae1 100644 --- a/tests/regression/home/gold/ccomp-pseudo47-2-vin/item +++ b/tests/regression/home/gold/ccomp-pseudo47-2-vin/item @@ -1,10 +1,10 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-28 -2@unknown@formal@none@1@S@cverb1 comp1 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-28 -3@unknown@formal@none@1@S@cverb1 noun1 comp1 tverb noun2 noun3@@@@@@@olzama@2017-12-28 -4@unknown@formal@none@1@@cverb1 noun1 tverb noun2 noun3 comp1@@@@@@@olzama@2017-12-28 -5@unknown@formal@none@1@@cverb1 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-28 -6@unknown@formal@none@1@@cverb2 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-28 -7@unknown@formal@none@1@S@cverb2 noun3 tverb noun1 noun2@@@@@@@olzama@2017-12-28 -8@unknown@formal@none@1@@cverb2 comp1 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-28 -9@unknown@formal@none@1@@cverb2 comp2 tverb noun1 noun2 noun3@@@@@@@olzama@2017-12-28 -10@unknown@formal@none@1@S@cverb2 noun3 comp2 tverb noun1 noun2@@@@@@@olzama@2017-12-28 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@28-dec-2017 +2@unknown@formal@none@1@S@cverb1 comp1 tverb noun1 noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +3@unknown@formal@none@1@S@cverb1 noun1 comp1 tverb noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +4@unknown@formal@none@1@@cverb1 noun1 tverb noun2 noun3 comp1@@@@1@-1@@olzama@28-dec-2017 +5@unknown@formal@none@1@@cverb1 tverb noun1 noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +6@unknown@formal@none@1@@cverb2 tverb noun1 noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +7@unknown@formal@none@1@S@cverb2 noun3 tverb noun1 noun2@@@@1@-1@@olzama@28-dec-2017 +8@unknown@formal@none@1@@cverb2 comp1 tverb noun1 noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +9@unknown@formal@none@1@@cverb2 comp2 tverb noun1 noun2 noun3@@@@1@-1@@olzama@28-dec-2017 +10@unknown@formal@none@1@S@cverb2 noun3 comp2 tverb noun1 noun2@@@@1@-1@@olzama@28-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo47-2-vin/parse b/tests/regression/home/gold/ccomp-pseudo47-2-vin/parse index e76a6731c..2b9e1e4cf 100644 --- a/tests/regression/home/gold/ccomp-pseudo47-2-vin/parse +++ b/tests/regression/home/gold/ccomp-pseudo47-2-vin/parse @@ -1,10 +1,10 @@ -1@1@1@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@103732@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@195620@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@189260@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@122752@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@108212@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@104132@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@165528@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@119916@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@119916@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@185180@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@2@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@1@9@-1@-1@-1@-1@-1@-1@-1@170@13@-1@-1@207944@-1@-1@-1@@@ +2@0@2@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "comp1", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "comp1", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@2@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@2@16@-1@-1@-1@-1@-1@-1@-1@345@46@-1@-1@495408@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun1", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:24>, 1, "tverb", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun1", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:24>, 1, "tverb", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@2@16@-1@-1@-1@-1@-1@-1@-1@734@86@-1@-1@446288@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun1", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "noun3", 0, "null") (6, 5, 6, <31:36>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun1", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "noun3", 0, "null") (6, 5, 6, <31:36>, 1, "comp1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@14@-1@-1@-1@-1@-1@-1@-1@1108@121@-1@-1@188228@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "tverb", 0, "null") (3, 2, 3, <13:18>, 1, "noun1", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "tverb", 0, "null") (3, 2, 3, <13:18>, 1, "noun1", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@12@-1@-1@-1@-1@-1@-1@-1@1127@139@-1@-1@163220@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "tverb", 0, "null") (3, 2, 3, <13:18>, 1, "noun1", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "tverb", 0, "null") (3, 2, 3, <13:18>, 1, "noun1", 0, "null") (4, 3, 4, <19:24>, 1, "noun2", 0, "null") (5, 4, 5, <25:30>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@12@-1@-1@-1@-1@-1@-1@-1@1146@156@-1@-1@156380@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@14@-1@-1@-1@-1@-1@-1@-1@1170@177@-1@-1@377584@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "comp1", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "comp1", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@14@-1@-1@-1@-1@-1@-1@-1@1449@210@-1@-1@188264@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "comp2", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "comp2", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null") (6, 5, 6, <31:36>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@14@-1@-1@-1@-1@-1@-1@-1@1473@231@-1@-1@188264@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:24>, 1, "tverb", 0, "null") (5, 4, 5, <25:30>, 1, "noun1", 0, "null") (6, 5, 6, <31:36>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:24>, 1, "tverb", 0, "null") (5, 4, 5, <25:30>, 1, "noun1", 0, "null") (6, 5, 6, <31:36>, 1, "noun2", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@16@-1@-1@-1@-1@-1@-1@-1@1501@255@-1@-1@439448@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo47-2-vin/result b/tests/regression/home/gold/ccomp-pseudo47-2-vin/result index c49652332..99ac497ce 100644 --- a/tests/regression/home/gold/ccomp-pseudo47-2-vin/result +++ b/tests/regression/home/gold/ccomp-pseudo47-2-vin/result @@ -1,10 +1,10 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 head-comp 0.000000 0 3 (28 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (27 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (29 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(34 head-subj 0.000000 0 3 (32 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (31 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (33 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 head-subj 0.000000 0 6 (59 head-comp 0.000000 0 5 (7 cverb1 0.000000 0 1 ("cverb1")) (58 head-comp 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (57 head-subj 0.000000 2 5 (55 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (54 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1")))) (56 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))))) (66 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -2@1@-1@-1@-1@-1@-1@-1@-1@-1@(68 head-subj 0.000000 0 6 (65 head-comp 0.000000 0 5 (7 cverb1 0.000000 0 1 ("cverb1")) (64 head-comp 0.000000 1 5 (8 comps1_complementizer1 0.000000 1 2 ("comp1")) (63 head-comp 0.000000 2 5 (61 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (60 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1")))) (62 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))))) (66 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h9 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x7 RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x8 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e6 > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(61 head-comp 0.000000 0 6 (55 head-subj 0.000000 0 2 (7 cverb1 0.000000 0 1 ("cverb1")) (54 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (60 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (59 head-subj 0.000000 3 6 (57 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (56 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (58 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -3@1@-1@-1@-1@-1@-1@-1@-1@-1@(67 head-comp 0.000000 0 6 (55 head-subj 0.000000 0 2 (7 cverb1 0.000000 0 1 ("cverb1")) (54 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (66 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (65 head-comp 0.000000 3 6 (63 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (62 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (64 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(51 head-comp-ccomp 0.000000 0 5 (46 head-subj 0.000000 0 2 (6 cverb2 0.000000 0 1 ("cverb2")) (45 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (50 head-subj 0.000000 2 5 (48 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (47 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (49 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -7@1@-1@-1@-1@-1@-1@-1@-1@-1@(56 head-comp-ccomp 0.000000 0 5 (46 head-subj 0.000000 0 2 (6 cverb2 0.000000 0 1 ("cverb2")) (45 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (55 head-comp 0.000000 2 5 (53 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (52 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (54 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -10@0@-1@-1@-1@-1@-1@-1@-1@-1@(60 head-comp-ccomp 0.000000 0 6 (54 head-subj 0.000000 0 2 (7 cverb2 0.000000 0 1 ("cverb2")) (53 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (59 head-comp-ccomp 0.000000 2 6 (9 comps2_complementizer1 0.000000 2 3 ("comp2")) (58 head-subj 0.000000 3 6 (56 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (55 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (57 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -10@1@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-comp-ccomp 0.000000 0 6 (54 head-subj 0.000000 0 2 (7 cverb2 0.000000 0 1 ("cverb2")) (53 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (65 head-comp-ccomp 0.000000 2 6 (9 comps2_complementizer1 0.000000 2 3 ("comp2")) (64 head-comp 0.000000 3 6 (62 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (61 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (63 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(29 head-comp 0.000000 0 3 (27 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (26 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (28 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(33 head-subj 0.000000 0 3 (31 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (30 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (32 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-subj 0.000000 0 6 (58 head-comp 0.000000 0 5 (7 cverb1 0.000000 0 1 ("cverb1")) (57 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (56 head-subj 0.000000 2 5 (54 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (53 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1")))) (55 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))))) (65 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))@@("S" ("VP" ("V" ("cverb1")) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2")))))) ("NP" ("N" ("noun3"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@1@-1@-1@-1@-1@-1@-1@-1@-1@(67 head-subj 0.000000 0 6 (64 head-comp 0.000000 0 5 (7 cverb1 0.000000 0 1 ("cverb1")) (63 head-comp 0.000000 1 5 (8 comp1 0.000000 1 2 ("comp1")) (62 head-comp 0.000000 2 5 (60 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (59 bare-np 0.000000 3 4 (10 noun1 0.000000 3 4 ("noun1")))) (61 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))))) (65 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))@@("S" ("VP" ("V" ("cverb1")) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2")))))) ("NP" ("N" ("noun3"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_noun1_n_rel"<-1:-1> LBL: h12 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x8 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(60 head-comp 0.000000 0 6 (54 head-subj 0.000000 0 2 (7 cverb1 0.000000 0 1 ("cverb1")) (53 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (59 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (58 head-subj 0.000000 3 6 (56 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (55 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (57 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb1")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-comp 0.000000 0 6 (54 head-subj 0.000000 0 2 (7 cverb1 0.000000 0 1 ("cverb1")) (53 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (65 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (64 head-comp 0.000000 3 6 (62 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (61 bare-np 0.000000 4 5 (11 noun2 0.000000 4 5 ("noun2")))) (63 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))@@("S" ("V" ("V" ("cverb1")) ("NP" ("N" ("noun1")))) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun2_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(50 head-comp-ccomp 0.000000 0 5 (45 head-subj 0.000000 0 2 (6 cverb2 0.000000 0 1 ("cverb2")) (44 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (49 head-subj 0.000000 2 5 (47 head-comp 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (46 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (48 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@@("S" ("V" ("V" ("cverb2")) ("NP" ("N" ("noun3")))) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp-ccomp 0.000000 0 5 (45 head-subj 0.000000 0 2 (6 cverb2 0.000000 0 1 ("cverb2")) (44 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (54 head-comp 0.000000 2 5 (52 head-subj 0.000000 2 4 (8 tverb 0.000000 2 3 ("tverb")) (51 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (53 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@@("S" ("V" ("V" ("cverb2")) ("NP" ("N" ("noun3")))) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 head-comp-ccomp 0.000000 0 6 (53 head-subj 0.000000 0 2 (7 cverb2 0.000000 0 1 ("cverb2")) (52 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (58 head-comp-ccomp 0.000000 2 6 (9 comp2 0.000000 2 3 ("comp2")) (57 head-subj 0.000000 3 6 (55 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (54 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (56 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("cverb2")) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp2")) ("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp-ccomp 0.000000 0 6 (53 head-subj 0.000000 0 2 (7 cverb2 0.000000 0 1 ("cverb2")) (52 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (64 head-comp-ccomp 0.000000 2 6 (9 comp2 0.000000 2 3 ("comp2")) (63 head-comp 0.000000 3 6 (61 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (60 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (62 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("cverb2")) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp2")) ("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo47-2-vin/run b/tests/regression/home/gold/ccomp-pseudo47-2-vin/run index 28321d2d6..dd6a36d86 100644 --- a/tests/regression/home/gold/ccomp-pseudo47-2-vin/run +++ b/tests/regression/home/gold/ccomp-pseudo47-2-vin/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1400@-1@-1@8@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@10@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1476@-1@-1@8@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 14:13:01@26-aug-2020 14:13:01@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/item b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/item index f7e231995..85c63ea42 100644 --- a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/item +++ b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/item @@ -1,9 +1,9 @@ -1@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-29 -2@unknown@formal@none@1@S@cverb1 noun3 tverb-SBJ noun1 noun2@@@@@@@olzama@2017-12-29 -3@unknown@formal@none@1@S@cverb1 noun3 comp1 tverb-SBJ noun1 noun2@@@@@@@olzama@2017-12-29 -4@unknown@formal@none@1@S@cverb2 noun3 comp2 tverb noun1 noun2@@@@@@@olzama@2017-12-29 -5@unknown@formal@none@1@@cverb2 noun3 tverb noun1 noun2@@@@@@@olzama@2017-12-29 -6@unknown@formal@none@1@@cverb2 noun3 comp2 tverb-SBJ noun1 noun2@@@@@@@olzama@2017-12-29 -7@unknown@formal@none@1@@cverb1 noun3 comp2 tverb-SBJ noun1 noun2@@@@@@@olzama@2017-12-29 -8@unknown@formal@none@1@@cverb2 noun3 comp1 tverb-SBJ noun1 noun2@@@@@@@olzama@2017-12-29 -9@unknown@formal@none@1@@cverb1 noun3 tverb noun1 noun2@@@@@@@olzama@2017-12-29 +1@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +2@unknown@formal@none@1@S@cverb1 noun3 tverb-SBJ noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +3@unknown@formal@none@1@S@cverb1 noun3 comp1 tverb-SBJ noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +4@unknown@formal@none@1@S@cverb2 noun3 comp2 tverb noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +5@unknown@formal@none@1@@cverb2 noun3 tverb noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +6@unknown@formal@none@1@@cverb2 noun3 comp2 tverb-SBJ noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +7@unknown@formal@none@1@@cverb1 noun3 comp2 tverb-SBJ noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +8@unknown@formal@none@1@@cverb2 noun3 comp1 tverb-SBJ noun1 noun2@@@@1@-1@@olzama@29-dec-2017 +9@unknown@formal@none@1@@cverb1 noun3 tverb noun1 noun2@@@@1@-1@@olzama@29-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/parse b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/parse index 0ec6e9102..a01f5a43a 100644 --- a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/parse +++ b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/parse @@ -1,9 +1,9 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@81612@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@146960@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@164852@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@163364@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@103888@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@118648@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@118648@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@119836@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@103888@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@-1@8@-1@-1@-1@-1@-1@-1@-1@206@10@-1@-1@146672@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:22>, 1, "tverb-SBJ", 0, "null") (4, 3, 4, <23:28>, 1, "noun1", 0, "null") (5, 4, 5, <29:34>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:22>, 1, "tverb-SBJ", 0, "null") (4, 3, 4, <23:28>, 1, "noun1", 0, "null") (5, 4, 5, <29:34>, 1, "noun2", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@0@13@-1@-1@-1@-1@-1@-1@-1@309@33@-1@-1@291432@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@0@15@-1@-1@-1@-1@-1@-1@-1@483@63@-1@-1@339216@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:24>, 1, "tverb", 0, "null") (5, 4, 5, <25:30>, 1, "noun1", 0, "null") (6, 5, 6, <31:36>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:24>, 1, "tverb", 0, "null") (5, 4, 5, <25:30>, 1, "noun1", 0, "null") (6, 5, 6, <31:36>, 1, "noun2", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@16@-1@-1@-1@-1@-1@-1@-1@707@94@-1@-1@337960@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@13@-1@-1@-1@-1@-1@-1@-1@927@121@-1@-1@154276@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@13@-1@-1@-1@-1@-1@-1@-1@948@140@-1@-1@173428@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp2", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@13@-1@-1@-1@-1@-1@-1@-1@969@159@-1@-1@173428@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@6@(1, 0, 1, <0:6>, 1, "cverb2", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "comp1", 0, "null") (4, 3, 4, <19:28>, 1, "tverb-SBJ", 0, "null") (5, 4, 5, <29:34>, 1, "noun1", 0, "null") (6, 5, 6, <35:40>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@14@-1@-1@-1@-1@-1@-1@-1@991@179@-1@-1@180848@-1@-1@-1@@@ +9@0@9@5@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:6>, 1, "cverb1", 0, "null") (2, 1, 2, <7:12>, 1, "noun3", 0, "null") (3, 2, 3, <13:18>, 1, "tverb", 0, "null") (4, 3, 4, <19:24>, 1, "noun1", 0, "null") (5, 4, 5, <25:30>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@13@-1@-1@-1@-1@-1@-1@-1@1011@196@-1@-1@154276@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/result b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/result index f31aab559..752871ba7 100644 --- a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/result +++ b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/result @@ -1,4 +1,4 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(27 head-comp 0.000000 0 3 (25 head-subj 0.000000 0 2 (23 ind-lex 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb"))) (24 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (26 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(47 head-comp 0.000000 0 5 (41 head-subj 0.000000 0 2 (39 ind-lex 0.000000 0 1 (6 cverb1 0.000000 0 1 ("cverb1"))) (40 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (46 head-comp 0.000000 2 5 (44 head-subj 0.000000 2 4 (42 subj-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-SBJ"))) (43 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (45 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: subjunctive ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp 0.000000 0 6 (48 head-subj 0.000000 0 2 (46 ind-lex 0.000000 0 1 (7 cverb1 0.000000 0 1 ("cverb1"))) (47 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (54 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (53 head-comp 0.000000 3 6 (51 head-subj 0.000000 3 5 (49 subj-suffix 0.000000 3 4 (10 tverb 0.000000 3 4 ("tverb-SBJ"))) (50 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (52 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: subjunctive ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp 0.000000 0 6 (48 head-subj 0.000000 0 2 (46 ind-lex 0.000000 0 1 (7 cverb2 0.000000 0 1 ("cverb2"))) (47 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (54 head-comp 0.000000 2 6 (9 comps2_complementizer1 0.000000 2 3 ("comp2")) (53 head-comp 0.000000 3 6 (51 head-subj 0.000000 3 5 (49 ind-lex 0.000000 3 4 (10 tverb 0.000000 3 4 ("tverb"))) (50 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (52 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str e10 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(27 head-comp 0.000000 0 3 (25 head-subj 0.000000 0 2 (23 ind-lex 0.000000 0 1 (4 tverb 0.000000 0 1 ("tverb"))) (24 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (26 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("V" ("tverb"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(47 head-comp 0.000000 0 5 (41 head-subj 0.000000 0 2 (39 ind-lex 0.000000 0 1 (6 cverb1 0.000000 0 1 ("cverb1"))) (40 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (46 head-comp 0.000000 2 5 (44 head-subj 0.000000 2 4 (42 subj-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-SBJ"))) (43 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (45 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2")))))@@("S" ("V" ("V" ("V" ("cverb1"))) ("NP" ("N" ("noun3")))) ("S" ("V" ("V" ("V" ("tverb-SBJ"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: subjunctive ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp 0.000000 0 6 (48 head-subj 0.000000 0 2 (46 ind-lex 0.000000 0 1 (7 cverb1 0.000000 0 1 ("cverb1"))) (47 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (54 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (53 head-comp 0.000000 3 6 (51 head-subj 0.000000 3 5 (49 subj-suffix 0.000000 3 4 (10 tverb 0.000000 3 4 ("tverb-SBJ"))) (50 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (52 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("V" ("cverb1"))) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp1")) ("S" ("V" ("V" ("V" ("tverb-SBJ"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: subjunctive ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-comp 0.000000 0 6 (48 head-subj 0.000000 0 2 (46 ind-lex 0.000000 0 1 (7 cverb2 0.000000 0 1 ("cverb2"))) (47 bare-np 0.000000 1 2 (8 noun3 0.000000 1 2 ("noun3")))) (54 head-comp 0.000000 2 6 (9 comp2 0.000000 2 3 ("comp2")) (53 head-comp 0.000000 3 6 (51 head-subj 0.000000 3 5 (49 ind-lex 0.000000 3 4 (10 tverb 0.000000 3 4 ("tverb"))) (50 bare-np 0.000000 4 5 (11 noun1 0.000000 4 5 ("noun1")))) (52 bare-np 0.000000 5 6 (12 noun2 0.000000 5 6 ("noun2"))))))@@("S" ("V" ("V" ("V" ("cverb2"))) ("NP" ("N" ("noun3")))) ("CP" ("C" ("comp2")) ("S" ("V" ("V" ("V" ("tverb"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] RELS: < [ "_cverb2_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: indicative ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/run b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/run index f0a5d9325..96424c8f2 100644 --- a/tests/regression/home/gold/ccomp-pseudo48-vso-subj/run +++ b/tests/regression/home/gold/ccomp-pseudo48-vso-subj/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1406@-1@-1@8@2@3@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@9@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1482@-1@-1@8@2@3@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 14:30:18@26-aug-2020 14:30:18@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/item b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/item index a3f9ff50b..566dfcc72 100644 --- a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/item +++ b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/item @@ -1,9 +1,9 @@ -1@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-22 -2@unknown@formal@none@1@@noun1 noun2 tverb@@@@@@@olzama@2017-12-22 -3@unknown@formal@none@1@S@tverb noun1 noun2@@@@@@@olzama@2017-12-22 -4@unknown@formal@none@1@@tverb-NMZ noun1 noun2@@@@@@@olzama@2017-12-22 -5@unknown@formal@none@1@S@cverb noun3 tverb-NMZ noun1 noun2@@@@@@@olzama@2017-12-22 -6@unknown@formal@none@1@S@cverb tverb-NMZ noun2 noun3 noun1@@@@@@@olzama@2017-12-22 -7@unknown@formal@none@1@@cverb noun3 tverb noun1 noun2@@@@@@@olzama@2017-12-22 -8@unknown@formal@none@1@@tverb-NMZ noun1 noun2 cverb noun3@@@@@@@olzama@2017-12-22 -9@unknown@formal@none@1@@noun1 tverb-NMZ noun2@@@@@@@olzama@2017-12-22 +1@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@22-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb@@@@1@-1@@olzama@22-dec-2017 +3@unknown@formal@none@1@S@tverb noun1 noun2@@@@1@-1@@olzama@22-dec-2017 +4@unknown@formal@none@1@@tverb-NMZ noun1 noun2@@@@1@-1@@olzama@22-dec-2017 +5@unknown@formal@none@1@S@cverb noun3 tverb-NMZ noun1 noun2@@@@1@-1@@olzama@22-dec-2017 +6@unknown@formal@none@1@S@cverb tverb-NMZ noun2 noun3 noun1@@@@1@-1@@olzama@22-dec-2017 +7@unknown@formal@none@1@@cverb noun3 tverb noun1 noun2@@@@1@-1@@olzama@22-dec-2017 +8@unknown@formal@none@1@@tverb-NMZ noun1 noun2 cverb noun3@@@@1@-1@@olzama@22-dec-2017 +9@unknown@formal@none@1@@noun1 tverb-NMZ noun2@@@@1@-1@@olzama@22-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/parse b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/parse index 6bdd5a327..b6f2bf7c9 100644 --- a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/parse +++ b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/parse @@ -1,9 +1,9 @@ -1@1@1@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@56640@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@44808@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@104188@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@74360@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@210148@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@219108@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@113328@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@125736@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@64632@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@7@-1@-1@-1@-1@-1@-1@-1@204@9@-1@-1@78952@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-3@5@-1@-1@-1@-1@-1@-1@-1@209@14@-1@-1@53252@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@9@-1@-1@-1@-1@-1@-1@-1@222@27@-1@-1@208584@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:9>, 1, "tverb-NMZ", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:9>, 1, "tverb-NMZ", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@384@49@-1@-1@111888@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-NMZ", 0, "null") (4, 3, 4, <22:27>, 1, "noun1", 0, "null") (5, 4, 5, <28:33>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:21>, 1, "tverb-NMZ", 0, "null") (4, 3, 4, <22:27>, 1, "noun1", 0, "null") (5, 4, 5, <28:33>, 1, "noun2", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@3@15@-1@-1@-1@-1@-1@-1@-1@413@73@-1@-1@417792@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-NMZ", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null") (4, 3, 4, <22:27>, 1, "noun3", 0, "null") (5, 4, 5, <28:33>, 1, "noun1", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-NMZ", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null") (4, 3, 4, <22:27>, 1, "noun3", 0, "null") (5, 4, 5, <28:33>, 1, "noun1", 0, "null")@2@-1@12@12@-1@13@-1@-1@-1@-1@-1@-1@4@16@-1@-1@-1@-1@-1@-1@-1@733@115@-1@-1@462392@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun3", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun1", 0, "null") (5, 4, 5, <24:29>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@13@-1@-1@-1@-1@-1@-1@-1@1059@152@-1@-1@177324@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:9>, 1, "tverb-NMZ", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null") (4, 3, 4, <22:27>, 1, "cverb", 0, "null") (5, 4, 5, <28:33>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:9>, 1, "tverb-NMZ", 0, "null") (2, 1, 2, <10:15>, 1, "noun1", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null") (4, 3, 4, <22:27>, 1, "cverb", 0, "null") (5, 4, 5, <28:33>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@14@-1@-1@-1@-1@-1@-1@-1@1082@174@-1@-1@183028@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-NMZ", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:15>, 1, "tverb-NMZ", 0, "null") (3, 2, 3, <16:21>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@7@-1@-1@-1@-1@-1@-1@-1@1092@184@-1@-1@84580@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/result b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/result index e29d9f4a2..151850577 100644 --- a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/result +++ b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/result @@ -1,6 +1,6 @@ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 head-comp 0.000000 0 3 (29 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (28 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (30 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -3@1@-1@-1@-1@-1@-1@-1@-1@-1@(35 head-subj 0.000000 0 3 (33 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (32 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (34 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(57 head-comp 0.000000 0 5 (50 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (49 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (56 high-no-rel-nominalized-clause 0.000000 2 5 (55 head-comp 0.000000 2 5 (53 head-subj 0.000000 2 4 (51 high-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NMZ"))) (52 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (54 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x11 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x12 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str i21 > ] @ -5@1@-1@-1@-1@-1@-1@-1@-1@-1@(64 head-comp 0.000000 0 5 (50 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (49 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (63 high-no-rel-nominalized-clause 0.000000 2 5 (62 head-subj 0.000000 2 5 (60 head-comp 0.000000 2 4 (58 high-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NMZ"))) (59 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (61 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun3_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun1_n_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_noun2_n_rel"<-1:-1> LBL: h17 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x11 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h9 h7 qeq h5 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str i21 > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-subj 0.000000 0 5 (57 head-comp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (56 high-no-rel-nominalized-clause 0.000000 1 4 (55 head-comp 0.000000 1 4 (53 head-subj 0.000000 1 3 (51 high-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NMZ"))) (52 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (54 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3")))))) (65 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x7 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x8 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str i21 > ] @ -6@1@-1@-1@-1@-1@-1@-1@-1@-1@(67 head-subj 0.000000 0 5 (64 head-comp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (63 high-no-rel-nominalized-clause 0.000000 1 4 (62 head-subj 0.000000 1 4 (60 head-comp 0.000000 1 3 (58 high-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NMZ"))) (59 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (61 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3")))))) (65 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_noun3_n_rel"<-1:-1> LBL: h13 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x7 RSTR: h15 BODY: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h5 h11 qeq h9 h15 qeq h13 h19 qeq h17 > ICONS: < e2 info-str i21 > ] @ +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 head-comp 0.000000 0 3 (29 head-subj 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (28 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (30 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("V" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(35 head-subj 0.000000 0 3 (33 head-comp 0.000000 0 2 (4 tverb 0.000000 0 1 ("tverb")) (32 bare-np 0.000000 1 2 (5 noun1 0.000000 1 2 ("noun1")))) (34 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2"))))@@("S" ("VP" ("V" ("tverb")) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(57 head-comp 0.000000 0 5 (50 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (49 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (56 high-no-rel-nominalized-clause 0.000000 2 5 (55 head-comp 0.000000 2 5 (53 head-subj 0.000000 2 4 (51 high-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NMZ"))) (52 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (54 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun3")))) ("NP" ("S" ("V" ("V" ("V" ("tverb-NMZ"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x12 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x12 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@1@-1@-1@-1@-1@-1@-1@-1@-1@(64 head-comp 0.000000 0 5 (50 head-subj 0.000000 0 2 (6 cverb 0.000000 0 1 ("cverb")) (49 bare-np 0.000000 1 2 (7 noun3 0.000000 1 2 ("noun3")))) (63 high-no-rel-nominalized-clause 0.000000 2 5 (62 head-subj 0.000000 2 5 (60 head-comp 0.000000 2 4 (58 high-suffix 0.000000 2 3 (8 tverb 0.000000 2 3 ("tverb-NMZ"))) (59 bare-np 0.000000 3 4 (9 noun1 0.000000 3 4 ("noun1")))) (61 bare-np 0.000000 4 5 (10 noun2 0.000000 4 5 ("noun2"))))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun3")))) ("NP" ("S" ("VP" ("V" ("V" ("tverb-NMZ"))) ("NP" ("N" ("noun1")))) ("NP" ("N" ("noun2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun3_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_noun1_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_noun2_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 head-subj 0.000000 0 5 (57 head-comp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (56 high-no-rel-nominalized-clause 0.000000 1 4 (55 head-comp 0.000000 1 4 (53 head-subj 0.000000 1 3 (51 high-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NMZ"))) (52 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (54 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3")))))) (65 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("NP" ("S" ("V" ("V" ("V" ("tverb-NMZ"))) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x8 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(67 head-subj 0.000000 0 5 (64 head-comp 0.000000 0 4 (6 cverb 0.000000 0 1 ("cverb")) (63 high-no-rel-nominalized-clause 0.000000 1 4 (62 head-subj 0.000000 1 4 (60 head-comp 0.000000 1 3 (58 high-suffix 0.000000 1 2 (7 tverb 0.000000 1 2 ("tverb-NMZ"))) (59 bare-np 0.000000 2 3 (8 noun2 0.000000 2 3 ("noun2")))) (61 bare-np 0.000000 3 4 (9 noun3 0.000000 3 4 ("noun3")))))) (65 bare-np 0.000000 4 5 (10 noun1 0.000000 4 5 ("noun1"))))@@("S" ("VP" ("V" ("cverb")) ("NP" ("S" ("VP" ("V" ("V" ("tverb-NMZ"))) ("NP" ("N" ("noun2")))) ("NP" ("N" ("noun3")))))) ("NP" ("N" ("noun1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_tverb_v_rel"<-1:-1> LBL: h5 ARG0: e6 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x7 RSTR: h14 BODY: h15 ] [ "_noun3_n_rel"<-1:-1> LBL: h16 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h4 qeq h5 h10 qeq h12 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/run b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/run index a93a92dcb..9fa2c33ce 100644 --- a/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/run +++ b/tests/regression/home/gold/ccomp-pseudo5-vinitial-high-empty/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1400@-1@-1@5@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@9@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1476@-1@-1@5@1@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 14:33:18@26-aug-2020 14:33:18@-1@ diff --git a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/item b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/item index 2d691274f..c52975397 100644 --- a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/item +++ b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/item @@ -1,4 +1,4 @@ -1@unknown@formal@none@1@S@noun1 tverb noun2@@@@@@@olzama@2017-12-22 -2@unknown@formal@none@1@@noun1 noun2 tverb@@@@@@@olzama@2017-12-22 -3@unknown@formal@none@1@S@cverb noun1 noun2 tverb noun3 comp1@@@@@@@olzama@2017-12-22 -4@unknown@formal@none@1@S@noun2 tverb noun3 comp1 cverb noun1@@@@@@@olzama@2017-12-22 +1@unknown@formal@none@1@S@noun1 tverb noun2@@@@1@-1@@olzama@22-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb@@@@1@-1@@olzama@22-dec-2017 +3@unknown@formal@none@1@S@cverb noun1 noun2 tverb noun3 comp1@@@@1@-1@@olzama@22-dec-2017 +4@unknown@formal@none@1@S@noun2 tverb noun3 comp1 cverb noun1@@@@1@-1@@olzama@22-dec-2017 diff --git a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/parse b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/parse index 428d3d22e..b6b5ad04e 100644 --- a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/parse +++ b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/parse @@ -1,4 +1,4 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@94372@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@72808@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@224840@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@215056@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@168@11@-1@-1@156848@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@5@-1@-1@-1@-1@-1@-1@-1@249@24@-1@-1@95172@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@8@14@-1@-1@-1@-1@-1@-1@-1@282@52@-1@-1@412248@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@6@14@-1@-1@-1@-1@-1@-1@-1@491@86@-1@-1@396248@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/result b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/result index 85c481c4c..c35ff04f1 100644 --- a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/result +++ b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/result @@ -1,3 +1,3 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(28 comp-head 0.000000 0 3 (25 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (27 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (26 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(64 head-comp 0.000000 0 6 (58 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (57 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (63 comp-head 0.000000 2 6 (62 comp-head 0.000000 2 5 (59 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (61 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (60 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comps1_complementizer1 0.000000 5 6 ("comp1"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_noun1_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h4 qeq h14 h7 qeq h5 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 comp-head 0.000000 0 6 (59 comp-head 0.000000 0 4 (58 comp-head 0.000000 0 3 (55 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (57 head-subj 0.000000 1 3 (8 tverb 0.000000 1 2 ("tverb")) (56 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comps1_complementizer1 0.000000 3 4 ("comp1"))) (61 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (60 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun3_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(27 comp-head 0.000000 0 3 (24 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (26 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (25 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(63 head-comp 0.000000 0 6 (57 head-subj 0.000000 0 2 (7 cverb 0.000000 0 1 ("cverb")) (56 bare-np 0.000000 1 2 (8 noun1 0.000000 1 2 ("noun1")))) (62 comp-head 0.000000 2 6 (61 comp-head 0.000000 2 5 (58 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (60 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (59 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comp1 0.000000 5 6 ("comp1"))))@@("S" ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))) ("CP" ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun3"))))) ("C" ("comp1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(61 comp-head 0.000000 0 6 (58 comp-head 0.000000 0 4 (57 comp-head 0.000000 0 3 (54 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (56 head-subj 0.000000 1 3 (8 tverb 0.000000 1 2 ("tverb")) (55 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comp1 0.000000 3 4 ("comp1"))) (60 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (59 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun3"))))) ("C" ("comp1"))) ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun3_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/run b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/run index 5b083e9b1..d7577fb35 100644 --- a/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/run +++ b/tests/regression/home/gold/ccomp-pseudo6-ovs-extra-same-oblig-aft/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1398@-1@-1@6@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@4@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1474@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 15:09:03@26-aug-2020 15:09:03@-1@ diff --git a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/item b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/item index a30e980f2..92f62c474 100644 --- a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/item +++ b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/item @@ -1,6 +1,6 @@ -1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@@@@olzama@2017-12-26 -2@unknown@formal@none@1@@noun1 tverb noun2@@@@@@@olzama@2017-12-26 -3@unknown@formal@none@1@@noun1 noun2 noun3 tverb comp1 cverb@@@@@@@olzama@2017-12-26 -4@unknown@formal@none@1@S@noun1 cverb noun2 noun3 tverb comp1@@@@@@@olzama@2017-12-26 -5@unknown@formal@none@1@@noun1 cverb comp1 noun2 noun3 tverb@@@@@@@olzama@2017-12-26 -6@unknown@formal@none@1@@noun1 comp1 noun2 noun3 tverb cverb@@@@@@@olzama@2017-12-26 +1@unknown@formal@none@1@S@noun1 noun2 tverb@@@@1@-1@@olzama@26-dec-2017 +2@unknown@formal@none@1@@noun1 tverb noun2@@@@1@-1@@olzama@26-dec-2017 +3@unknown@formal@none@1@@noun1 noun2 noun3 tverb comp1 cverb@@@@1@-1@@olzama@26-dec-2017 +4@unknown@formal@none@1@S@noun1 cverb noun2 noun3 tverb comp1@@@@1@-1@@olzama@26-dec-2017 +5@unknown@formal@none@1@@noun1 cverb comp1 noun2 noun3 tverb@@@@1@-1@@olzama@26-dec-2017 +6@unknown@formal@none@1@@noun1 comp1 noun2 noun3 tverb cverb@@@@1@-1@@olzama@26-dec-2017 diff --git a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/parse b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/parse index e8dbae1d1..a82b3cb70 100644 --- a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/parse +++ b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/parse @@ -1,6 +1,6 @@ -1@1@1@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@129556@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@112472@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@267232@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@297264@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@222996@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@250232@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@173@15@-1@-1@203528@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@6@-1@-1@-1@-1@-1@-1@-1@265@33@-1@-1@156812@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@16@12@-1@-1@-1@-1@-1@-1@-1@306@67@-1@-1@387620@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@15@14@-1@-1@-1@-1@-1@-1@-1@349@102@-1@-1@527968@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@11@-1@-1@-1@-1@-1@-1@-1@567@138@-1@-1@304948@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "comp1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@11@-1@-1@-1@-1@-1@-1@-1@606@169@-1@-1@354300@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/result b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/result index 4d3ad4eee..2435f0b1d 100644 --- a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/result +++ b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/result @@ -1,2 +1,2 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(32 subj-head 0.000000 0 3 (29 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (31 comp-head 0.000000 1 3 (30 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(71 subj-head 0.000000 0 6 (64 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (70 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (69 comp-head 0.000000 2 6 (68 subj-head 0.000000 2 5 (65 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (67 comp-head 0.000000 3 5 (66 bare-np 0.000000 3 4 (10 noun3 0.000000 3 4 ("noun3"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_noun3_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < e2 info-str e20 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 subj-head 0.000000 0 3 (28 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (30 comp-head 0.000000 1 3 (29 bare-np 0.000000 1 2 (5 noun2 0.000000 1 2 ("noun2"))) (6 tverb 0.000000 2 3 ("tverb"))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("NP" ("N" ("noun2"))) ("V" ("tverb"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 subj-head 0.000000 0 6 (63 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (69 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (68 comp-head 0.000000 2 6 (67 subj-head 0.000000 2 5 (64 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (66 comp-head 0.000000 3 5 (65 bare-np 0.000000 3 4 (10 noun3 0.000000 3 4 ("noun3"))) (11 tverb 0.000000 4 5 ("tverb")))) (12 comp1 0.000000 5 6 ("comp1")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("S" ("NP" ("N" ("noun2"))) ("VP" ("NP" ("N" ("noun3"))) ("V" ("tverb")))) ("C" ("comp1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_noun3_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_tverb_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/run b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/run index b42a290b0..86078426e 100644 --- a/tests/regression/home/gold/ccomp-sov-extra-oblig-after/run +++ b/tests/regression/home/gold/ccomp-sov-extra-oblig-after/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1400@-1@-1@6@1@4@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@6@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1476@-1@-1@6@0@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 15:12:29@26-aug-2020 15:12:29@-1@ diff --git a/tests/regression/home/gold/ccomp-wgg/item b/tests/regression/home/gold/ccomp-wgg/item index b05ddf8a8..836bc5ae5 100644 --- a/tests/regression/home/gold/ccomp-wgg/item +++ b/tests/regression/home/gold/ccomp-wgg/item @@ -1,12 +1,12 @@ -1@unknown@formal@none@1@S@Athu ngawi-ka mathapurda wangka-ngura@@@@@@@olzama@2018-07-31 -2@unknown@formal@none@1@@Athu ngawi-ka mathapurda wangka@@@@@@@olzama@2018-07-31 -3@unknown@formal@none@1@@Athu ngawi-ka mathapurda wangka-ka@@@@@@@olzama@2018-07-31 -4@unknown@formal@none@1@S@Athu ngawi-ngura mathapurda wangka-ngura@@@@@@@olzama@2018-07-31 -5@unknown@formal@none@1@S@Athu kathi wadnhi-ra@@@@@@@olzama@2018-07-31 -6@unknown@formal@none@1@S@Athu wadnhi-ra kathi@@@@@@@olzama@2018-07-31 -7@unknown@formal@none@1@S@wadnhi-ra Athu kathi@@@@@@@olzama@2018-07-31 -8@unknown@formal@none@1@S@kathi Athu wadnhi-ra@@@@@@@olzama@2018-07-31 -9@unknown@formal@none@1@S@wadnhi-ra kathi Athu@@@@@@@olzama@2018-07-31 -10@unknown@formal@none@1@S@Athu mathapurda wangka-ngura ngawi-ka@@@@@@@olzama@2018-07-31 -11@unknown@formal@none@1@S@mathapurda wangka-ngura Athu ngawi-ka@@@@@@@olzama@2018-07-31 -12@unknown@formal@none@1@S@ngawi-ka athu mathapurda wangka-ngura@@@@@@@olzama@2018-07-31 +1@unknown@formal@none@1@S@Athu ngawi-ka mathapurda wangka-ngura@@@@1@-1@@olzama@31-jul-2018 +2@unknown@formal@none@1@@Athu ngawi-ka mathapurda wangka@@@@1@-1@@olzama@31-jul-2018 +3@unknown@formal@none@1@@Athu ngawi-ka mathapurda wangka-ka@@@@1@-1@@olzama@31-jul-2018 +4@unknown@formal@none@1@S@Athu ngawi-ngura mathapurda wangka-ngura@@@@1@-1@@olzama@31-jul-2018 +5@unknown@formal@none@1@S@Athu kathi wadnhi-ra@@@@1@-1@@olzama@31-jul-2018 +6@unknown@formal@none@1@S@Athu wadnhi-ra kathi@@@@1@-1@@olzama@31-jul-2018 +7@unknown@formal@none@1@S@wadnhi-ra Athu kathi@@@@1@-1@@olzama@31-jul-2018 +8@unknown@formal@none@1@S@kathi Athu wadnhi-ra@@@@1@-1@@olzama@31-jul-2018 +9@unknown@formal@none@1@S@wadnhi-ra kathi Athu@@@@1@-1@@olzama@31-jul-2018 +10@unknown@formal@none@1@S@Athu mathapurda wangka-ngura ngawi-ka@@@@1@-1@@olzama@31-jul-2018 +11@unknown@formal@none@1@S@mathapurda wangka-ngura Athu ngawi-ka@@@@1@-1@@olzama@31-jul-2018 +12@unknown@formal@none@1@S@ngawi-ka athu mathapurda wangka-ngura@@@@1@-1@@olzama@31-jul-2018 diff --git a/tests/regression/home/gold/ccomp-wgg/parse b/tests/regression/home/gold/ccomp-wgg/parse index 95876be09..9a3437b72 100644 --- a/tests/regression/home/gold/ccomp-wgg/parse +++ b/tests/regression/home/gold/ccomp-wgg/parse @@ -1,12 +1,12 @@ -1@1@1@-1@0@-1@0@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@270756@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@227440@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@233560@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@270760@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@175956@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@192356@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@193156@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@177396@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@195036@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@260476@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@260916@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@270796@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:13>, 1, "ngawi-ka", 0, "null") (3, 2, 3, <14:24>, 1, "mathapurda", 0, "null") (4, 3, 4, <25:37>, 1, "wangka-ngura", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:13>, 1, "ngawi-ka", 0, "null") (3, 2, 3, <14:24>, 1, "mathapurda", 0, "null") (4, 3, 4, <25:37>, 1, "wangka-ngura", 0, "null")@1@-1@4@4@-1@5@-1@-1@-1@-1@-1@-1@18@10@-1@-1@-1@-1@-1@-1@-1@431@32@-1@-1@437288@-1@-1@-1@@@ +2@0@2@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:13>, 1, "ngawi-ka", 0, "null") (3, 2, 3, <14:24>, 1, "mathapurda", 0, "null") (4, 3, 4, <25:31>, 1, "wangka", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:13>, 1, "ngawi-ka", 0, "null") (3, 2, 3, <14:24>, 1, "mathapurda", 0, "null") (4, 3, 4, <25:31>, 1, "wangka", 0, "null")@0@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@17@7@-1@-1@-1@-1@-1@-1@-1@608@67@-1@-1@319336@-1@-1@-1@@@ +3@0@3@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:13>, 1, "ngawi-ka", 0, "null") (3, 2, 3, <14:24>, 1, "mathapurda", 0, "null") (4, 3, 4, <25:34>, 1, "wangka-ka", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:13>, 1, "ngawi-ka", 0, "null") (3, 2, 3, <14:24>, 1, "mathapurda", 0, "null") (4, 3, 4, <25:34>, 1, "wangka-ka", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@18@8@-1@-1@-1@-1@-1@-1@-1@647@97@-1@-1@329544@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:16>, 1, "ngawi-ngura", 0, "null") (3, 2, 3, <17:27>, 1, "mathapurda", 0, "null") (4, 3, 4, <28:40>, 1, "wangka-ngura", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:16>, 1, "ngawi-ngura", 0, "null") (3, 2, 3, <17:27>, 1, "mathapurda", 0, "null") (4, 3, 4, <28:40>, 1, "wangka-ngura", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@18@10@-1@-1@-1@-1@-1@-1@-1@688@129@-1@-1@437296@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:10>, 1, "kathi", 0, "null") (3, 2, 3, <11:20>, 1, "wadnhi-ra", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:10>, 1, "kathi", 0, "null") (3, 2, 3, <11:20>, 1, "wadnhi-ra", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@7@-1@-1@-1@-1@-1@-1@-1@854@156@-1@-1@270392@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:14>, 1, "wadnhi-ra", 0, "null") (3, 2, 3, <15:20>, 1, "kathi", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:14>, 1, "wadnhi-ra", 0, "null") (3, 2, 3, <15:20>, 1, "kathi", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@8@-1@-1@-1@-1@-1@-1@-1@973@184@-1@-1@308472@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:9>, 1, "wadnhi-ra", 0, "null") (2, 1, 2, <10:14>, 1, "Athu", 0, "null") (3, 2, 3, <16:21>, 1, "kathi", 0, "null")@3@(1, 0, 1, <0:9>, 1, "wadnhi-ra", 0, "null") (2, 1, 2, <10:14>, 1, "Athu", 0, "null") (3, 2, 3, <16:21>, 1, "kathi", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@7@-1@-1@-1@-1@-1@-1@-1@1087@212@-1@-1@310952@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:5>, 1, "kathi", 0, "null") (2, 1, 2, <6:10>, 1, "Athu", 0, "null") (3, 2, 3, <12:21>, 1, "wadnhi-ra", 0, "null")@3@(1, 0, 1, <0:5>, 1, "kathi", 0, "null") (2, 1, 2, <6:10>, 1, "Athu", 0, "null") (3, 2, 3, <12:21>, 1, "wadnhi-ra", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@10@7@-1@-1@-1@-1@-1@-1@-1@1197@237@-1@-1@273072@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:9>, 1, "wadnhi-ra", 0, "null") (2, 1, 2, <10:15>, 1, "kathi", 0, "null") (3, 2, 3, <16:20>, 1, "Athu", 0, "null")@3@(1, 0, 1, <0:9>, 1, "wadnhi-ra", 0, "null") (2, 1, 2, <10:15>, 1, "kathi", 0, "null") (3, 2, 3, <16:20>, 1, "Athu", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@7@-1@-1@-1@-1@-1@-1@-1@1306@265@-1@-1@312792@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:15>, 1, "mathapurda", 0, "null") (3, 2, 3, <16:28>, 1, "wangka-ngura", 0, "null") (4, 3, 4, <29:37>, 1, "ngawi-ka", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Athu", 0, "null") (2, 1, 2, <5:15>, 1, "mathapurda", 0, "null") (3, 2, 3, <16:28>, 1, "wangka-ngura", 0, "null") (4, 3, 4, <29:37>, 1, "ngawi-ka", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@17@9@-1@-1@-1@-1@-1@-1@-1@1431@300@-1@-1@415088@-1@-1@-1@@@ +11@0@11@4@(1, 0, 1, <0:10>, 1, "mathapurda", 0, "null") (2, 1, 2, <11:23>, 1, "wangka-ngura", 0, "null") (3, 2, 3, <24:28>, 1, "Athu", 0, "null") (4, 3, 4, <29:37>, 1, "ngawi-ka", 0, "null")@4@(1, 0, 1, <0:10>, 1, "mathapurda", 0, "null") (2, 1, 2, <11:23>, 1, "wangka-ngura", 0, "null") (3, 2, 3, <24:28>, 1, "Athu", 0, "null") (4, 3, 4, <29:37>, 1, "ngawi-ka", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@17@9@-1@-1@-1@-1@-1@-1@-1@1610@337@-1@-1@410488@-1@-1@-1@@@ +12@0@12@4@(1, 0, 1, <0:8>, 1, "ngawi-ka", 0, "null") (2, 1, 2, <9:13>, 1, "athu", 0, "null") (3, 2, 3, <15:25>, 1, "mathapurda", 0, "null") (4, 3, 4, <26:38>, 1, "wangka-ngura", 0, "null")@4@(1, 0, 1, <0:8>, 1, "ngawi-ka", 0, "null") (2, 1, 2, <9:13>, 1, "athu", 0, "null") (3, 2, 3, <15:25>, 1, "mathapurda", 0, "null") (4, 3, 4, <26:38>, 1, "wangka-ngura", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@19@9@-1@-1@-1@-1@-1@-1@-1@1781@376@-1@-1@433048@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/ccomp-wgg/result b/tests/regression/home/gold/ccomp-wgg/result index 8b6d48468..ff07165aa 100644 --- a/tests/regression/home/gold/ccomp-wgg/result +++ b/tests/regression/home/gold/ccomp-wgg/result @@ -1,10 +1,10 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 subj-head 0.000000 0 4 (62 bare-np 0.000000 0 1 (5 athu 0.000000 0 1 ("Athu"))) (67 head-comp 0.000000 1 4 (63 past-suffix 0.000000 1 2 (6 ngawi 0.000000 1 2 ("ngawi-ka"))) (66 subj-head 0.000000 2 4 (64 bare-np 0.000000 2 3 (7 mathapurda 0.000000 2 3 ("mathapurda"))) (65 cont-suffix 0.000000 3 4 (8 wangka 0.000000 3 4 ("wangka-ngura"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_old.man_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sing_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 > ICONS: < e2 info-str e15 > ] @ -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 subj-head 0.000000 0 4 (62 bare-np 0.000000 0 1 (5 athu 0.000000 0 1 ("Athu"))) (67 head-comp 0.000000 1 4 (63 cont-suffix 0.000000 1 2 (6 ngawi 0.000000 1 2 ("ngawi-ngura"))) (66 subj-head 0.000000 2 4 (64 bare-np 0.000000 2 3 (7 mathapurda 0.000000 2 3 ("mathapurda"))) (65 cont-suffix 0.000000 3 4 (8 wangka 0.000000 3 4 ("wangka-ngura"))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_old.man_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sing_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 > ICONS: < e2 info-str e15 > ] @ -5@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 subj-head 0.000000 0 3 (42 bare-np 0.000000 0 1 (4 athu 0.000000 0 1 ("Athu"))) (45 comp-head 0.000000 1 3 (43 bare-np 0.000000 1 2 (5 kathi 0.000000 1 2 ("kathi"))) (44 pres-suffix 0.000000 2 3 (6 wadnhi 0.000000 2 3 ("wadnhi-ra")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_kathi_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ] @ -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 subj-head 0.000000 0 3 (45 bare-np 0.000000 0 1 (4 athu 0.000000 0 1 ("Athu"))) (48 head-comp 0.000000 1 3 (46 pres-suffix 0.000000 1 2 (5 wadnhi 0.000000 1 2 ("wadnhi-ra"))) (47 bare-np 0.000000 2 3 (6 kathi 0.000000 2 3 ("kathi")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_kathi_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 head-comp 0.000000 0 3 (47 head-subj 0.000000 0 2 (45 pres-suffix 0.000000 0 1 (4 wadnhi 0.000000 0 1 ("wadnhi-ra"))) (46 bare-np 0.000000 1 2 (5 athu 0.000000 1 2 ("Athu")))) (48 bare-np 0.000000 2 3 (6 kathi 0.000000 2 3 ("kathi"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_1sg_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_kathi_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 comp-head 0.000000 0 3 (42 bare-np 0.000000 0 1 (4 kathi 0.000000 0 1 ("kathi"))) (45 subj-head 0.000000 1 3 (43 bare-np 0.000000 1 2 (5 athu 0.000000 1 2 ("Athu"))) (44 pres-suffix 0.000000 2 3 (6 wadnhi 0.000000 2 3 ("wadnhi-ra")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_kathi_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_1sg_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -9@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 head-subj 0.000000 0 3 (47 head-comp 0.000000 0 2 (45 pres-suffix 0.000000 0 1 (4 wadnhi 0.000000 0 1 ("wadnhi-ra"))) (46 bare-np 0.000000 1 2 (5 kathi 0.000000 1 2 ("kathi")))) (48 bare-np 0.000000 2 3 (6 athu 0.000000 2 3 ("Athu"))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_kathi_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_1sg_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ] @ -10@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 subj-head 0.000000 0 4 (60 bare-np 0.000000 0 1 (5 athu 0.000000 0 1 ("Athu"))) (65 comp-head 0.000000 1 4 (63 subj-head 0.000000 1 3 (61 bare-np 0.000000 1 2 (6 mathapurda 0.000000 1 2 ("mathapurda"))) (62 cont-suffix 0.000000 2 3 (7 wangka 0.000000 2 3 ("wangka-ngura")))) (64 past-suffix 0.000000 3 4 (8 ngawi 0.000000 3 4 ("ngawi-ka")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_1sg_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_old.man_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sing_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x9 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 h15 qeq h13 > ICONS: < e2 info-str e14 > ] @ -11@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 comp-head 0.000000 0 4 (62 subj-head 0.000000 0 2 (60 bare-np 0.000000 0 1 (5 mathapurda 0.000000 0 1 ("mathapurda"))) (61 cont-suffix 0.000000 1 2 (6 wangka 0.000000 1 2 ("wangka-ngura")))) (65 subj-head 0.000000 2 4 (63 bare-np 0.000000 2 3 (7 athu 0.000000 2 3 ("Athu"))) (64 past-suffix 0.000000 3 4 (8 ngawi 0.000000 3 4 ("ngawi-ka")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_old.man_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sing_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x5 ] [ "_1sg_n_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 RSTR: h13 BODY: h14 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h13 qeq h11 h15 qeq h9 > ICONS: < e2 info-str e10 > ] @ -12@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 head-comp 0.000000 0 4 (64 head-subj 0.000000 0 2 (62 past-suffix 0.000000 0 1 (5 ngawi 0.000000 0 1 ("ngawi-ka"))) (63 bare-np 0.000000 1 2 (6 athu 0.000000 1 2 ("athu")))) (67 subj-head 0.000000 2 4 (65 bare-np 0.000000 2 3 (7 mathapurda 0.000000 2 3 ("mathapurda"))) (66 cont-suffix 0.000000 3 4 (8 wangka 0.000000 3 4 ("wangka-ngura")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ARG2: h4 ] [ "_1sg_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_old.man_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sing_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h4 qeq h14 h7 qeq h5 h12 qeq h9 > ICONS: < e2 info-str e15 > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 subj-head 0.000000 0 4 (62 bare-np 0.000000 0 1 (5 athu 0.000000 0 1 ("Athu"))) (67 head-comp 0.000000 1 4 (63 past-suffix 0.000000 1 2 (6 ngawi 0.000000 1 2 ("ngawi-ka"))) (66 subj-head 0.000000 2 4 (64 bare-np 0.000000 2 3 (7 mathapurda 0.000000 2 3 ("mathapurda"))) (65 cont-suffix 0.000000 3 4 (8 wangka 0.000000 3 4 ("wangka-ngura"))))))@@("S" ("NP" ("N" ("Athu"))) ("VP" ("V" ("V" ("ngawi-ka"))) ("S" ("NP" ("N" ("mathapurda"))) ("VP" ("VP" ("wangka-ngura"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h11 BODY: h12 ] [ "_old.man_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_sing_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 subj-head 0.000000 0 4 (62 bare-np 0.000000 0 1 (5 athu 0.000000 0 1 ("Athu"))) (67 head-comp 0.000000 1 4 (63 cont-suffix 0.000000 1 2 (6 ngawi 0.000000 1 2 ("ngawi-ngura"))) (66 subj-head 0.000000 2 4 (64 bare-np 0.000000 2 3 (7 mathapurda 0.000000 2 3 ("mathapurda"))) (65 cont-suffix 0.000000 3 4 (8 wangka 0.000000 3 4 ("wangka-ngura"))))))@@("S" ("NP" ("N" ("Athu"))) ("VP" ("V" ("V" ("ngawi-ngura"))) ("S" ("NP" ("N" ("mathapurda"))) ("VP" ("VP" ("wangka-ngura"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h11 BODY: h12 ] [ "_old.man_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_sing_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 subj-head 0.000000 0 3 (42 bare-np 0.000000 0 1 (4 athu 0.000000 0 1 ("Athu"))) (45 comp-head 0.000000 1 3 (43 bare-np 0.000000 1 2 (5 kathi 0.000000 1 2 ("kathi"))) (44 pres-suffix 0.000000 2 3 (6 wadnhi 0.000000 2 3 ("wadnhi-ra")))))@@("S" ("NP" ("N" ("Athu"))) ("VP" ("NP" ("N" ("kathi"))) ("V" ("V" ("wadnhi-ra")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_kathi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 subj-head 0.000000 0 3 (45 bare-np 0.000000 0 1 (4 athu 0.000000 0 1 ("Athu"))) (48 head-comp 0.000000 1 3 (46 pres-suffix 0.000000 1 2 (5 wadnhi 0.000000 1 2 ("wadnhi-ra"))) (47 bare-np 0.000000 2 3 (6 kathi 0.000000 2 3 ("kathi")))))@@("S" ("NP" ("N" ("Athu"))) ("VP" ("V" ("V" ("wadnhi-ra"))) ("NP" ("N" ("kathi")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_kathi_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 head-comp 0.000000 0 3 (47 head-subj 0.000000 0 2 (45 pres-suffix 0.000000 0 1 (4 wadnhi 0.000000 0 1 ("wadnhi-ra"))) (46 bare-np 0.000000 1 2 (5 athu 0.000000 1 2 ("Athu")))) (48 bare-np 0.000000 2 3 (6 kathi 0.000000 2 3 ("kathi"))))@@("S" ("V" ("V" ("V" ("wadnhi-ra"))) ("NP" ("N" ("Athu")))) ("NP" ("N" ("kathi"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_kathi_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 comp-head 0.000000 0 3 (42 bare-np 0.000000 0 1 (4 kathi 0.000000 0 1 ("kathi"))) (45 subj-head 0.000000 1 3 (43 bare-np 0.000000 1 2 (5 athu 0.000000 1 2 ("Athu"))) (44 pres-suffix 0.000000 2 3 (6 wadnhi 0.000000 2 3 ("wadnhi-ra")))))@@("S" ("NP" ("N" ("kathi"))) ("V" ("NP" ("N" ("Athu"))) ("V" ("V" ("wadnhi-ra")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h6 BODY: h7 ] [ "_kathi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_1sg_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 head-subj 0.000000 0 3 (47 head-comp 0.000000 0 2 (45 pres-suffix 0.000000 0 1 (4 wadnhi 0.000000 0 1 ("wadnhi-ra"))) (46 bare-np 0.000000 1 2 (5 kathi 0.000000 1 2 ("kathi")))) (48 bare-np 0.000000 2 3 (6 athu 0.000000 2 3 ("Athu"))))@@("S" ("VP" ("V" ("V" ("wadnhi-ra"))) ("NP" ("N" ("kathi")))) ("NP" ("N" ("Athu"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_cook_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_kathi_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_1sg_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 subj-head 0.000000 0 4 (60 bare-np 0.000000 0 1 (5 athu 0.000000 0 1 ("Athu"))) (65 comp-head 0.000000 1 4 (63 subj-head 0.000000 1 3 (61 bare-np 0.000000 1 2 (6 mathapurda 0.000000 1 2 ("mathapurda"))) (62 cont-suffix 0.000000 2 3 (7 wangka 0.000000 2 3 ("wangka-ngura")))) (64 past-suffix 0.000000 3 4 (8 ngawi 0.000000 3 4 ("ngawi-ka")))))@@("S" ("NP" ("N" ("Athu"))) ("VP" ("S" ("NP" ("N" ("mathapurda"))) ("VP" ("VP" ("wangka-ngura")))) ("V" ("V" ("ngawi-ka")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_1sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_old.man_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sing_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x9 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 comp-head 0.000000 0 4 (62 subj-head 0.000000 0 2 (60 bare-np 0.000000 0 1 (5 mathapurda 0.000000 0 1 ("mathapurda"))) (61 cont-suffix 0.000000 1 2 (6 wangka 0.000000 1 2 ("wangka-ngura")))) (65 subj-head 0.000000 2 4 (63 bare-np 0.000000 2 3 (7 athu 0.000000 2 3 ("Athu"))) (64 past-suffix 0.000000 3 4 (8 ngawi 0.000000 3 4 ("ngawi-ka")))))@@("S" ("S" ("NP" ("N" ("mathapurda"))) ("VP" ("VP" ("wangka-ngura")))) ("V" ("NP" ("N" ("Athu"))) ("V" ("V" ("ngawi-ka")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h6 BODY: h7 ] [ "_old.man_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sing_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x5 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h12 BODY: h13 ] [ "_1sg_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h14 h15 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 head-comp 0.000000 0 4 (64 head-subj 0.000000 0 2 (62 past-suffix 0.000000 0 1 (5 ngawi 0.000000 0 1 ("ngawi-ka"))) (63 bare-np 0.000000 1 2 (6 athu 0.000000 1 2 ("athu")))) (67 subj-head 0.000000 2 4 (65 bare-np 0.000000 2 3 (7 mathapurda 0.000000 2 3 ("mathapurda"))) (66 cont-suffix 0.000000 3 4 (8 wangka 0.000000 3 4 ("wangka-ngura")))))@@("S" ("V" ("V" ("V" ("ngawi-ka"))) ("NP" ("N" ("athu")))) ("S" ("NP" ("N" ("mathapurda"))) ("VP" ("VP" ("wangka-ngura")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: past E.ASPECT: non-cont E.MOOD: mood ] RELS: < [ "_hear_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h11 BODY: h12 ] [ "_old.man_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_sing_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: cont E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/ccomp-wgg/run b/tests/regression/home/gold/ccomp-wgg/run index 7e730860c..a79778b5a 100644 --- a/tests/regression/home/gold/ccomp-wgg/run +++ b/tests/regression/home/gold/ccomp-wgg/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1439@-1@-1@6@3@7@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@12@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@ccomp@1505@-1@-1@6@3@7@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 15:16:31@26-aug-2020 15:16:31@-1@ diff --git a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/item b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/item index 3afe9e65a..40dfe9117 100644 --- a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/item +++ b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/item @@ -1,13 +1,13 @@ -1@unknown@formal@none@1@S@noun1 tverb noun2@@@@@@@olzama@2017-12-20 -2@unknown@formal@none@1@@noun1 noun2 tverb@@@@@@@olzama@2017-12-20 -3@unknown@formal@none@1@@tverb noun1 noun2@@@@@@@olzama@2017-12-20 -4@unknown@formal@none@1@@noun1 cverb noun2@@@@@@@olzama@2017-12-20 -5@unknown@formal@none@1@@noun1 noun2 cverb@@@@@@@olzama@2017-12-20 -6@unknown@formal@none@1@@cverb noun1 noun2@@@@@@@olzama@2017-12-20 -7@unknown@formal@none@1@S@noun1 cverb comp1 noun2 tverb noun3@@@@@@@olzama@2017-12-20 -8@unknown@formal@none@1@S@noun1 cverb noun2 tverb noun3 comp1@@@@@@@olzama@2017-12-20 -9@unknown@formal@none@1@@cverb noun1 noun2 tverb noun3 comp1@@@@@@@olzama@2017-12-20 -10@unknown@formal@none@1@@noun1 noun2 tverb noun3 comp1 cverb@@@@@@@olzama@2017-12-20 -11@unknown@formal@none@1@@noun1 cverb noun2 tverb noun3@@@@@@@olzama@2017-12-20 -12@unknown@formal@none@1@S@comp1 noun2 tverb noun3 cverb noun1@@@@@@@olzama@2017-12-20 -13@unknown@formal@none@1@S@noun2 tverb noun3 comp1 cverb noun1@@@@@@@olzama@2017-12-20 +1@unknown@formal@none@1@S@noun1 tverb noun2@@@@1@-1@@olzama@20-dec-2017 +2@unknown@formal@none@1@@noun1 noun2 tverb@@@@1@-1@@olzama@20-dec-2017 +3@unknown@formal@none@1@@tverb noun1 noun2@@@@1@-1@@olzama@20-dec-2017 +4@unknown@formal@none@1@@noun1 cverb noun2@@@@1@-1@@olzama@20-dec-2017 +5@unknown@formal@none@1@@noun1 noun2 cverb@@@@1@-1@@olzama@20-dec-2017 +6@unknown@formal@none@1@@cverb noun1 noun2@@@@1@-1@@olzama@20-dec-2017 +7@unknown@formal@none@1@S@noun1 cverb comp1 noun2 tverb noun3@@@@1@-1@@olzama@20-dec-2017 +8@unknown@formal@none@1@S@noun1 cverb noun2 tverb noun3 comp1@@@@1@-1@@olzama@20-dec-2017 +9@unknown@formal@none@1@@cverb noun1 noun2 tverb noun3 comp1@@@@1@-1@@olzama@20-dec-2017 +10@unknown@formal@none@1@@noun1 noun2 tverb noun3 comp1 cverb@@@@1@-1@@olzama@20-dec-2017 +11@unknown@formal@none@1@@noun1 cverb noun2 tverb noun3@@@@1@-1@@olzama@20-dec-2017 +12@unknown@formal@none@1@S@comp1 noun2 tverb noun3 cverb noun1@@@@1@-1@@olzama@20-dec-2017 +13@unknown@formal@none@1@S@noun2 tverb noun3 comp1 cverb noun1@@@@1@-1@@olzama@20-dec-2017 diff --git a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/parse b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/parse index 2eb69df2b..07bb428f5 100644 --- a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/parse +++ b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/parse @@ -1,13 +1,13 @@ -1@1@1@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@220636@-1@-1@-1@23-6-2013 14:28:24@0@ -2@1@2@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@140660@-1@-1@-1@23-6-2013 14:28:24@0@ -3@1@3@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@184296@-1@-1@-1@23-6-2013 14:28:24@0@ -4@1@4@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@153776@-1@-1@-1@23-6-2013 14:28:24@0@ -5@1@5@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@138588@-1@-1@-1@23-6-2013 14:28:24@0@ -6@1@6@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@155056@-1@-1@-1@23-6-2013 14:28:24@0@ -7@1@7@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@431840@-1@-1@-1@23-6-2013 14:28:24@0@ -8@1@8@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@578800@-1@-1@-1@23-6-2013 14:28:24@0@ -9@1@9@-1@0@-1@0@0@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@485420@-1@-1@-1@23-6-2013 14:28:24@0@ -10@1@10@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@473828@-1@-1@-1@23-6-2013 14:28:24@0@ -11@1@11@-1@0@-1@0@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@351056@-1@-1@-1@23-6-2013 14:28:24@0@ -12@1@12@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@575136@-1@-1@-1@23-6-2013 14:28:24@0@ -13@1@13@-1@0@-1@0@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@0@0@0@0@0@-1@-1@-1@-1@551816@-1@-1@-1@23-6-2013 14:28:24@0@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@2@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@14@11@-1@-1@-1@-1@-1@-1@-1@308@28@-1@-1@385704@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@7@-1@-1@-1@-1@-1@-1@-1@479@55@-1@-1@196368@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "tverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@16@7@-1@-1@-1@-1@-1@-1@-1@507@81@-1@-1@279932@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@7@-1@-1@-1@-1@-1@-1@-1@536@102@-1@-1@222492@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "cverb", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "cverb", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@6@-1@-1@-1@-1@-1@-1@-1@559@120@-1@-1@190612@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@3@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@6@-1@-1@-1@-1@-1@-1@-1@582@141@-1@-1@224612@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "comp1", 0, "null") (4, 3, 4, <18:23>, 1, "noun2", 0, "null") (5, 4, 5, <24:29>, 1, "tverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun3", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@29@19@-1@-1@-1@-1@-1@-1@-1@658@196@-1@-1@844600@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@49@20@-1@-1@-1@-1@-1@-1@-1@1133@287@-1@-1@1100848@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "cverb", 0, "null") (2, 1, 2, <6:11>, 1, "noun1", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null") (6, 5, 6, <30:35>, 1, "comp1", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@46@17@-1@-1@-1@-1@-1@-1@-1@1586@372@-1@-1@767856@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "comp1", 0, "null") (6, 5, 6, <30:35>, 1, "cverb", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@44@17@-1@-1@-1@-1@-1@-1@-1@1680@440@-1@-1@754240@-1@-1@-1@@@ +11@0@11@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@5@(1, 0, 1, <0:5>, 1, "noun1", 0, "null") (2, 1, 2, <6:11>, 1, "cverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun2", 0, "null") (4, 3, 4, <18:23>, 1, "tverb", 0, "null") (5, 4, 5, <24:29>, 1, "noun3", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@30@16@-1@-1@-1@-1@-1@-1@-1@1757@491@-1@-1@542404@-1@-1@-1@@@ +12@0@12@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "comp1", 0, "null") (2, 1, 2, <6:11>, 1, "noun2", 0, "null") (3, 2, 3, <12:17>, 1, "tverb", 0, "null") (4, 3, 4, <18:23>, 1, "noun3", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@2@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@49@20@-1@-1@-1@-1@-1@-1@-1@1876@567@-1@-1@1085128@-1@-1@-1@@@ +13@0@13@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@6@(1, 0, 1, <0:5>, 1, "noun2", 0, "null") (2, 1, 2, <6:11>, 1, "tverb", 0, "null") (3, 2, 3, <12:17>, 1, "noun3", 0, "null") (4, 3, 4, <18:23>, 1, "comp1", 0, "null") (5, 4, 5, <24:29>, 1, "cverb", 0, "null") (6, 5, 6, <30:35>, 1, "noun1", 0, "null")@2@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@46@19@-1@-1@-1@-1@-1@-1@-1@2328@653@-1@-1@1035840@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/result b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/result index 8fb801c53..9b4152be8 100644 --- a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/result +++ b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/result @@ -1,10 +1,10 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(51 comp-head 0.000000 0 3 (48 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (50 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (49 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ] @ -1@1@-1@-1@-1@-1@-1@-1@-1@-1@(55 subj-head 0.000000 0 3 (52 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (54 head-comp 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (53 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ] @ -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(112 subj-head 0.000000 0 6 (99 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (105 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (104 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (103 subj-head 0.000000 3 6 (100 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (102 head-comp 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (101 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -7@1@-1@-1@-1@-1@-1@-1@-1@-1@(113 subj-head 0.000000 0 6 (99 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (111 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (110 head-comp 0.000000 2 6 (9 comps1_complementizer1 0.000000 2 3 ("comp1")) (109 comp-head 0.000000 3 6 (106 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (108 head-subj 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (107 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(133 subj-head 0.000000 0 6 (120 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (126 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (125 comp-head 0.000000 2 6 (124 subj-head 0.000000 2 5 (121 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (123 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (122 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -8@1@-1@-1@-1@-1@-1@-1@-1@-1@(134 subj-head 0.000000 0 6 (120 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (132 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (131 comp-head 0.000000 2 6 (130 comp-head 0.000000 2 5 (127 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (129 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (128 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comps1_complementizer1 0.000000 5 6 ("comp1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun1_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_noun2_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_noun3_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < e2 info-str e15 > ] @ -12@0@-1@-1@-1@-1@-1@-1@-1@-1@(127 comp-head 0.000000 0 6 (124 head-comp 0.000000 0 4 (7 comps1_complementizer1 0.000000 0 1 ("comp1")) (123 subj-head 0.000000 1 4 (120 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (122 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (121 bare-np 0.000000 3 4 (10 noun3 0.000000 3 4 ("noun3")))))) (126 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (125 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun3_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ -12@1@-1@-1@-1@-1@-1@-1@-1@-1@(133 comp-head 0.000000 0 6 (132 head-comp 0.000000 0 4 (7 comps1_complementizer1 0.000000 0 1 ("comp1")) (131 comp-head 0.000000 1 4 (128 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (130 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (129 bare-np 0.000000 3 4 (10 noun3 0.000000 3 4 ("noun3")))))) (126 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (125 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun3_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ -13@0@-1@-1@-1@-1@-1@-1@-1@-1@(123 comp-head 0.000000 0 6 (120 comp-head 0.000000 0 4 (119 subj-head 0.000000 0 3 (116 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (118 head-comp 0.000000 1 3 (8 tverb 0.000000 1 2 ("tverb")) (117 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comps1_complementizer1 0.000000 3 4 ("comp1"))) (122 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (121 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_noun3_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ -13@1@-1@-1@-1@-1@-1@-1@-1@-1@(129 comp-head 0.000000 0 6 (128 comp-head 0.000000 0 4 (127 comp-head 0.000000 0 3 (124 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (126 head-subj 0.000000 1 3 (8 tverb 0.000000 1 2 ("tverb")) (125 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comps1_complementizer1 0.000000 3 4 ("comp1"))) (122 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (121 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@0@0@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_noun2_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_noun3_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "_noun1_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h14 qeq h12 h16 qeq h9 h19 qeq h17 > ICONS: < > ] @ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(50 comp-head 0.000000 0 3 (47 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (49 head-subj 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (48 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@@("S" ("NP" ("N" ("noun1"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@1@-1@-1@-1@-1@-1@-1@-1@-1@(54 subj-head 0.000000 0 3 (51 bare-np 0.000000 0 1 (4 noun1 0.000000 0 1 ("noun1"))) (53 head-comp 0.000000 1 3 (5 tverb 0.000000 1 2 ("tverb")) (52 bare-np 0.000000 2 3 (6 noun2 0.000000 2 3 ("noun2")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun2")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_tverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_noun2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(111 subj-head 0.000000 0 6 (98 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (104 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (103 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (102 subj-head 0.000000 3 6 (99 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (101 head-comp 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (100 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun3"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(112 subj-head 0.000000 0 6 (98 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (110 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (109 head-comp 0.000000 2 6 (9 comp1 0.000000 2 3 ("comp1")) (108 comp-head 0.000000 3 6 (105 bare-np 0.000000 3 4 (10 noun2 0.000000 3 4 ("noun2"))) (107 head-subj 0.000000 4 6 (11 tverb 0.000000 4 5 ("tverb")) (106 bare-np 0.000000 5 6 (12 noun3 0.000000 5 6 ("noun3"))))))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun3"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(132 subj-head 0.000000 0 6 (119 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (125 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (124 comp-head 0.000000 2 6 (123 subj-head 0.000000 2 5 (120 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (122 head-comp 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (121 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comp1 0.000000 5 6 ("comp1")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("S" ("NP" ("N" ("noun2"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun3"))))) ("C" ("comp1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(133 subj-head 0.000000 0 6 (119 bare-np 0.000000 0 1 (7 noun1 0.000000 0 1 ("noun1"))) (131 head-comp 0.000000 1 6 (8 cverb 0.000000 1 2 ("cverb")) (130 comp-head 0.000000 2 6 (129 comp-head 0.000000 2 5 (126 bare-np 0.000000 2 3 (9 noun2 0.000000 2 3 ("noun2"))) (128 head-subj 0.000000 3 5 (10 tverb 0.000000 3 4 ("tverb")) (127 bare-np 0.000000 4 5 (11 noun3 0.000000 4 5 ("noun3"))))) (12 comp1 0.000000 5 6 ("comp1")))))@@("S" ("NP" ("N" ("noun1"))) ("VP" ("V" ("cverb")) ("CP" ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun3"))))) ("C" ("comp1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_noun1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_noun2_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_tverb_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_noun3_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(126 comp-head 0.000000 0 6 (123 head-comp 0.000000 0 4 (7 comp1 0.000000 0 1 ("comp1")) (122 subj-head 0.000000 1 4 (119 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (121 head-comp 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (120 bare-np 0.000000 3 4 (10 noun3 0.000000 3 4 ("noun3")))))) (125 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (124 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun3")))))) ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun3_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +12@1@-1@-1@-1@-1@-1@-1@-1@-1@(132 comp-head 0.000000 0 6 (131 head-comp 0.000000 0 4 (7 comp1 0.000000 0 1 ("comp1")) (130 comp-head 0.000000 1 4 (127 bare-np 0.000000 1 2 (8 noun2 0.000000 1 2 ("noun2"))) (129 head-subj 0.000000 2 4 (9 tverb 0.000000 2 3 ("tverb")) (128 bare-np 0.000000 3 4 (10 noun3 0.000000 3 4 ("noun3")))))) (125 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (124 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("C" ("comp1")) ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun3")))))) ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun3_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(122 comp-head 0.000000 0 6 (119 comp-head 0.000000 0 4 (118 subj-head 0.000000 0 3 (115 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (117 head-comp 0.000000 1 3 (8 tverb 0.000000 1 2 ("tverb")) (116 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comp1 0.000000 3 4 ("comp1"))) (121 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (120 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("S" ("NP" ("N" ("noun2"))) ("VP" ("V" ("tverb")) ("NP" ("N" ("noun3"))))) ("C" ("comp1"))) ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun3_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +13@1@-1@-1@-1@-1@-1@-1@-1@-1@(128 comp-head 0.000000 0 6 (127 comp-head 0.000000 0 4 (126 comp-head 0.000000 0 3 (123 bare-np 0.000000 0 1 (7 noun2 0.000000 0 1 ("noun2"))) (125 head-subj 0.000000 1 3 (8 tverb 0.000000 1 2 ("tverb")) (124 bare-np 0.000000 2 3 (9 noun3 0.000000 2 3 ("noun3"))))) (10 comp1 0.000000 3 4 ("comp1"))) (121 head-subj 0.000000 4 6 (11 cverb 0.000000 4 5 ("cverb")) (120 bare-np 0.000000 5 6 (12 noun1 0.000000 5 6 ("noun1")))))@@("S" ("CP" ("S" ("NP" ("N" ("noun2"))) ("V" ("V" ("tverb")) ("NP" ("N" ("noun3"))))) ("C" ("comp1"))) ("V" ("V" ("cverb")) ("NP" ("N" ("noun1")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_noun2_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tverb_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_noun3_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_cverb_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_noun1_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h15 h16 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/run b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/run index d6a8c7f7e..450d74e73 100644 --- a/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/run +++ b/tests/regression/home/gold/clausalcomp-v2-oblig-bef-aft-same-pseudo0/run @@ -1 +1 @@ -1@@art -- arbiter/tsdb recorder@-1@@answer@@unknown@1409@-1@-1@6@1@7@@@@23-6-2013 14:28:24@23-6-2013 14:28:24@13@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1485@-1@-1@6@0@7@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 15:24:41@26-aug-2020 15:24:41@-1@ diff --git a/tests/regression/home/gold/clausalmods-basque/parse b/tests/regression/home/gold/clausalmods-basque/parse index f0359cef7..84db6082d 100644 --- a/tests/regression/home/gold/clausalmods-basque/parse +++ b/tests/regression/home/gold/clausalmods-basque/parse @@ -1,26 +1,26 @@ -1@0@1@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:20>, 1, "duzela", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:20>, 1, "duzela", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@1@-1@14@14@-1@14@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@1682@241@-1@-1@3859432@-1@-1@-1@@@ -2@0@2@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:36>, 1, "bukatzen", 0, "null") (6, 5, 6, <37:43>, 1, "duzela", 0, "null")@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:36>, 1, "bukatzen", 0, "null") (6, 5, 6, <37:43>, 1, "duzela", 0, "null")@1@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@134@37@-1@-1@-1@-1@-1@-1@-1@2283@440@-1@-1@2681592@-1@-1@-1@@@ -3@0@3@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:17>, 1, "duz", 0, "null") (4, 3, 4, <18:28>, 1, "afaltzerat", 0, "null") (5, 4, 5, <29:35>, 1, "joango", 0, "null") (6, 5, 6, <36:40>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:17>, 1, "duz", 0, "null") (4, 3, 4, <18:28>, 1, "afaltzerat", 0, "null") (5, 4, 5, <29:35>, 1, "joango", 0, "null") (6, 5, 6, <36:40>, 1, "gara", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@133@37@-1@-1@-1@-1@-1@-1@-1@2902@638@-1@-1@2411808@-1@-1@-1@@@ -4@0@4@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:23>, 1, "duzelarik", 0, "null") (4, 3, 4, <24:34>, 1, "afaltzerat", 0, "null") (5, 4, 5, <35:41>, 1, "joango", 0, "null") (6, 5, 6, <42:46>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:23>, 1, "duzelarik", 0, "null") (4, 3, 4, <24:34>, 1, "afaltzerat", 0, "null") (5, 4, 5, <35:41>, 1, "joango", 0, "null") (6, 5, 6, <42:46>, 1, "gara", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@3297@879@-1@-1@3859640@-1@-1@-1@@@ -5@0@5@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:22>, 1, "duzelako", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:22>, 1, "duzelako", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@3987@1138@-1@-1@3859680@-1@-1@-1@@@ -6@0@6@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:24>, 1, "duzelakoan", 0, "null") (4, 3, 4, <25:35>, 1, "afaltzerat", 0, "null") (5, 4, 5, <36:42>, 1, "joango", 0, "null") (6, 5, 6, <43:47>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:24>, 1, "duzelakoan", 0, "null") (4, 3, 4, <25:35>, 1, "afaltzerat", 0, "null") (5, 4, 5, <36:42>, 1, "joango", 0, "null") (6, 5, 6, <43:47>, 1, "gara", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@4677@1397@-1@-1@3859808@-1@-1@-1@@@ -7@0@7@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@1@-1@8@8@-1@9@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@5367@1656@-1@-1@3858304@-1@-1@-1@@@ -8@0@8@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:37>, 1, "bukatzngo", 0, "null") (6, 5, 6, <38:43>, 1, "duzen", 0, "null")@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:37>, 1, "bukatzngo", 0, "null") (6, 5, 6, <38:43>, 1, "duzen", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@134@37@-1@-1@-1@-1@-1@-1@-1@5968@1855@-1@-1@2680464@-1@-1@-1@@@ -9@0@9@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null")@0@-1@5@5@-1@6@-1@-1@-1@-1@-1@-1@133@37@-1@-1@-1@-1@-1@-1@-1@6587@2053@-1@-1@2411172@-1@-1@-1@@@ -10@0@10@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@6982@2294@-1@-1@3858312@-1@-1@-1@@@ -11@0@11@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:27>, 1, "gero", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:27>, 1, "gero", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@1@-1@14@14@-1@14@-1@-1@-1@-1@-1@-1@178@44@-1@-1@-1@-1@-1@-1@-1@7645@2541@-1@-1@3617112@-1@-1@-1@@@ -12@0@12@7@(1, 0, 1, <0:4>, 1, "gero", 0, "null") (2, 1, 2, <5:9>, 1, "lana", 0, "null") (3, 2, 3, <10:19>, 1, "bukatzngo", 0, "null") (4, 3, 4, <20:27>, 1, "duzenez", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "gero", 0, "null") (2, 1, 2, <5:9>, 1, "lana", 0, "null") (3, 2, 3, <10:19>, 1, "bukatzngo", 0, "null") (4, 3, 4, <20:27>, 1, "duzenez", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@0@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@188@47@-1@-1@-1@-1@-1@-1@-1@8384@2805@-1@-1@3687640@-1@-1@-1@@@ -13@0@13@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:23>, 1, "gero", 0, "null") (5, 4, 5, <24:34>, 1, "afaltzerat", 0, "null") (6, 5, 6, <35:41>, 1, "joango", 0, "null") (7, 6, 7, <42:46>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:23>, 1, "gero", 0, "null") (5, 4, 5, <24:34>, 1, "afaltzerat", 0, "null") (6, 5, 6, <35:41>, 1, "joango", 0, "null") (7, 6, 7, <42:46>, 1, "gara", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@125@36@-1@-1@-1@-1@-1@-1@-1@8681@2973@-1@-1@2201048@-1@-1@-1@@@ -14@0@14@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:26>, 1, "arren", 0, "null") (5, 4, 5, <27:37>, 1, "afaltzerat", 0, "null") (6, 5, 6, <38:44>, 1, "joango", 0, "null") (7, 6, 7, <45:49>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:26>, 1, "arren", 0, "null") (5, 4, 5, <27:37>, 1, "afaltzerat", 0, "null") (6, 5, 6, <38:44>, 1, "joango", 0, "null") (7, 6, 7, <45:49>, 1, "gara", 0, "null")@1@-1@10@10@-1@12@-1@-1@-1@-1@-1@-1@178@44@-1@-1@-1@-1@-1@-1@-1@9049@3202@-1@-1@3617464@-1@-1@-1@@@ -15@0@15@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:24>, 1, "arren", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:24>, 1, "arren", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@125@36@-1@-1@-1@-1@-1@-1@-1@9663@3388@-1@-1@2201248@-1@-1@-1@@@ -16@0@16@8@(1, 0, 1, <0:5>, 1, "arren", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:26>, 1, "duzen", 0, "null") (5, 4, 5, <27:32>, 1, "arren", 0, "null") (6, 5, 6, <33:43>, 1, "afaltzerat", 0, "null") (7, 6, 7, <44:50>, 1, "joango", 0, "null") (8, 7, 8, <51:55>, 1, "gara", 0, "null")@8@(1, 0, 1, <0:5>, 1, "arren", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:26>, 1, "duzen", 0, "null") (5, 4, 5, <27:32>, 1, "arren", 0, "null") (6, 5, 6, <33:43>, 1, "afaltzerat", 0, "null") (7, 6, 7, <44:50>, 1, "joango", 0, "null") (8, 7, 8, <51:55>, 1, "gara", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@180@46@-1@-1@-1@-1@-1@-1@-1@10058@3622@-1@-1@3451568@-1@-1@-1@@@ -17@0@17@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:25>, 1, "arte", 0, "null") (5, 4, 5, <26:36>, 1, "afaltzerat", 0, "null") (6, 5, 6, <37:43>, 1, "joango", 0, "null") (7, 6, 7, <44:48>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:25>, 1, "arte", 0, "null") (5, 4, 5, <26:36>, 1, "afaltzerat", 0, "null") (6, 5, 6, <37:43>, 1, "joango", 0, "null") (7, 6, 7, <44:48>, 1, "gara", 0, "null")@1@-1@13@13@-1@13@-1@-1@-1@-1@-1@-1@178@44@-1@-1@-1@-1@-1@-1@-1@10426@3851@-1@-1@3617264@-1@-1@-1@@@ -18@0@18@7@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:28>, 1, "baina", 0, "null") (5, 4, 5, <29:33>, 1, "lana", 0, "null") (6, 5, 6, <34:43>, 1, "bukatzngo", 0, "null") (7, 6, 7, <44:47>, 1, "duz", 0, "null")@7@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:28>, 1, "baina", 0, "null") (5, 4, 5, <29:33>, 1, "lana", 0, "null") (6, 5, 6, <34:43>, 1, "bukatzngo", 0, "null") (7, 6, 7, <44:47>, 1, "duz", 0, "null")@2@-1@17@17@-1@17@-1@-1@-1@-1@-1@-1@218@61@-1@-1@-1@-1@-1@-1@-1@11306@4163@-1@-1@4384608@-1@-1@-1@@@ -19@0@19@7@(1, 0, 1, <0:5>, 1, "baina", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:24>, 1, "duz", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:5>, 1, "baina", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:24>, 1, "duz", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@218@54@-1@-1@-1@-1@-1@-1@-1@12527@4483@-1@-1@3660104@-1@-1@-1@@@ -20@0@20@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null") (7, 6, 7, <42:47>, 1, "baina", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null") (7, 6, 7, <42:47>, 1, "baina", 0, "null")@2@-1@10@10@-1@11@-1@-1@-1@-1@-1@-1@150@45@-1@-1@-1@-1@-1@-1@-1@12919@4689@-1@-1@3234272@-1@-1@-1@@@ -21@0@21@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:35>, 1, "baina", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:35>, 1, "baina", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@88@27@-1@-1@-1@-1@-1@-1@-1@13794@4840@-1@-1@1568044@-1@-1@-1@@@ -22@0@22@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzean", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzean", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@69@22@-1@-1@-1@-1@-1@-1@-1@13957@4937@-1@-1@1218928@-1@-1@-1@@@ -23@0@23@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzera", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzera", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@69@22@-1@-1@-1@-1@-1@-1@-1@14120@5034@-1@-1@1218928@-1@-1@-1@@@ -24@0@24@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:11>, 1, "bukatz", 0, "null") (3, 2, 3, <12:22>, 1, "afaltzerat", 0, "null") (4, 3, 4, <23:29>, 1, "joango", 0, "null") (5, 4, 5, <30:34>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:11>, 1, "bukatz", 0, "null") (3, 2, 3, <12:22>, 1, "afaltzerat", 0, "null") (4, 3, 4, <23:29>, 1, "joango", 0, "null") (5, 4, 5, <30:34>, 1, "gara", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@60@21@-1@-1@-1@-1@-1@-1@-1@14264@5120@-1@-1@1087628@-1@-1@-1@@@ -25@0@25@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatztze", 0, "null") (3, 2, 3, <15:25>, 1, "afaltzerat", 0, "null") (4, 3, 4, <26:32>, 1, "joango", 0, "null") (5, 4, 5, <33:37>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatztze", 0, "null") (3, 2, 3, <15:25>, 1, "afaltzerat", 0, "null") (4, 3, 4, <26:32>, 1, "joango", 0, "null") (5, 4, 5, <33:37>, 1, "gara", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@69@22@-1@-1@-1@-1@-1@-1@-1@14426@5216@-1@-1@1208800@-1@-1@-1@@@ -26@0@26@5@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:39>, 1, "bukatztzean", 0, "null")@5@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:39>, 1, "bukatztzean", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@79@22@-1@-1@-1@-1@-1@-1@-1@14605@5323@-1@-1@1384988@-1@-1@-1@@@ +1@0@1@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:20>, 1, "duzela", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:20>, 1, "duzela", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@1@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@1682@241@-1@-1@4433488@-1@-1@-1@@@ +2@0@2@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:36>, 1, "bukatzen", 0, "null") (6, 5, 6, <37:43>, 1, "duzela", 0, "null")@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:36>, 1, "bukatzen", 0, "null") (6, 5, 6, <37:43>, 1, "duzela", 0, "null")@1@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@134@37@-1@-1@-1@-1@-1@-1@-1@2283@440@-1@-1@3107104@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:17>, 1, "duz", 0, "null") (4, 3, 4, <18:28>, 1, "afaltzerat", 0, "null") (5, 4, 5, <29:35>, 1, "joango", 0, "null") (6, 5, 6, <36:40>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:17>, 1, "duz", 0, "null") (4, 3, 4, <18:28>, 1, "afaltzerat", 0, "null") (5, 4, 5, <29:35>, 1, "joango", 0, "null") (6, 5, 6, <36:40>, 1, "gara", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@133@37@-1@-1@-1@-1@-1@-1@-1@2902@638@-1@-1@2822160@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:23>, 1, "duzelarik", 0, "null") (4, 3, 4, <24:34>, 1, "afaltzerat", 0, "null") (5, 4, 5, <35:41>, 1, "joango", 0, "null") (6, 5, 6, <42:46>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:23>, 1, "duzelarik", 0, "null") (4, 3, 4, <24:34>, 1, "afaltzerat", 0, "null") (5, 4, 5, <35:41>, 1, "joango", 0, "null") (6, 5, 6, <42:46>, 1, "gara", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@3297@879@-1@-1@4433496@-1@-1@-1@@@ +5@0@5@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:22>, 1, "duzelako", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:22>, 1, "duzelako", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@3987@1138@-1@-1@4433576@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:24>, 1, "duzelakoan", 0, "null") (4, 3, 4, <25:35>, 1, "afaltzerat", 0, "null") (5, 4, 5, <36:42>, 1, "joango", 0, "null") (6, 5, 6, <43:47>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:13>, 1, "bukatzen", 0, "null") (3, 2, 3, <14:24>, 1, "duzelakoan", 0, "null") (4, 3, 4, <25:35>, 1, "afaltzerat", 0, "null") (5, 4, 5, <36:42>, 1, "joango", 0, "null") (6, 5, 6, <43:47>, 1, "gara", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@4677@1397@-1@-1@4433864@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:31>, 1, "afaltzerat", 0, "null") (5, 4, 5, <32:38>, 1, "joango", 0, "null") (6, 5, 6, <39:43>, 1, "gara", 0, "null")@1@-1@11@11@-1@11@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@5367@1656@-1@-1@4432400@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:37>, 1, "bukatzngo", 0, "null") (6, 5, 6, <38:43>, 1, "duzen", 0, "null")@6@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:37>, 1, "bukatzngo", 0, "null") (6, 5, 6, <38:43>, 1, "duzen", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@134@37@-1@-1@-1@-1@-1@-1@-1@5968@1855@-1@-1@3105896@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@133@37@-1@-1@-1@-1@-1@-1@-1@6587@2053@-1@-1@2821444@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@6@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:33>, 1, "afaltzerat", 0, "null") (5, 4, 5, <34:40>, 1, "joango", 0, "null") (6, 5, 6, <41:45>, 1, "gara", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@186@45@-1@-1@-1@-1@-1@-1@-1@6982@2294@-1@-1@4432288@-1@-1@-1@@@ +11@0@11@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:27>, 1, "gero", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:22>, 1, "duzenez", 0, "null") (4, 3, 4, <23:27>, 1, "gero", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@1@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@178@44@-1@-1@-1@-1@-1@-1@-1@7645@2541@-1@-1@4172888@-1@-1@-1@@@ +12@0@12@7@(1, 0, 1, <0:4>, 1, "gero", 0, "null") (2, 1, 2, <5:9>, 1, "lana", 0, "null") (3, 2, 3, <10:19>, 1, "bukatzngo", 0, "null") (4, 3, 4, <20:27>, 1, "duzenez", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "gero", 0, "null") (2, 1, 2, <5:9>, 1, "lana", 0, "null") (3, 2, 3, <10:19>, 1, "bukatzngo", 0, "null") (4, 3, 4, <20:27>, 1, "duzenez", 0, "null") (5, 4, 5, <28:38>, 1, "afaltzerat", 0, "null") (6, 5, 6, <39:45>, 1, "joango", 0, "null") (7, 6, 7, <46:50>, 1, "gara", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@188@47@-1@-1@-1@-1@-1@-1@-1@8384@2805@-1@-1@4258176@-1@-1@-1@@@ +13@0@13@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:23>, 1, "gero", 0, "null") (5, 4, 5, <24:34>, 1, "afaltzerat", 0, "null") (6, 5, 6, <35:41>, 1, "joango", 0, "null") (7, 6, 7, <42:46>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:23>, 1, "gero", 0, "null") (5, 4, 5, <24:34>, 1, "afaltzerat", 0, "null") (6, 5, 6, <35:41>, 1, "joango", 0, "null") (7, 6, 7, <42:46>, 1, "gara", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@125@36@-1@-1@-1@-1@-1@-1@-1@8681@2973@-1@-1@2591120@-1@-1@-1@@@ +14@0@14@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:26>, 1, "arren", 0, "null") (5, 4, 5, <27:37>, 1, "afaltzerat", 0, "null") (6, 5, 6, <38:44>, 1, "joango", 0, "null") (7, 6, 7, <45:49>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:26>, 1, "arren", 0, "null") (5, 4, 5, <27:37>, 1, "afaltzerat", 0, "null") (6, 5, 6, <38:44>, 1, "joango", 0, "null") (7, 6, 7, <45:49>, 1, "gara", 0, "null")@1@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@178@44@-1@-1@-1@-1@-1@-1@-1@9049@3202@-1@-1@4173160@-1@-1@-1@@@ +15@0@15@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:24>, 1, "arren", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:24>, 1, "arren", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@125@36@-1@-1@-1@-1@-1@-1@-1@9663@3388@-1@-1@2591320@-1@-1@-1@@@ +16@0@16@8@(1, 0, 1, <0:5>, 1, "arren", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:26>, 1, "duzen", 0, "null") (5, 4, 5, <27:32>, 1, "arren", 0, "null") (6, 5, 6, <33:43>, 1, "afaltzerat", 0, "null") (7, 6, 7, <44:50>, 1, "joango", 0, "null") (8, 7, 8, <51:55>, 1, "gara", 0, "null")@8@(1, 0, 1, <0:5>, 1, "arren", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:26>, 1, "duzen", 0, "null") (5, 4, 5, <27:32>, 1, "arren", 0, "null") (6, 5, 6, <33:43>, 1, "afaltzerat", 0, "null") (7, 6, 7, <44:50>, 1, "joango", 0, "null") (8, 7, 8, <51:55>, 1, "gara", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@180@46@-1@-1@-1@-1@-1@-1@-1@10058@3622@-1@-1@4002384@-1@-1@-1@@@ +17@0@17@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:25>, 1, "arte", 0, "null") (5, 4, 5, <26:36>, 1, "afaltzerat", 0, "null") (6, 5, 6, <37:43>, 1, "joango", 0, "null") (7, 6, 7, <44:48>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:20>, 1, "duzen", 0, "null") (4, 3, 4, <21:25>, 1, "arte", 0, "null") (5, 4, 5, <26:36>, 1, "afaltzerat", 0, "null") (6, 5, 6, <37:43>, 1, "joango", 0, "null") (7, 6, 7, <44:48>, 1, "gara", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@178@44@-1@-1@-1@-1@-1@-1@-1@10426@3851@-1@-1@4172880@-1@-1@-1@@@ +18@0@18@7@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:28>, 1, "baina", 0, "null") (5, 4, 5, <29:33>, 1, "lana", 0, "null") (6, 5, 6, <34:43>, 1, "bukatzngo", 0, "null") (7, 6, 7, <44:47>, 1, "duz", 0, "null")@7@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:28>, 1, "baina", 0, "null") (5, 4, 5, <29:33>, 1, "lana", 0, "null") (6, 5, 6, <34:43>, 1, "bukatzngo", 0, "null") (7, 6, 7, <44:47>, 1, "duz", 0, "null")@2@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@218@61@-1@-1@-1@-1@-1@-1@-1@11306@4163@-1@-1@5404928@-1@-1@-1@@@ +19@0@19@7@(1, 0, 1, <0:5>, 1, "baina", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:24>, 1, "duz", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:5>, 1, "baina", 0, "null") (2, 1, 2, <6:10>, 1, "lana", 0, "null") (3, 2, 3, <11:20>, 1, "bukatzngo", 0, "null") (4, 3, 4, <21:24>, 1, "duz", 0, "null") (5, 4, 5, <25:35>, 1, "afaltzerat", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@0@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@218@54@-1@-1@-1@-1@-1@-1@-1@12527@4483@-1@-1@4873360@-1@-1@-1@@@ +20@0@20@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null") (7, 6, 7, <42:47>, 1, "baina", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:36>, 1, "joango", 0, "null") (6, 5, 6, <37:41>, 1, "gara", 0, "null") (7, 6, 7, <42:47>, 1, "baina", 0, "null")@2@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@150@45@-1@-1@-1@-1@-1@-1@-1@12919@4689@-1@-1@3745008@-1@-1@-1@@@ +21@0@21@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:35>, 1, "baina", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@7@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatzngo", 0, "null") (3, 2, 3, <15:18>, 1, "duz", 0, "null") (4, 3, 4, <19:29>, 1, "afaltzerat", 0, "null") (5, 4, 5, <30:35>, 1, "baina", 0, "null") (6, 5, 6, <36:42>, 1, "joango", 0, "null") (7, 6, 7, <43:47>, 1, "gara", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@88@27@-1@-1@-1@-1@-1@-1@-1@13794@4840@-1@-1@1846180@-1@-1@-1@@@ +22@0@22@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzean", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzean", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@69@22@-1@-1@-1@-1@-1@-1@-1@13957@4937@-1@-1@1433784@-1@-1@-1@@@ +23@0@23@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzera", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:16>, 1, "bukatztzera", 0, "null") (3, 2, 3, <17:27>, 1, "afaltzerat", 0, "null") (4, 3, 4, <28:34>, 1, "joango", 0, "null") (5, 4, 5, <35:39>, 1, "gara", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@69@22@-1@-1@-1@-1@-1@-1@-1@14120@5034@-1@-1@1433784@-1@-1@-1@@@ +24@0@24@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:11>, 1, "bukatz", 0, "null") (3, 2, 3, <12:22>, 1, "afaltzerat", 0, "null") (4, 3, 4, <23:29>, 1, "joango", 0, "null") (5, 4, 5, <30:34>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:11>, 1, "bukatz", 0, "null") (3, 2, 3, <12:22>, 1, "afaltzerat", 0, "null") (4, 3, 4, <23:29>, 1, "joango", 0, "null") (5, 4, 5, <30:34>, 1, "gara", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@60@21@-1@-1@-1@-1@-1@-1@-1@14264@5120@-1@-1@1277004@-1@-1@-1@@@ +25@0@25@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatztze", 0, "null") (3, 2, 3, <15:25>, 1, "afaltzerat", 0, "null") (4, 3, 4, <26:32>, 1, "joango", 0, "null") (5, 4, 5, <33:37>, 1, "gara", 0, "null")@5@(1, 0, 1, <0:4>, 1, "lana", 0, "null") (2, 1, 2, <5:14>, 1, "bukatztze", 0, "null") (3, 2, 3, <15:25>, 1, "afaltzerat", 0, "null") (4, 3, 4, <26:32>, 1, "joango", 0, "null") (5, 4, 5, <33:37>, 1, "gara", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@69@22@-1@-1@-1@-1@-1@-1@-1@14426@5216@-1@-1@1423616@-1@-1@-1@@@ +26@0@26@5@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:39>, 1, "bukatztzean", 0, "null")@5@(1, 0, 1, <0:10>, 1, "afaltzerat", 0, "null") (2, 1, 2, <11:17>, 1, "joango", 0, "null") (3, 2, 3, <18:22>, 1, "gara", 0, "null") (4, 3, 4, <23:27>, 1, "lana", 0, "null") (5, 4, 5, <28:39>, 1, "bukatztzean", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@79@22@-1@-1@-1@-1@-1@-1@-1@14605@5323@-1@-1@1630644@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/clausalmods-basque/result b/tests/regression/home/gold/clausalmods-basque/result index f6d23b049..4fd7d6213 100644 --- a/tests/regression/home/gold/clausalmods-basque/result +++ b/tests/regression/home/gold/clausalmods-basque/result @@ -10,6 +10,6 @@ 14@0@-1@-1@-1@-1@-1@-1@-1@-1@(382 adj-head-scop 0.000000 0 7 (373 comp-head 0.000000 0 4 (372 decl-head-opt-subj 0.000000 0 3 (371 comp-head 0.000000 0 3 (366 bare-np 0.000000 0 1 (365 absolutive-lex 0.000000 0 1 (8 lana 0.000000 0 1 ("lana")))) (370 comp-head 0.000000 1 3 (367 fut-suffix 0.000000 1 2 (9 bukatz 0.000000 1 2 ("bukatzngo"))) (369 you-agr-lex 0.000000 2 3 (368 en-suffix 0.000000 2 3 (10 duz 0.000000 2 3 ("duzen"))))))) (11 arren 0.000000 3 4 ("arren"))) (381 decl-head-opt-subj 0.000000 4 7 (380 comp-head 0.000000 4 7 (375 bare-np 0.000000 4 5 (374 allative-suffix 0.000000 4 5 (12 afaltze 0.000000 4 5 ("afaltzerat")))) (379 comp-head 0.000000 5 7 (376 fut-suffix 0.000000 5 6 (13 joa 0.000000 5 6 ("joango"))) (378 we-agr-lex 0.000000 6 7 (377 matrix-lex 0.000000 6 7 (14 gara 0.000000 6 7 ("gara"))))))))@@("S" ("PP" ("S" ("VP" ("NP" ("N" ("N" ("lana")))) ("V" ("V" ("V" ("bukatzngo"))) ("V" ("V" ("V" ("duzen"))))))) ("P" ("arren"))) ("S" ("VP" ("NP" ("N" ("N" ("afaltzerat")))) ("V" ("V" ("V" ("joango"))) ("V" ("V" ("V" ("gara"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_job_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_finish_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: singular ] ARG2: x5 ] [ "_even+though_subord_rel"<-1:-1> LBL: h1 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h17 BODY: h18 ] [ "_dinner_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: plural ] ARG2: x16 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h20 h14 qeq h9 h17 qeq h19 > ICONS: < e10 non-focus x11 e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 1.0)) 17@0@-1@-1@-1@-1@-1@-1@-1@-1@(382 adj-head-scop 0.000000 0 7 (373 comp-head 0.000000 0 4 (372 decl-head-opt-subj 0.000000 0 3 (371 comp-head 0.000000 0 3 (366 bare-np 0.000000 0 1 (365 absolutive-lex 0.000000 0 1 (8 lana 0.000000 0 1 ("lana")))) (370 comp-head 0.000000 1 3 (367 fut-suffix 0.000000 1 2 (9 bukatz 0.000000 1 2 ("bukatzngo"))) (369 you-agr-lex 0.000000 2 3 (368 en-suffix 0.000000 2 3 (10 duz 0.000000 2 3 ("duzen"))))))) (11 arte 0.000000 3 4 ("arte"))) (381 decl-head-opt-subj 0.000000 4 7 (380 comp-head 0.000000 4 7 (375 bare-np 0.000000 4 5 (374 allative-suffix 0.000000 4 5 (12 afaltze 0.000000 4 5 ("afaltzerat")))) (379 comp-head 0.000000 5 7 (376 fut-suffix 0.000000 5 6 (13 joa 0.000000 5 6 ("joango"))) (378 we-agr-lex 0.000000 6 7 (377 matrix-lex 0.000000 6 7 (14 gara 0.000000 6 7 ("gara"))))))))@@("S" ("PP" ("S" ("VP" ("NP" ("N" ("N" ("lana")))) ("V" ("V" ("V" ("bukatzngo"))) ("V" ("V" ("V" ("duzen"))))))) ("P" ("arte"))) ("S" ("VP" ("NP" ("N" ("N" ("afaltzerat")))) ("V" ("V" ("V" ("joango"))) ("V" ("V" ("V" ("gara"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_job_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_finish_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: singular ] ARG2: x5 ] [ "_until_subord_rel"<-1:-1> LBL: h1 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h17 BODY: h18 ] [ "_dinner_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: plural ] ARG2: x16 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h20 h14 qeq h9 h17 qeq h19 > ICONS: < e10 non-focus x11 e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 1.0)) 18@0@-1@-1@-1@-1@-1@-1@-1@-1@(448 head-adj-scop 0.000000 0 7 (437 decl-head-opt-subj 0.000000 0 3 (436 comp-head 0.000000 0 3 (431 bare-np 0.000000 0 1 (430 allative-suffix 0.000000 0 1 (8 afaltze 0.000000 0 1 ("afaltzerat")))) (435 comp-head 0.000000 1 3 (432 fut-suffix 0.000000 1 2 (9 joa 0.000000 1 2 ("joango"))) (434 we-agr-lex 0.000000 2 3 (433 matrix-lex 0.000000 2 3 (10 gara 0.000000 2 3 ("gara"))))))) (447 but-modifying-clause 0.000000 3 7 (446 decl-head-opt-subj 0.000000 3 7 (445 adj-head-int 0.000000 3 7 (11 baina 0.000000 3 4 ("baina")) (444 comp-head 0.000000 4 7 (439 bare-np 0.000000 4 5 (438 absolutive-lex 0.000000 4 5 (12 lana 0.000000 4 5 ("lana")))) (443 comp-head 0.000000 5 7 (440 fut-suffix 0.000000 5 6 (13 bukatz 0.000000 5 6 ("bukatzngo"))) (442 you-agr-lex 0.000000 6 7 (441 matrix-lex 0.000000 6 7 (14 duz 0.000000 6 7 ("duz"))))))))))@@("S" ("S" ("VP" ("NP" ("N" ("N" ("afaltzerat")))) ("V" ("V" ("V" ("joango"))) ("V" ("V" ("V" ("gara"))))))) ("PP" ("S" ("VP" ("ADV" ("baina")) ("VP" ("NP" ("N" ("N" ("lana")))) ("V" ("V" ("V" ("bukatzngo"))) ("V" ("V" ("V" ("duz"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_dinner_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: plural ] ARG2: x5 ] [ "_but_subord_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h17 BODY: h18 ] [ "_job_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_finish_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: singular ] ARG2: x16 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h14 qeq h20 h17 qeq h19 > ICONS: < e2 non-focus x10 e21 non-focus x22 > ]@((:ascore . 0.0) (:probability . 0.5)) -18@1@-1@-1@-1@-1@-1@-1@-1@-1@(458 head-adj-scop 0.000000 0 7 (437 decl-head-opt-subj 0.000000 0 3 (436 comp-head 0.000000 0 3 (431 bare-np 0.000000 0 1 (430 allative-suffix 0.000000 0 1 (8 afaltze 0.000000 0 1 ("afaltzerat")))) (435 comp-head 0.000000 1 3 (432 fut-suffix 0.000000 1 2 (9 joa 0.000000 1 2 ("joango"))) (434 we-agr-lex 0.000000 2 3 (433 matrix-lex 0.000000 2 3 (10 gara 0.000000 2 3 ("gara"))))))) (457 but-modifying-clause 0.000000 3 7 (456 adj-head-int 0.000000 3 7 (11 baina 0.000000 3 4 ("baina")) (455 decl-head-opt-subj 0.000000 4 7 (454 comp-head 0.000000 4 7 (450 bare-np 0.000000 4 5 (449 absolutive-lex 0.000000 4 5 (12 lana 0.000000 4 5 ("lana")))) (453 comp-head 0.000000 5 7 (451 fut-suffix 0.000000 5 6 (13 bukatz 0.000000 5 6 ("bukatzngo"))) (452 you-agr-lex 0.000000 6 7 (441 matrix-lex 0.000000 6 7 (14 duz 0.000000 6 7 ("duz"))))))))))@@("S" ("S" ("VP" ("NP" ("N" ("N" ("afaltzerat")))) ("V" ("V" ("V" ("joango"))) ("V" ("V" ("V" ("gara"))))))) ("PP" ("S" ("ADV" ("baina")) ("S" ("VP" ("NP" ("N" ("N" ("lana")))) ("V" ("V" ("V" ("bukatzngo"))) ("V" ("V" ("V" ("duz"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_dinner_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: plural ] ARG2: x5 ] [ "_but_subord_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h17 BODY: h18 ] [ "_job_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_finish_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: singular ] ARG2: x16 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h14 qeq h20 h17 qeq h19 > ICONS: < e2 non-focus x10 > ]@((:ascore . 0.0) (:probability . 0.5)) +18@1@-1@-1@-1@-1@-1@-1@-1@-1@(458 head-adj-scop 0.000000 0 7 (437 decl-head-opt-subj 0.000000 0 3 (436 comp-head 0.000000 0 3 (431 bare-np 0.000000 0 1 (430 allative-suffix 0.000000 0 1 (8 afaltze 0.000000 0 1 ("afaltzerat")))) (435 comp-head 0.000000 1 3 (432 fut-suffix 0.000000 1 2 (9 joa 0.000000 1 2 ("joango"))) (434 we-agr-lex 0.000000 2 3 (433 matrix-lex 0.000000 2 3 (10 gara 0.000000 2 3 ("gara"))))))) (457 but-modifying-clause 0.000000 3 7 (456 adj-head-int 0.000000 3 7 (11 baina 0.000000 3 4 ("baina")) (455 decl-head-opt-subj 0.000000 4 7 (454 comp-head 0.000000 4 7 (450 bare-np 0.000000 4 5 (449 absolutive-lex 0.000000 4 5 (12 lana 0.000000 4 5 ("lana")))) (453 comp-head 0.000000 5 7 (451 fut-suffix 0.000000 5 6 (13 bukatz 0.000000 5 6 ("bukatzngo"))) (452 you-agr-lex 0.000000 6 7 (441 matrix-lex 0.000000 6 7 (14 duz 0.000000 6 7 ("duz"))))))))))@@("S" ("S" ("VP" ("NP" ("N" ("N" ("afaltzerat")))) ("V" ("V" ("V" ("joango"))) ("V" ("V" ("V" ("gara"))))))) ("PP" ("S" ("ADV" ("baina")) ("S" ("VP" ("NP" ("N" ("N" ("lana")))) ("V" ("V" ("V" ("bukatzngo"))) ("V" ("V" ("V" ("duz"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_dinner_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: plural ] ARG2: x5 ] [ "_but_subord_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h17 BODY: h18 ] [ "_job_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_finish_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: singular ] ARG2: x16 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h14 qeq h20 h17 qeq h19 > ICONS: < e2 non-focus x10 e21 non-focus x22 > ]@((:ascore . 0.0) (:probability . 0.5)) 20@0@-1@-1@-1@-1@-1@-1@-1@-1@(360 head-adj-scop 0.000000 0 7 (349 decl-head-opt-subj 0.000000 0 3 (348 comp-head 0.000000 0 3 (343 bare-np 0.000000 0 1 (342 absolutive-lex 0.000000 0 1 (8 lana 0.000000 0 1 ("lana")))) (347 comp-head 0.000000 1 3 (344 fut-suffix 0.000000 1 2 (9 bukatz 0.000000 1 2 ("bukatzngo"))) (346 you-agr-lex 0.000000 2 3 (345 matrix-lex 0.000000 2 3 (10 duz 0.000000 2 3 ("duz"))))))) (359 but-modifying-clause 0.000000 3 7 (358 head-adj-int 0.000000 3 7 (357 decl-head-opt-subj 0.000000 3 6 (356 comp-head 0.000000 3 6 (351 bare-np 0.000000 3 4 (350 allative-suffix 0.000000 3 4 (11 afaltze 0.000000 3 4 ("afaltzerat")))) (355 comp-head 0.000000 4 6 (352 fut-suffix 0.000000 4 5 (12 joa 0.000000 4 5 ("joango"))) (354 we-agr-lex 0.000000 5 6 (353 matrix-lex 0.000000 5 6 (13 gara 0.000000 5 6 ("gara"))))))) (14 baina 0.000000 6 7 ("baina")))))@@("S" ("S" ("VP" ("NP" ("N" ("N" ("lana")))) ("V" ("V" ("V" ("bukatzngo"))) ("V" ("V" ("V" ("duz"))))))) ("PP" ("S" ("S" ("VP" ("NP" ("N" ("N" ("afaltzerat")))) ("V" ("V" ("V" ("joango"))) ("V" ("V" ("V" ("gara"))))))) ("ADV" ("baina")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_job_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_finish_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: singular ] ARG2: x5 ] [ "_but_subord_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h17 BODY: h18 ] [ "_dinner_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: plural ] ARG2: x16 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h14 qeq h20 h17 qeq h19 > ICONS: < e2 non-focus x10 e21 non-focus x22 > ]@((:ascore . 0.0) (:probability . 0.5)) 20@1@-1@-1@-1@-1@-1@-1@-1@-1@(370 head-adj-scop 0.000000 0 7 (349 decl-head-opt-subj 0.000000 0 3 (348 comp-head 0.000000 0 3 (343 bare-np 0.000000 0 1 (342 absolutive-lex 0.000000 0 1 (8 lana 0.000000 0 1 ("lana")))) (347 comp-head 0.000000 1 3 (344 fut-suffix 0.000000 1 2 (9 bukatz 0.000000 1 2 ("bukatzngo"))) (346 you-agr-lex 0.000000 2 3 (345 matrix-lex 0.000000 2 3 (10 duz 0.000000 2 3 ("duz"))))))) (369 but-modifying-clause 0.000000 3 7 (368 decl-head-opt-subj 0.000000 3 7 (367 head-adj-int 0.000000 3 7 (366 comp-head 0.000000 3 6 (362 bare-np 0.000000 3 4 (361 allative-suffix 0.000000 3 4 (11 afaltze 0.000000 3 4 ("afaltzerat")))) (365 comp-head 0.000000 4 6 (363 fut-suffix 0.000000 4 5 (12 joa 0.000000 4 5 ("joango"))) (364 we-agr-lex 0.000000 5 6 (353 matrix-lex 0.000000 5 6 (13 gara 0.000000 5 6 ("gara")))))) (14 baina 0.000000 6 7 ("baina"))))))@@("S" ("S" ("VP" ("NP" ("N" ("N" ("lana")))) ("V" ("V" ("V" ("bukatzngo"))) ("V" ("V" ("V" ("duz"))))))) ("PP" ("S" ("VP" ("VP" ("NP" ("N" ("N" ("afaltzerat")))) ("V" ("V" ("V" ("joango"))) ("V" ("V" ("V" ("gara")))))) ("ADV" ("baina"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_job_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_finish_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: singular ] ARG2: x5 ] [ "_but_subord_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] RSTR: h17 BODY: h18 ] [ "_dinner_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: plural ] ARG2: x16 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h14 qeq h20 h17 qeq h19 > ICONS: < e2 non-focus x10 e21 non-focus x22 > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/clausalmods-basque/run b/tests/regression/home/gold/clausalmods-basque/run index 10b1a50ac..8efa03b72 100644 --- a/tests/regression/home/gold/clausalmods-basque/run +++ b/tests/regression/home/gold/clausalmods-basque/run @@ -1 +1 @@ -0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1534@-1@-1@11@16@17@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@31-jul-2020 12:40:27@31-jul-2020 12:40:27@-1@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1581@-1@-1@11@16@17@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 15:55:37@26-aug-2020 15:55:37@-1@ diff --git a/tests/regression/home/gold/clausalmods-madi/parse b/tests/regression/home/gold/clausalmods-madi/parse index 14c2c9da7..0ac54e101 100644 --- a/tests/regression/home/gold/clausalmods-madi/parse +++ b/tests/regression/home/gold/clausalmods-madi/parse @@ -1,23 +1,23 @@ -1@0@1@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:18>, 1, "a7i", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:18>, 1, "a7i", 0, "null")@1@-1@8@8@-1@9@-1@-1@-1@-1@-1@-1@76@39@-1@-1@-1@-1@-1@-1@-1@1183@121@-1@-1@1431648@-1@-1@-1@@@ -2@0@2@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:12>, 1, "a7i", 0, "null") (5, 4, 5, <13:15>, 1, "ma", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:12>, 1, "a7i", 0, "null") (5, 4, 5, <13:15>, 1, "ma", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@1@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@62@38@-1@-1@-1@-1@-1@-1@-1@1697@240@-1@-1@1291648@-1@-1@-1@@@ -3@0@3@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:15>, 1, "a7i", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:15>, 1, "a7i", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@52@29@-1@-1@-1@-1@-1@-1@-1@2163@340@-1@-1@899096@-1@-1@-1@@@ -4@0@4@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:9>, 1, "a7i", 0, "null") (4, 3, 4, <10:12>, 1, "ni", 0, "null") (5, 4, 5, <13:15>, 1, "mu", 0, "null") (6, 5, 6, <16:18>, 1, "wa", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:9>, 1, "a7i", 0, "null") (4, 3, 4, <10:12>, 1, "ni", 0, "null") (5, 4, 5, <13:15>, 1, "mu", 0, "null") (6, 5, 6, <16:18>, 1, "wa", 0, "null")@2@-1@13@13@-1@13@-1@-1@-1@-1@-1@-1@154@62@-1@-1@-1@-1@-1@-1@-1@2607@562@-1@-1@3164104@-1@-1@-1@@@ -5@0@5@5@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null")@5@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@50@29@-1@-1@-1@-1@-1@-1@-1@3345@670@-1@-1@850088@-1@-1@-1@@@ -6@0@6@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "si", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "si", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@76@39@-1@-1@-1@-1@-1@-1@-1@3631@791@-1@-1@1431648@-1@-1@-1@@@ -7@0@7@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "si", 0, "null") (5, 4, 5, <12:14>, 1, "ma", 0, "null") (6, 5, 6, <15:17>, 1, "mu", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "si", 0, "null") (5, 4, 5, <12:14>, 1, "ma", 0, "null") (6, 5, 6, <15:17>, 1, "mu", 0, "null")@1@-1@7@7@-1@8@-1@-1@-1@-1@-1@-1@62@38@-1@-1@-1@-1@-1@-1@-1@4145@910@-1@-1@1291608@-1@-1@-1@@@ -8@0@8@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "si", 0, "null") (4, 3, 4, <9:11>, 1, "ni", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "wa", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "si", 0, "null") (4, 3, 4, <9:11>, 1, "ni", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "wa", 0, "null")@2@-1@15@15@-1@15@-1@-1@-1@-1@-1@-1@154@62@-1@-1@-1@-1@-1@-1@-1@4858@1145@-1@-1@3164104@-1@-1@-1@@@ -9@0@9@6@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@2@-1@20@20@-1@20@-1@-1@-1@-1@-1@-1@214@72@-1@-1@-1@-1@-1@-1@-1@5969@1469@-1@-1@3753536@-1@-1@-1@@@ -10@0@10@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:8>, 1, "dzho", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:8>, 1, "dzho", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@1@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@203@108@-1@-1@-1@-1@-1@-1@-1@7225@1815@-1@-1@3711584@-1@-1@-1@@@ -11@0@11@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:14>, 1, "dzho", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:14>, 1, "dzho", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@62@27@-1@-1@-1@-1@-1@-1@-1@7740@1928@-1@-1@1053976@-1@-1@-1@@@ -12@0@12@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "dzho", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "dzho", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@4@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@134@84@-1@-1@-1@-1@-1@-1@-1@8210@2155@-1@-1@3062072@-1@-1@-1@@@ -13@0@13@5@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:25>, 1, "koba-oru", 0, "null")@5@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:25>, 1, "koba-oru", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@130@54@-1@-1@-1@-1@-1@-1@-1@9805@2379@-1@-1@2261336@-1@-1@-1@@@ -14@0@14@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "dzho", 0, "null") (3, 2, 3, <15:18>, 1, "opi", 0, "null") (4, 3, 4, <19:24>, 1, "edzhi", 0, "null") (5, 4, 5, <25:28>, 1, "ira", 0, "null") (6, 5, 6, <29:31>, 1, "ri", 0, "null")@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "dzho", 0, "null") (3, 2, 3, <15:18>, 1, "opi", 0, "null") (4, 3, 4, <19:24>, 1, "edzhi", 0, "null") (5, 4, 5, <25:28>, 1, "ira", 0, "null") (6, 5, 6, <29:31>, 1, "ri", 0, "null")@2@-1@13@13@-1@14@-1@-1@-1@-1@-1@-1@359@100@-1@-1@-1@-1@-1@-1@-1@10515@2853@-1@-1@6273496@-1@-1@-1@@@ -15@0@15@6@(1, 0, 1, <0:3>, 1, "saa", 0, "null") (2, 1, 2, <4:7>, 1, "opi", 0, "null") (3, 2, 3, <8:13>, 1, "edzhi", 0, "null") (4, 3, 4, <14:17>, 1, "ira", 0, "null") (5, 4, 5, <18:20>, 1, "ri", 0, "null") (6, 5, 6, <21:29>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "saa", 0, "null") (2, 1, 2, <4:7>, 1, "opi", 0, "null") (3, 2, 3, <8:13>, 1, "edzhi", 0, "null") (4, 3, 4, <14:17>, 1, "ira", 0, "null") (5, 4, 5, <18:20>, 1, "ri", 0, "null") (6, 5, 6, <21:29>, 1, "koba-oru", 0, "null")@2@-1@17@17@-1@17@-1@-1@-1@-1@-1@-1@214@72@-1@-1@-1@-1@-1@-1@-1@11698@3179@-1@-1@3753568@-1@-1@-1@@@ -16@0@16@6@(1, 0, 1, <0:8>, 1, "dzho-saa", 0, "null") (2, 1, 2, <9:12>, 1, "opi", 0, "null") (3, 2, 3, <13:18>, 1, "edzhi", 0, "null") (4, 3, 4, <19:22>, 1, "ira", 0, "null") (5, 4, 5, <23:25>, 1, "ri", 0, "null") (6, 5, 6, <26:34>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:8>, 1, "dzho-saa", 0, "null") (2, 1, 2, <9:12>, 1, "opi", 0, "null") (3, 2, 3, <13:18>, 1, "edzhi", 0, "null") (4, 3, 4, <19:22>, 1, "ira", 0, "null") (5, 4, 5, <23:25>, 1, "ri", 0, "null") (6, 5, 6, <26:34>, 1, "koba-oru", 0, "null")@2@-1@18@18@-1@18@-1@-1@-1@-1@-1@-1@214@72@-1@-1@-1@-1@-1@-1@-1@12881@3505@-1@-1@3753712@-1@-1@-1@@@ -17@0@17@6@(1, 0, 1, <0:4>, 1, "kesu", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:4>, 1, "kesu", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@2@-1@16@16@-1@16@-1@-1@-1@-1@-1@-1@214@72@-1@-1@-1@-1@-1@-1@-1@14064@3831@-1@-1@3753216@-1@-1@-1@@@ -18@0@18@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "kesu", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "kesu", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@134@58@-1@-1@-1@-1@-1@-1@-1@15074@4058@-1@-1@2309872@-1@-1@-1@@@ -19@0@19@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "kesu", 0, "null") (3, 2, 3, <14:17>, 1, "opi", 0, "null") (4, 3, 4, <18:23>, 1, "edzhi", 0, "null") (5, 4, 5, <24:27>, 1, "ira", 0, "null") (6, 5, 6, <28:30>, 1, "ri", 0, "null")@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "kesu", 0, "null") (3, 2, 3, <14:17>, 1, "opi", 0, "null") (4, 3, 4, <18:23>, 1, "edzhi", 0, "null") (5, 4, 5, <24:27>, 1, "ira", 0, "null") (6, 5, 6, <28:30>, 1, "ri", 0, "null")@0@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@214@69@-1@-1@-1@-1@-1@-1@-1@15596@4354@-1@-1@3418056@-1@-1@-1@@@ -20@0@20@4@(1, 0, 1, <0:7>, 1, "koedzhi", 0, "null") (2, 1, 2, <8:11>, 1, "ira", 0, "null") (3, 2, 3, <12:14>, 1, "ri", 0, "null") (4, 3, 4, <15:23>, 1, "koba-oru", 0, "null")@4@(1, 0, 1, <0:7>, 1, "koedzhi", 0, "null") (2, 1, 2, <8:11>, 1, "ira", 0, "null") (3, 2, 3, <12:14>, 1, "ri", 0, "null") (4, 3, 4, <15:23>, 1, "koba-oru", 0, "null")@2@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@49@23@-1@-1@-1@-1@-1@-1@-1@15747@4436@-1@-1@1213752@-1@-1@-1@@@ -21@0@21@4@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:16>, 1, "koedzhi", 0, "null") (3, 2, 3, <17:20>, 1, "ira", 0, "null") (4, 3, 4, <21:23>, 1, "ri", 0, "null")@4@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:16>, 1, "koedzhi", 0, "null") (3, 2, 3, <17:20>, 1, "ira", 0, "null") (4, 3, 4, <21:23>, 1, "ri", 0, "null")@2@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@99@35@-1@-1@-1@-1@-1@-1@-1@16507@4602@-1@-1@2340688@-1@-1@-1@@@ -22@0@22@5@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:12>, 1, "koedzhi", 0, "null") (3, 2, 3, <13:16>, 1, "ira", 0, "null") (4, 3, 4, <17:19>, 1, "ri", 0, "null") (5, 4, 5, <20:28>, 1, "koba-oru", 0, "null")@5@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:12>, 1, "koedzhi", 0, "null") (3, 2, 3, <13:16>, 1, "ira", 0, "null") (4, 3, 4, <17:19>, 1, "ri", 0, "null") (5, 4, 5, <20:28>, 1, "koba-oru", 0, "null")@2@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@99@50@-1@-1@-1@-1@-1@-1@-1@17310@4784@-1@-1@2118064@-1@-1@-1@@@ -23@0@23@4@(1, 0, 1, <0:6>, 1, "oedzhi", 0, "null") (2, 1, 2, <7:10>, 1, "ira", 0, "null") (3, 2, 3, <11:13>, 1, "ri", 0, "null") (4, 3, 4, <14:22>, 1, "koba-oru", 0, "null")@4@(1, 0, 1, <0:6>, 1, "oedzhi", 0, "null") (2, 1, 2, <7:10>, 1, "ira", 0, "null") (3, 2, 3, <11:13>, 1, "ri", 0, "null") (4, 3, 4, <14:22>, 1, "koba-oru", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@49@21@-1@-1@-1@-1@-1@-1@-1@18073@4887@-1@-1@855852@-1@-1@-1@@@ +1@0@1@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:18>, 1, "a7i", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:18>, 1, "a7i", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@89@39@-1@-1@-1@-1@-1@-1@-1@1226@134@-1@-1@1882560@-1@-1@-1@@@ +2@0@2@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:12>, 1, "a7i", 0, "null") (5, 4, 5, <13:15>, 1, "ma", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:12>, 1, "a7i", 0, "null") (5, 4, 5, <13:15>, 1, "ma", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@70@38@-1@-1@-1@-1@-1@-1@-1@1760@261@-1@-1@1632880@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:15>, 1, "a7i", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:15>, 1, "a7i", 0, "null") (6, 5, 6, <16:18>, 1, "mu", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@60@29@-1@-1@-1@-1@-1@-1@-1@2249@369@-1@-1@1189880@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:9>, 1, "a7i", 0, "null") (4, 3, 4, <10:12>, 1, "ni", 0, "null") (5, 4, 5, <13:15>, 1, "mu", 0, "null") (6, 5, 6, <16:18>, 1, "wa", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:9>, 1, "a7i", 0, "null") (4, 3, 4, <10:12>, 1, "ni", 0, "null") (5, 4, 5, <13:15>, 1, "mu", 0, "null") (6, 5, 6, <16:18>, 1, "wa", 0, "null")@2@-1@14@14@-1@14@-1@-1@-1@-1@-1@-1@167@62@-1@-1@-1@-1@-1@-1@-1@2727@604@-1@-1@3888376@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null")@5@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@58@29@-1@-1@-1@-1@-1@-1@-1@3491@720@-1@-1@1132712@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "si", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "ma", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "si", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@89@39@-1@-1@-1@-1@-1@-1@-1@3820@854@-1@-1@1882560@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "si", 0, "null") (5, 4, 5, <12:14>, 1, "ma", 0, "null") (6, 5, 6, <15:17>, 1, "mu", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "wa", 0, "null") (4, 3, 4, <9:11>, 1, "si", 0, "null") (5, 4, 5, <12:14>, 1, "ma", 0, "null") (6, 5, 6, <15:17>, 1, "mu", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@70@38@-1@-1@-1@-1@-1@-1@-1@4354@981@-1@-1@1632880@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "si", 0, "null") (4, 3, 4, <9:11>, 1, "ni", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "wa", 0, "null")@6@(1, 0, 1, <0:2>, 1, "ma", 0, "null") (2, 1, 2, <3:5>, 1, "mu", 0, "null") (3, 2, 3, <6:8>, 1, "si", 0, "null") (4, 3, 4, <9:11>, 1, "ni", 0, "null") (5, 4, 5, <12:14>, 1, "mu", 0, "null") (6, 5, 6, <15:17>, 1, "wa", 0, "null")@2@-1@15@15@-1@15@-1@-1@-1@-1@-1@-1@167@62@-1@-1@-1@-1@-1@-1@-1@5101@1229@-1@-1@3888376@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@2@-1@18@18@-1@18@-1@-1@-1@-1@-1@-1@235@72@-1@-1@-1@-1@-1@-1@-1@6322@1571@-1@-1@5275296@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:8>, 1, "dzho", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:8>, 1, "dzho", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@1@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@229@108@-1@-1@-1@-1@-1@-1@-1@7686@1943@-1@-1@5548344@-1@-1@-1@@@ +11@0@11@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:14>, 1, "dzho", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:14>, 1, "dzho", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@69@27@-1@-1@-1@-1@-1@-1@-1@8219@2063@-1@-1@1366288@-1@-1@-1@@@ +12@0@12@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "dzho", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "dzho", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@4@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@155@84@-1@-1@-1@-1@-1@-1@-1@8770@2311@-1@-1@4087888@-1@-1@-1@@@ +13@0@13@5@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:25>, 1, "koba-oru", 0, "null")@5@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:25>, 1, "koba-oru", 0, "null")@0@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@151@54@-1@-1@-1@-1@-1@-1@-1@10453@2556@-1@-1@3079736@-1@-1@-1@@@ +14@0@14@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "dzho", 0, "null") (3, 2, 3, <15:18>, 1, "opi", 0, "null") (4, 3, 4, <19:24>, 1, "edzhi", 0, "null") (5, 4, 5, <25:28>, 1, "ira", 0, "null") (6, 5, 6, <29:31>, 1, "ri", 0, "null")@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "dzho", 0, "null") (3, 2, 3, <15:18>, 1, "opi", 0, "null") (4, 3, 4, <19:24>, 1, "edzhi", 0, "null") (5, 4, 5, <25:28>, 1, "ira", 0, "null") (6, 5, 6, <29:31>, 1, "ri", 0, "null")@2@-1@19@19@-1@24@-1@-1@-1@-1@-1@-1@378@100@-1@-1@-1@-1@-1@-1@-1@11252@3045@-1@-1@8919072@-1@-1@-1@@@ +15@0@15@6@(1, 0, 1, <0:3>, 1, "saa", 0, "null") (2, 1, 2, <4:7>, 1, "opi", 0, "null") (3, 2, 3, <8:13>, 1, "edzhi", 0, "null") (4, 3, 4, <14:17>, 1, "ira", 0, "null") (5, 4, 5, <18:20>, 1, "ri", 0, "null") (6, 5, 6, <21:29>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "saa", 0, "null") (2, 1, 2, <4:7>, 1, "opi", 0, "null") (3, 2, 3, <8:13>, 1, "edzhi", 0, "null") (4, 3, 4, <14:17>, 1, "ira", 0, "null") (5, 4, 5, <18:20>, 1, "ri", 0, "null") (6, 5, 6, <21:29>, 1, "koba-oru", 0, "null")@2@-1@20@20@-1@20@-1@-1@-1@-1@-1@-1@235@72@-1@-1@-1@-1@-1@-1@-1@12545@3389@-1@-1@5275288@-1@-1@-1@@@ +16@0@16@6@(1, 0, 1, <0:8>, 1, "dzho-saa", 0, "null") (2, 1, 2, <9:12>, 1, "opi", 0, "null") (3, 2, 3, <13:18>, 1, "edzhi", 0, "null") (4, 3, 4, <19:22>, 1, "ira", 0, "null") (5, 4, 5, <23:25>, 1, "ri", 0, "null") (6, 5, 6, <26:34>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:8>, 1, "dzho-saa", 0, "null") (2, 1, 2, <9:12>, 1, "opi", 0, "null") (3, 2, 3, <13:18>, 1, "edzhi", 0, "null") (4, 3, 4, <19:22>, 1, "ira", 0, "null") (5, 4, 5, <23:25>, 1, "ri", 0, "null") (6, 5, 6, <26:34>, 1, "koba-oru", 0, "null")@2@-1@21@21@-1@21@-1@-1@-1@-1@-1@-1@235@72@-1@-1@-1@-1@-1@-1@-1@13838@3733@-1@-1@5275432@-1@-1@-1@@@ +17@0@17@6@(1, 0, 1, <0:4>, 1, "kesu", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:4>, 1, "kesu", 0, "null") (2, 1, 2, <5:8>, 1, "opi", 0, "null") (3, 2, 3, <9:14>, 1, "edzhi", 0, "null") (4, 3, 4, <15:18>, 1, "ira", 0, "null") (5, 4, 5, <19:21>, 1, "ri", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@2@-1@21@21@-1@23@-1@-1@-1@-1@-1@-1@235@72@-1@-1@-1@-1@-1@-1@-1@15131@4077@-1@-1@5275016@-1@-1@-1@@@ +18@0@18@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "kesu", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@6@(1, 0, 1, <0:3>, 1, "opi", 0, "null") (2, 1, 2, <4:9>, 1, "edzhi", 0, "null") (3, 2, 3, <10:13>, 1, "ira", 0, "null") (4, 3, 4, <14:16>, 1, "ri", 0, "null") (5, 4, 5, <17:21>, 1, "kesu", 0, "null") (6, 5, 6, <22:30>, 1, "koba-oru", 0, "null")@0@-1@6@6@-1@8@-1@-1@-1@-1@-1@-1@155@58@-1@-1@-1@-1@-1@-1@-1@16222@4325@-1@-1@3178384@-1@-1@-1@@@ +19@0@19@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "kesu", 0, "null") (3, 2, 3, <14:17>, 1, "opi", 0, "null") (4, 3, 4, <18:23>, 1, "edzhi", 0, "null") (5, 4, 5, <24:27>, 1, "ira", 0, "null") (6, 5, 6, <28:30>, 1, "ri", 0, "null")@6@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:13>, 1, "kesu", 0, "null") (3, 2, 3, <14:17>, 1, "opi", 0, "null") (4, 3, 4, <18:23>, 1, "edzhi", 0, "null") (5, 4, 5, <24:27>, 1, "ira", 0, "null") (6, 5, 6, <28:30>, 1, "ri", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@233@69@-1@-1@-1@-1@-1@-1@-1@16833@4638@-1@-1@4915296@-1@-1@-1@@@ +20@0@20@4@(1, 0, 1, <0:7>, 1, "koedzhi", 0, "null") (2, 1, 2, <8:11>, 1, "ira", 0, "null") (3, 2, 3, <12:14>, 1, "ri", 0, "null") (4, 3, 4, <15:23>, 1, "koba-oru", 0, "null")@4@(1, 0, 1, <0:7>, 1, "koedzhi", 0, "null") (2, 1, 2, <8:11>, 1, "ira", 0, "null") (3, 2, 3, <12:14>, 1, "ri", 0, "null") (4, 3, 4, <15:23>, 1, "koba-oru", 0, "null")@2@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@54@23@-1@-1@-1@-1@-1@-1@-1@17007@4725@-1@-1@1473824@-1@-1@-1@@@ +21@0@21@4@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:16>, 1, "koedzhi", 0, "null") (3, 2, 3, <17:20>, 1, "ira", 0, "null") (4, 3, 4, <21:23>, 1, "ri", 0, "null")@4@(1, 0, 1, <0:8>, 1, "koba-oru", 0, "null") (2, 1, 2, <9:16>, 1, "koedzhi", 0, "null") (3, 2, 3, <17:20>, 1, "ira", 0, "null") (4, 3, 4, <21:23>, 1, "ri", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@104@35@-1@-1@-1@-1@-1@-1@-1@17799@4896@-1@-1@2731648@-1@-1@-1@@@ +22@0@22@5@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:12>, 1, "koedzhi", 0, "null") (3, 2, 3, <13:16>, 1, "ira", 0, "null") (4, 3, 4, <17:19>, 1, "ri", 0, "null") (5, 4, 5, <20:28>, 1, "koba-oru", 0, "null")@5@(1, 0, 1, <0:4>, 1, "dzho", 0, "null") (2, 1, 2, <5:12>, 1, "koedzhi", 0, "null") (3, 2, 3, <13:16>, 1, "ira", 0, "null") (4, 3, 4, <17:19>, 1, "ri", 0, "null") (5, 4, 5, <20:28>, 1, "koba-oru", 0, "null")@2@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@110@50@-1@-1@-1@-1@-1@-1@-1@18649@5089@-1@-1@2904472@-1@-1@-1@@@ +23@0@23@4@(1, 0, 1, <0:6>, 1, "oedzhi", 0, "null") (2, 1, 2, <7:10>, 1, "ira", 0, "null") (3, 2, 3, <11:13>, 1, "ri", 0, "null") (4, 3, 4, <14:22>, 1, "koba-oru", 0, "null")@4@(1, 0, 1, <0:6>, 1, "oedzhi", 0, "null") (2, 1, 2, <7:10>, 1, "ira", 0, "null") (3, 2, 3, <11:13>, 1, "ri", 0, "null") (4, 3, 4, <14:22>, 1, "koba-oru", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@56@21@-1@-1@-1@-1@-1@-1@-1@19443@5199@-1@-1@1146396@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/clausalmods-madi/result b/tests/regression/home/gold/clausalmods-madi/result index 169f31cd8..47cae20d7 100644 --- a/tests/regression/home/gold/clausalmods-madi/result +++ b/tests/regression/home/gold/clausalmods-madi/result @@ -1,29 +1,29 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(238 head-adj-scop 0.000000 0 6 (231 comp-head 0.000000 0 3 (230 subj-head 0.000000 0 2 (227 bare-np 0.000000 0 1 (226 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (229 other-lex 0.000000 1 2 (228 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (237 comp-head 0.000000 3 6 (236 subj-head 0.000000 3 5 (233 bare-np 0.000000 3 4 (232 nom-lex 0.000000 3 4 (10 ma 0.000000 3 4 ("ma")))) (235 other-lex 0.000000 4 5 (234 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 a7i 0.000000 5 6 ("a7i"))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("a7i"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: h12 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h15 BODY: h16 ] [ "_1sg_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x14 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i20 ARG1: h21 ARG2: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h9 h15 qeq h17 h21 qeq h11 h22 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -2@0@-1@-1@-1@-1@-1@-1@-1@-1@(223 adj-head-scop 0.000000 0 6 (217 comp-head 0.000000 0 4 (216 comp-head 0.000000 0 3 (215 subj-head 0.000000 0 2 (212 bare-np 0.000000 0 1 (211 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (214 other-lex 0.000000 1 2 (213 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (10 a7i 0.000000 3 4 ("a7i"))) (222 subj-head 0.000000 4 6 (219 bare-np 0.000000 4 5 (218 nom-lex 0.000000 4 5 (11 ma 0.000000 4 5 ("ma")))) (221 other-lex 0.000000 5 6 (220 non-past-lex 0.000000 5 6 (12 mu 0.000000 5 6 ("mu"))))))@@("S" ("PP" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("P" ("a7i"))) ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] ARG1: h13 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i14 ARG1: h15 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h19 BODY: h20 ] [ "_1sg_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_go_v_rel"<-1:-1> LBL: h22 ARG0: e2 ARG1: x18 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h15 qeq h22 h16 qeq h11 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -4@0@-1@-1@-1@-1@-1@-1@-1@-1@(339 comp-head 0.000000 0 6 (338 adj-head-scop 0.000000 0 5 (332 comp-head 0.000000 0 3 (331 subj-head 0.000000 0 2 (328 bare-np 0.000000 0 1 (327 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (330 other-lex 0.000000 1 2 (329 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 a7i 0.000000 2 3 ("a7i"))) (337 subj-head 0.000000 3 5 (334 bare-np 0.000000 3 4 (333 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (336 other-lex 0.000000 4 5 (335 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu")))))) (12 wa 0.000000 5 6 ("wa")))@@("S" ("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("a7i"))) ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu")))))) ("V" ("wa")))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h11 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h17 BODY: h18 ] [ "_2sg_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x16 ] [ "_possible_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h20 h14 qeq h9 h17 qeq h19 h22 qeq h11 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -4@1@-1@-1@-1@-1@-1@-1@-1@-1@(350 adj-head-scop 0.000000 0 6 (343 comp-head 0.000000 0 3 (342 subj-head 0.000000 0 2 (340 bare-np 0.000000 0 1 (327 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (341 other-lex 0.000000 1 2 (329 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 a7i 0.000000 2 3 ("a7i"))) (349 comp-head 0.000000 3 6 (348 subj-head 0.000000 3 5 (345 bare-np 0.000000 3 4 (344 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (347 other-lex 0.000000 4 5 (346 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 wa 0.000000 5 6 ("wa"))))@@("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("a7i"))) ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i11 ARG1: h12 ARG2: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h16 BODY: h17 ] [ "_2sg_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_go_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x15 ] [ "_possible_v_rel"<-1:-1> LBL: h21 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h21 h13 qeq h9 h16 qeq h18 h22 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(238 head-adj-scop 0.000000 0 6 (231 comp-head 0.000000 0 3 (230 subj-head 0.000000 0 2 (227 bare-np 0.000000 0 1 (226 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (229 other-lex 0.000000 1 2 (228 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (237 comp-head 0.000000 3 6 (236 subj-head 0.000000 3 5 (233 bare-np 0.000000 3 4 (232 nom-lex 0.000000 3 4 (10 ma 0.000000 3 4 ("ma")))) (235 other-lex 0.000000 4 5 (234 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 si 0.000000 5 6 ("si"))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("si"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: h12 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h15 BODY: h16 ] [ "_1sg_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x14 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i20 ARG1: h21 ARG2: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h9 h15 qeq h17 h21 qeq h11 h22 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -7@0@-1@-1@-1@-1@-1@-1@-1@-1@(223 adj-head-scop 0.000000 0 6 (217 comp-head 0.000000 0 4 (216 comp-head 0.000000 0 3 (215 subj-head 0.000000 0 2 (212 bare-np 0.000000 0 1 (211 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (214 other-lex 0.000000 1 2 (213 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (10 si 0.000000 3 4 ("si"))) (222 subj-head 0.000000 4 6 (219 bare-np 0.000000 4 5 (218 nom-lex 0.000000 4 5 (11 ma 0.000000 4 5 ("ma")))) (221 other-lex 0.000000 5 6 (220 non-past-lex 0.000000 5 6 (12 mu 0.000000 5 6 ("mu"))))))@@("S" ("PP" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("P" ("si"))) ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] ARG1: h13 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i14 ARG1: h15 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h19 BODY: h20 ] [ "_1sg_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_go_v_rel"<-1:-1> LBL: h22 ARG0: e2 ARG1: x18 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h15 qeq h22 h16 qeq h11 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -8@0@-1@-1@-1@-1@-1@-1@-1@-1@(339 comp-head 0.000000 0 6 (338 adj-head-scop 0.000000 0 5 (332 comp-head 0.000000 0 3 (331 subj-head 0.000000 0 2 (328 bare-np 0.000000 0 1 (327 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (330 other-lex 0.000000 1 2 (329 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 si 0.000000 2 3 ("si"))) (337 subj-head 0.000000 3 5 (334 bare-np 0.000000 3 4 (333 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (336 other-lex 0.000000 4 5 (335 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu")))))) (12 wa 0.000000 5 6 ("wa")))@@("S" ("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("si"))) ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu")))))) ("V" ("wa")))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h11 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h17 BODY: h18 ] [ "_2sg_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x16 ] [ "_possible_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h20 h14 qeq h9 h17 qeq h19 h22 qeq h11 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -8@1@-1@-1@-1@-1@-1@-1@-1@-1@(350 adj-head-scop 0.000000 0 6 (343 comp-head 0.000000 0 3 (342 subj-head 0.000000 0 2 (340 bare-np 0.000000 0 1 (327 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (341 other-lex 0.000000 1 2 (329 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 si 0.000000 2 3 ("si"))) (349 comp-head 0.000000 3 6 (348 subj-head 0.000000 3 5 (345 bare-np 0.000000 3 4 (344 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (347 other-lex 0.000000 4 5 (346 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 wa 0.000000 5 6 ("wa"))))@@("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("si"))) ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i11 ARG1: h12 ARG2: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h16 BODY: h17 ] [ "_2sg_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_go_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x15 ] [ "_possible_v_rel"<-1:-1> LBL: h21 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h21 h13 qeq h9 h16 qeq h18 h22 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -9@0@-1@-1@-1@-1@-1@-1@-1@-1@(419 adj-head-scop 0.000000 0 6 (414 if-modifying-clause 0.000000 0 5 (413 adj-head-int 0.000000 0 5 (7 dzho 0.000000 0 1 ("dzho")) (412 comp-head 0.000000 1 5 (406 bare-np 0.000000 1 2 (405 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (411 head-subj 0.000000 2 5 (408 other-lex 0.000000 2 3 (407 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (410 head-spec 0.000000 3 5 (409 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -9@1@-1@-1@-1@-1@-1@-1@-1@-1@(430 adj-head-scop 0.000000 0 6 (429 if-modifying-clause 0.000000 0 5 (428 adj-head-int 0.000000 0 5 (7 dzho 0.000000 0 1 ("dzho")) (427 subj-head 0.000000 1 5 (421 bare-np 0.000000 1 2 (420 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (426 head-comp 0.000000 2 5 (423 other-lex 0.000000 2 3 (422 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (425 head-spec 0.000000 3 5 (424 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -10@0@-1@-1@-1@-1@-1@-1@-1@-1@(439 adj-head-scop 0.000000 0 6 (434 if-modifying-clause 0.000000 0 5 (433 subj-head 0.000000 0 5 (426 bare-np 0.000000 0 1 (425 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (432 adj-head-int 0.000000 1 5 (8 dzho 0.000000 1 2 ("dzho")) (431 head-comp 0.000000 2 5 (428 other-lex 0.000000 2 3 (427 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (430 head-spec 0.000000 3 5 (429 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (438 decl-head-opt-subj 0.000000 5 6 (437 subj-dir-prefix 0.000000 5 6 (436 directive-lex 0.000000 5 6 (435 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("ADV" ("dzho")) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -12@0@-1@-1@-1@-1@-1@-1@-1@-1@(346 head-adj-scop 0.000000 0 6 (339 subj-head 0.000000 0 4 (333 bare-np 0.000000 0 1 (332 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (338 head-comp 0.000000 1 4 (335 other-lex 0.000000 1 2 (334 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (337 head-spec 0.000000 2 4 (336 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (345 if-modifying-clause 0.000000 4 6 (344 decl-head-opt-subj 0.000000 4 6 (343 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (342 subj-dir-prefix 0.000000 5 6 (341 directive-lex 0.000000 5 6 (340 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("VP" ("ADV" ("dzho")) ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x5 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < e20 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.25)) -12@1@-1@-1@-1@-1@-1@-1@-1@-1@(362 head-adj-scop 0.000000 0 6 (361 comp-head 0.000000 0 4 (355 bare-np 0.000000 0 1 (354 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (360 head-subj 0.000000 1 4 (357 other-lex 0.000000 1 2 (356 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (359 head-spec 0.000000 2 4 (358 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (345 if-modifying-clause 0.000000 4 6 (344 decl-head-opt-subj 0.000000 4 6 (343 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (342 subj-dir-prefix 0.000000 5 6 (341 directive-lex 0.000000 5 6 (340 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("VP" ("ADV" ("dzho")) ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x5 ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < e20 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.25)) -12@2@-1@-1@-1@-1@-1@-1@-1@-1@(353 head-adj-scop 0.000000 0 6 (339 subj-head 0.000000 0 4 (333 bare-np 0.000000 0 1 (332 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (338 head-comp 0.000000 1 4 (335 other-lex 0.000000 1 2 (334 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (337 head-spec 0.000000 2 4 (336 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (352 if-modifying-clause 0.000000 4 6 (351 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (350 decl-head-opt-subj 0.000000 5 6 (349 subj-dir-prefix 0.000000 5 6 (348 directive-lex 0.000000 5 6 (347 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x5 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) -12@3@-1@-1@-1@-1@-1@-1@-1@-1@(363 head-adj-scop 0.000000 0 6 (361 comp-head 0.000000 0 4 (355 bare-np 0.000000 0 1 (354 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (360 head-subj 0.000000 1 4 (357 other-lex 0.000000 1 2 (356 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (359 head-spec 0.000000 2 4 (358 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (352 if-modifying-clause 0.000000 4 6 (351 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (350 decl-head-opt-subj 0.000000 5 6 (349 subj-dir-prefix 0.000000 5 6 (348 directive-lex 0.000000 5 6 (347 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x5 ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) -14@0@-1@-1@-1@-1@-1@-1@-1@-1@(593 head-adj-scop 0.000000 0 6 (582 decl-head-opt-subj 0.000000 0 1 (581 subj-dir-prefix 0.000000 0 1 (580 directive-lex 0.000000 0 1 (579 non-past-lex 0.000000 0 1 (7 ba-oru 0.000000 0 1 ("koba-oru")))))) (592 if-modifying-clause 0.000000 1 6 (591 adj-head-int 0.000000 1 6 (8 dzho 0.000000 1 2 ("dzho")) (590 comp-head 0.000000 2 6 (584 bare-np 0.000000 2 3 (583 nom-lex 0.000000 2 3 (9 opi 0.000000 2 3 ("opi")))) (589 head-subj 0.000000 3 6 (586 other-lex 0.000000 3 4 (585 non-past-lex 0.000000 3 4 (10 edzhi 0.000000 3 4 ("edzhi")))) (588 head-spec 0.000000 4 6 (587 nom-lex 0.000000 4 5 (11 ira 0.000000 4 5 ("ira"))) (12 ri 0.000000 5 6 ("ri"))))))))@@("S" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_put+up_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_if_subord_rel"<-1:-1> LBL: h6 ARG0: e7 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h8 ARG2: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h12 BODY: h13 ] [ "_opi_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_take_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x17 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x11 ] [ "_beer_n_rel"<-1:-1> LBL: h18 ARG0: x17 ] [ "_def_q_rel"<-1:-1> LBL: h19 ARG0: x17 RSTR: h20 BODY: h21 ] > HCONS: < h0 qeq h1 h8 qeq h4 h9 qeq h15 h12 qeq h14 h20 qeq h18 > ICONS: < e2 non-focus x5 > ]@((:ascore . 0.0) (:probability . 0.5)) -14@1@-1@-1@-1@-1@-1@-1@-1@-1@(604 head-adj-scop 0.000000 0 6 (582 decl-head-opt-subj 0.000000 0 1 (581 subj-dir-prefix 0.000000 0 1 (580 directive-lex 0.000000 0 1 (579 non-past-lex 0.000000 0 1 (7 ba-oru 0.000000 0 1 ("koba-oru")))))) (603 if-modifying-clause 0.000000 1 6 (602 adj-head-int 0.000000 1 6 (8 dzho 0.000000 1 2 ("dzho")) (601 subj-head 0.000000 2 6 (595 bare-np 0.000000 2 3 (594 nom-lex 0.000000 2 3 (9 opi 0.000000 2 3 ("opi")))) (600 head-comp 0.000000 3 6 (597 other-lex 0.000000 3 4 (596 non-past-lex 0.000000 3 4 (10 edzhi 0.000000 3 4 ("edzhi")))) (599 head-spec 0.000000 4 6 (598 nom-lex 0.000000 4 5 (11 ira 0.000000 4 5 ("ira"))) (12 ri 0.000000 5 6 ("ri"))))))))@@("S" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_put+up_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_if_subord_rel"<-1:-1> LBL: h6 ARG0: e7 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h8 ARG2: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h12 BODY: h13 ] [ "_opi_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_take_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x11 ARG2: x17 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h18 ARG0: x17 ] [ "_def_q_rel"<-1:-1> LBL: h19 ARG0: x17 RSTR: h20 BODY: h21 ] > HCONS: < h0 qeq h1 h8 qeq h4 h9 qeq h15 h12 qeq h14 h20 qeq h18 > ICONS: < e2 non-focus x5 > ]@((:ascore . 0.0) (:probability . 0.5)) -15@0@-1@-1@-1@-1@-1@-1@-1@-1@(419 adj-head-scop 0.000000 0 6 (414 if2-modifying-clause 0.000000 0 5 (413 adj-head-int 0.000000 0 5 (7 saa 0.000000 0 1 ("saa")) (412 comp-head 0.000000 1 5 (406 bare-np 0.000000 1 2 (405 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (411 head-subj 0.000000 2 5 (408 other-lex 0.000000 2 3 (407 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (410 head-spec 0.000000 3 5 (409 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if2_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -15@1@-1@-1@-1@-1@-1@-1@-1@-1@(430 adj-head-scop 0.000000 0 6 (429 if2-modifying-clause 0.000000 0 5 (428 adj-head-int 0.000000 0 5 (7 saa 0.000000 0 1 ("saa")) (427 subj-head 0.000000 1 5 (421 bare-np 0.000000 1 2 (420 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (426 head-comp 0.000000 2 5 (423 other-lex 0.000000 2 3 (422 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (425 head-spec 0.000000 3 5 (424 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if2_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -16@0@-1@-1@-1@-1@-1@-1@-1@-1@(419 adj-head-scop 0.000000 0 6 (414 even+if-modifying-clause 0.000000 0 5 (413 adj-head-int 0.000000 0 5 (7 dzho-saa 0.000000 0 1 ("dzho-saa")) (412 comp-head 0.000000 1 5 (406 bare-np 0.000000 1 2 (405 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (411 head-subj 0.000000 2 5 (408 other-lex 0.000000 2 3 (407 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (410 head-spec 0.000000 3 5 (409 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho-saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_even+if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -16@1@-1@-1@-1@-1@-1@-1@-1@-1@(430 adj-head-scop 0.000000 0 6 (429 even+if-modifying-clause 0.000000 0 5 (428 adj-head-int 0.000000 0 5 (7 dzho-saa 0.000000 0 1 ("dzho-saa")) (427 subj-head 0.000000 1 5 (421 bare-np 0.000000 1 2 (420 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (426 head-comp 0.000000 2 5 (423 other-lex 0.000000 2 3 (422 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (425 head-spec 0.000000 3 5 (424 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho-saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_even+if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -17@0@-1@-1@-1@-1@-1@-1@-1@-1@(419 adj-head-scop 0.000000 0 6 (414 if3-modifying-clause 0.000000 0 5 (413 adj-head-int 0.000000 0 5 (7 kesu 0.000000 0 1 ("kesu")) (412 comp-head 0.000000 1 5 (406 bare-np 0.000000 1 2 (405 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (411 head-subj 0.000000 2 5 (408 other-lex 0.000000 2 3 (407 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (410 head-spec 0.000000 3 5 (409 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("kesu")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if3_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -17@1@-1@-1@-1@-1@-1@-1@-1@-1@(430 adj-head-scop 0.000000 0 6 (429 if3-modifying-clause 0.000000 0 5 (428 adj-head-int 0.000000 0 5 (7 kesu 0.000000 0 1 ("kesu")) (427 subj-head 0.000000 1 5 (421 bare-np 0.000000 1 2 (420 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (426 head-comp 0.000000 2 5 (423 other-lex 0.000000 2 3 (422 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (425 head-spec 0.000000 3 5 (424 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (418 decl-head-opt-subj 0.000000 5 6 (417 subj-dir-prefix 0.000000 5 6 (416 directive-lex 0.000000 5 6 (415 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("kesu")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if3_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) -20@0@-1@-1@-1@-1@-1@-1@-1@-1@(163 adj-head-scop 0.000000 0 4 (158 directive-s-attach-modifying-clause-phrase 0.000000 0 3 (157 decl-head-opt-subj 0.000000 0 3 (156 head-comp 0.000000 0 3 (153 subj-dir-prefix 0.000000 0 1 (152 directive-lex 0.000000 0 1 (151 non-past-lex 0.000000 0 1 (5 edzhi 0.000000 0 1 ("koedzhi"))))) (155 head-spec 0.000000 1 3 (154 nom-lex 0.000000 1 2 (6 ira 0.000000 1 2 ("ira"))) (7 ri 0.000000 2 3 ("ri")))))) (162 decl-head-opt-subj 0.000000 3 4 (161 subj-dir-prefix 0.000000 3 4 (160 directive-lex 0.000000 3 4 (159 non-past-lex 0.000000 3 4 (8 ba-oru 0.000000 3 4 ("koba-oru")))))))@@("S" ("PP" ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri")))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: i5 ARG1: h6 ARG2: h7 ] [ "_take_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "_def_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_put+up_v_rel"<-1:-1> LBL: h16 ARG0: e2 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h16 h7 qeq h8 h14 qeq h12 > ICONS: < e9 non-focus x10 e2 non-focus x17 > ]@((:ascore . 0.0) (:probability . 0.5)) -20@1@-1@-1@-1@-1@-1@-1@-1@-1@(172 head-adj-scop 0.000000 0 4 (167 decl-head-opt-subj 0.000000 0 3 (166 head-comp 0.000000 0 3 (164 subj-dir-prefix 0.000000 0 1 (152 directive-lex 0.000000 0 1 (151 non-past-lex 0.000000 0 1 (5 edzhi 0.000000 0 1 ("koedzhi"))))) (165 head-spec 0.000000 1 3 (154 nom-lex 0.000000 1 2 (6 ira 0.000000 1 2 ("ira"))) (7 ri 0.000000 2 3 ("ri"))))) (171 directive-s-attach-modifying-clause-phrase 0.000000 3 4 (170 decl-head-opt-subj 0.000000 3 4 (169 subj-dir-prefix 0.000000 3 4 (168 directive-lex 0.000000 3 4 (159 non-past-lex 0.000000 3 4 (8 ba-oru 0.000000 3 4 ("koba-oru"))))))))@@("S" ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_take_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h7 ARG0: x6 ] [ "_def_q_rel"<-1:-1> LBL: h8 ARG0: x6 RSTR: h9 BODY: h10 ] [ "_if_subord_rel"<-1:-1> LBL: h11 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "_put+up_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h9 qeq h7 h13 qeq h4 h14 qeq h15 > ICONS: < e2 non-focus x5 e16 non-focus x17 > ]@((:ascore . 0.0) (:probability . 0.5)) -21@0@-1@-1@-1@-1@-1@-1@-1@-1@(225 head-adj-scop 0.000000 0 4 (216 decl-head-opt-subj 0.000000 0 1 (215 subj-dir-prefix 0.000000 0 1 (214 directive-lex 0.000000 0 1 (213 non-past-lex 0.000000 0 1 (5 ba-oru 0.000000 0 1 ("koba-oru")))))) (224 directive-s-attach-modifying-clause-phrase 0.000000 1 4 (223 decl-head-opt-subj 0.000000 1 4 (222 head-comp 0.000000 1 4 (219 subj-dir-prefix 0.000000 1 2 (218 directive-lex 0.000000 1 2 (217 non-past-lex 0.000000 1 2 (6 edzhi 0.000000 1 2 ("koedzhi"))))) (221 head-spec 0.000000 2 4 (220 nom-lex 0.000000 2 3 (7 ira 0.000000 2 3 ("ira"))) (8 ri 0.000000 3 4 ("ri")))))))@@("S" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))) ("PP" ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_put+up_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_if_subord_rel"<-1:-1> LBL: h6 ARG0: i7 ARG1: h8 ARG2: h9 ] [ "_take_v_rel"<-1:-1> LBL: h10 ARG0: e11 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x12 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x13 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h14 ARG0: x13 ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x13 RSTR: h16 BODY: h17 ] > HCONS: < h0 qeq h1 h8 qeq h4 h9 qeq h10 h16 qeq h14 > ICONS: < e2 non-focus x5 e11 non-focus x12 > ]@((:ascore . 0.0) (:probability . 0.5)) -21@1@-1@-1@-1@-1@-1@-1@-1@-1@(234 adj-head-scop 0.000000 0 4 (229 directive-s-attach-modifying-clause-phrase 0.000000 0 1 (228 decl-head-opt-subj 0.000000 0 1 (227 subj-dir-prefix 0.000000 0 1 (226 directive-lex 0.000000 0 1 (213 non-past-lex 0.000000 0 1 (5 ba-oru 0.000000 0 1 ("koba-oru"))))))) (233 decl-head-opt-subj 0.000000 1 4 (232 head-comp 0.000000 1 4 (230 subj-dir-prefix 0.000000 1 2 (218 directive-lex 0.000000 1 2 (217 non-past-lex 0.000000 1 2 (6 edzhi 0.000000 1 2 ("koedzhi"))))) (231 head-spec 0.000000 2 4 (220 nom-lex 0.000000 2 3 (7 ira 0.000000 2 3 ("ira"))) (8 ri 0.000000 3 4 ("ri"))))))@@("S" ("PP" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru"))))))) ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: i5 ARG1: h6 ARG2: h7 ] [ "_put+up_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_take_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x12 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x13 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h14 ARG0: x13 ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x13 RSTR: h16 BODY: h17 ] > HCONS: < h0 qeq h1 h6 qeq h11 h7 qeq h8 h16 qeq h14 > ICONS: < e9 non-focus x10 e2 non-focus x12 > ]@((:ascore . 0.0) (:probability . 0.5)) -22@0@-1@-1@-1@-1@-1@-1@-1@-1@(260 adj-head-scop 0.000000 0 5 (255 if-modifying-clause 0.000000 0 4 (254 decl-head-opt-subj 0.000000 0 4 (253 adj-head-int 0.000000 0 4 (6 dzho 0.000000 0 1 ("dzho")) (252 head-comp 0.000000 1 4 (249 subj-dir-prefix 0.000000 1 2 (248 directive-lex 0.000000 1 2 (247 non-past-lex 0.000000 1 2 (7 edzhi 0.000000 1 2 ("koedzhi"))))) (251 head-spec 0.000000 2 4 (250 nom-lex 0.000000 2 3 (8 ira 0.000000 2 3 ("ira"))) (9 ri 0.000000 3 4 ("ri"))))))) (259 decl-head-opt-subj 0.000000 4 5 (258 subj-dir-prefix 0.000000 4 5 (257 directive-lex 0.000000 4 5 (256 non-past-lex 0.000000 4 5 (10 ba-oru 0.000000 4 5 ("koba-oru")))))))@@("S" ("PP" ("S" ("VP" ("ADV" ("dzho")) ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "_take_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "_def_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_put+up_v_rel"<-1:-1> LBL: h16 ARG0: e2 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h16 h7 qeq h8 h14 qeq h12 > ICONS: < e9 non-focus x10 > ]@((:ascore . 0.0) (:probability . 0.5)) -22@1@-1@-1@-1@-1@-1@-1@-1@-1@(269 adj-head-scop 0.000000 0 5 (268 if-modifying-clause 0.000000 0 4 (267 adj-head-int 0.000000 0 4 (6 dzho 0.000000 0 1 ("dzho")) (266 decl-head-opt-subj 0.000000 1 4 (265 head-comp 0.000000 1 4 (262 subj-dir-prefix 0.000000 1 2 (261 directive-lex 0.000000 1 2 (247 non-past-lex 0.000000 1 2 (7 edzhi 0.000000 1 2 ("koedzhi"))))) (264 head-spec 0.000000 2 4 (263 nom-lex 0.000000 2 3 (8 ira 0.000000 2 3 ("ira"))) (9 ri 0.000000 3 4 ("ri"))))))) (259 decl-head-opt-subj 0.000000 4 5 (258 subj-dir-prefix 0.000000 4 5 (257 directive-lex 0.000000 4 5 (256 non-past-lex 0.000000 4 5 (10 ba-oru 0.000000 4 5 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho")) ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "_take_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "_def_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_put+up_v_rel"<-1:-1> LBL: h16 ARG0: e2 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h16 h7 qeq h8 h14 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(251 head-adj-scop 0.000000 0 6 (244 comp-head 0.000000 0 3 (243 subj-head 0.000000 0 2 (240 bare-np 0.000000 0 1 (239 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (242 other-lex 0.000000 1 2 (241 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (250 comp-head 0.000000 3 6 (249 subj-head 0.000000 3 5 (246 bare-np 0.000000 3 4 (245 nom-lex 0.000000 3 4 (10 ma 0.000000 3 4 ("ma")))) (248 other-lex 0.000000 4 5 (247 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 a7i 0.000000 5 6 ("a7i"))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("a7i"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: h12 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h15 BODY: h16 ] [ "_1sg_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x14 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i20 ARG1: h21 ARG2: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h9 h15 qeq h17 h21 qeq h11 h22 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(231 adj-head-scop 0.000000 0 6 (225 comp-head 0.000000 0 4 (224 comp-head 0.000000 0 3 (223 subj-head 0.000000 0 2 (220 bare-np 0.000000 0 1 (219 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (222 other-lex 0.000000 1 2 (221 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (10 a7i 0.000000 3 4 ("a7i"))) (230 subj-head 0.000000 4 6 (227 bare-np 0.000000 4 5 (226 nom-lex 0.000000 4 5 (11 ma 0.000000 4 5 ("ma")))) (229 other-lex 0.000000 5 6 (228 non-past-lex 0.000000 5 6 (12 mu 0.000000 5 6 ("mu"))))))@@("S" ("PP" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("P" ("a7i"))) ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] ARG1: h13 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i14 ARG1: h15 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h19 BODY: h20 ] [ "_1sg_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_go_v_rel"<-1:-1> LBL: h22 ARG0: e2 ARG1: x18 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h15 qeq h22 h16 qeq h11 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(352 comp-head 0.000000 0 6 (351 adj-head-scop 0.000000 0 5 (345 comp-head 0.000000 0 3 (344 subj-head 0.000000 0 2 (341 bare-np 0.000000 0 1 (340 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (343 other-lex 0.000000 1 2 (342 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 a7i 0.000000 2 3 ("a7i"))) (350 subj-head 0.000000 3 5 (347 bare-np 0.000000 3 4 (346 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (349 other-lex 0.000000 4 5 (348 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu")))))) (12 wa 0.000000 5 6 ("wa")))@@("S" ("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("a7i"))) ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu")))))) ("V" ("wa")))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h11 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h17 BODY: h18 ] [ "_2sg_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x16 ] [ "_possible_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h20 h14 qeq h9 h17 qeq h19 h22 qeq h11 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(363 adj-head-scop 0.000000 0 6 (356 comp-head 0.000000 0 3 (355 subj-head 0.000000 0 2 (353 bare-np 0.000000 0 1 (340 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (354 other-lex 0.000000 1 2 (342 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 a7i 0.000000 2 3 ("a7i"))) (362 comp-head 0.000000 3 6 (361 subj-head 0.000000 3 5 (358 bare-np 0.000000 3 4 (357 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (360 other-lex 0.000000 4 5 (359 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 wa 0.000000 5 6 ("wa"))))@@("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("a7i"))) ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i11 ARG1: h12 ARG2: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h16 BODY: h17 ] [ "_2sg_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_go_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x15 ] [ "_possible_v_rel"<-1:-1> LBL: h21 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h21 h13 qeq h9 h16 qeq h18 h22 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(251 head-adj-scop 0.000000 0 6 (244 comp-head 0.000000 0 3 (243 subj-head 0.000000 0 2 (240 bare-np 0.000000 0 1 (239 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (242 other-lex 0.000000 1 2 (241 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (250 comp-head 0.000000 3 6 (249 subj-head 0.000000 3 5 (246 bare-np 0.000000 3 4 (245 nom-lex 0.000000 3 4 (10 ma 0.000000 3 4 ("ma")))) (248 other-lex 0.000000 4 5 (247 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 si 0.000000 5 6 ("si"))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("si"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: h12 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h15 BODY: h16 ] [ "_1sg_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x14 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i20 ARG1: h21 ARG2: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h9 h15 qeq h17 h21 qeq h11 h22 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(231 adj-head-scop 0.000000 0 6 (225 comp-head 0.000000 0 4 (224 comp-head 0.000000 0 3 (223 subj-head 0.000000 0 2 (220 bare-np 0.000000 0 1 (219 nom-lex 0.000000 0 1 (7 ni 0.000000 0 1 ("ni")))) (222 other-lex 0.000000 1 2 (221 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 wa 0.000000 2 3 ("wa"))) (10 si 0.000000 3 4 ("si"))) (230 subj-head 0.000000 4 6 (227 bare-np 0.000000 4 5 (226 nom-lex 0.000000 4 5 (11 ma 0.000000 4 5 ("ma")))) (229 other-lex 0.000000 5 6 (228 non-past-lex 0.000000 5 6 (12 mu 0.000000 5 6 ("mu"))))))@@("S" ("PP" ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))) ("P" ("si"))) ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_2sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x5 ] [ "_possible_v_rel"<-1:-1> LBL: h11 ARG0: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] ARG1: h13 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i14 ARG1: h15 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h19 BODY: h20 ] [ "_1sg_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_go_v_rel"<-1:-1> LBL: h22 ARG0: e2 ARG1: x18 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h9 h15 qeq h22 h16 qeq h11 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(352 comp-head 0.000000 0 6 (351 adj-head-scop 0.000000 0 5 (345 comp-head 0.000000 0 3 (344 subj-head 0.000000 0 2 (341 bare-np 0.000000 0 1 (340 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (343 other-lex 0.000000 1 2 (342 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 si 0.000000 2 3 ("si"))) (350 subj-head 0.000000 3 5 (347 bare-np 0.000000 3 4 (346 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (349 other-lex 0.000000 4 5 (348 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu")))))) (12 wa 0.000000 5 6 ("wa")))@@("S" ("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("si"))) ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu")))))) ("V" ("wa")))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h11 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h17 BODY: h18 ] [ "_2sg_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_go_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x16 ] [ "_possible_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h20 h14 qeq h9 h17 qeq h19 h22 qeq h11 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(363 adj-head-scop 0.000000 0 6 (356 comp-head 0.000000 0 3 (355 subj-head 0.000000 0 2 (353 bare-np 0.000000 0 1 (340 nom-lex 0.000000 0 1 (7 ma 0.000000 0 1 ("ma")))) (354 other-lex 0.000000 1 2 (342 non-past-lex 0.000000 1 2 (8 mu 0.000000 1 2 ("mu"))))) (9 si 0.000000 2 3 ("si"))) (362 comp-head 0.000000 3 6 (361 subj-head 0.000000 3 5 (358 bare-np 0.000000 3 4 (357 nom-lex 0.000000 3 4 (10 ni 0.000000 3 4 ("ni")))) (360 other-lex 0.000000 4 5 (359 non-past-lex 0.000000 4 5 (11 mu 0.000000 4 5 ("mu"))))) (12 wa 0.000000 5 6 ("wa"))))@@("S" ("PP" ("S" ("NP" ("N" ("N" ("ma")))) ("VP" ("VP" ("VP" ("mu"))))) ("P" ("si"))) ("S" ("S" ("NP" ("N" ("N" ("ni")))) ("VP" ("VP" ("VP" ("mu"))))) ("V" ("wa"))))@[ LTOP: h0 INDEX: e2 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: possible ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 1st PNG.NUM: singular ] RSTR: h6 BODY: h7 ] [ "_1sg_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x5 ] [ "_because_subord_rel"<-1:-1> LBL: h1 ARG0: i11 ARG1: h12 ARG2: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: 2nd PNG.NUM: singular ] RSTR: h16 BODY: h17 ] [ "_2sg_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_go_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: possible ] ARG1: x15 ] [ "_possible_v_rel"<-1:-1> LBL: h21 ARG0: e2 ARG1: h22 ] > HCONS: < h0 qeq h1 h6 qeq h8 h12 qeq h21 h13 qeq h9 h16 qeq h18 h22 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(437 adj-head-scop 0.000000 0 6 (432 if-modifying-clause 0.000000 0 5 (431 adj-head-int 0.000000 0 5 (7 dzho 0.000000 0 1 ("dzho")) (430 subj-head 0.000000 1 5 (424 bare-np 0.000000 1 2 (423 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (429 head-comp 0.000000 2 5 (426 other-lex 0.000000 2 3 (425 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (428 head-spec 0.000000 3 5 (427 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +9@1@-1@-1@-1@-1@-1@-1@-1@-1@(448 adj-head-scop 0.000000 0 6 (447 if-modifying-clause 0.000000 0 5 (446 adj-head-int 0.000000 0 5 (7 dzho 0.000000 0 1 ("dzho")) (445 comp-head 0.000000 1 5 (439 bare-np 0.000000 1 2 (438 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (444 head-subj 0.000000 2 5 (441 other-lex 0.000000 2 3 (440 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (443 head-spec 0.000000 3 5 (442 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(465 adj-head-scop 0.000000 0 6 (460 if-modifying-clause 0.000000 0 5 (459 subj-head 0.000000 0 5 (452 bare-np 0.000000 0 1 (451 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (458 adj-head-int 0.000000 1 5 (8 dzho 0.000000 1 2 ("dzho")) (457 head-comp 0.000000 2 5 (454 other-lex 0.000000 2 3 (453 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (456 head-spec 0.000000 3 5 (455 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (464 decl-head-opt-subj 0.000000 5 6 (463 subj-dir-prefix 0.000000 5 6 (462 directive-lex 0.000000 5 6 (461 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("ADV" ("dzho")) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(367 head-adj-scop 0.000000 0 6 (360 subj-head 0.000000 0 4 (354 bare-np 0.000000 0 1 (353 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (359 head-comp 0.000000 1 4 (356 other-lex 0.000000 1 2 (355 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (358 head-spec 0.000000 2 4 (357 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (366 if-modifying-clause 0.000000 4 6 (365 decl-head-opt-subj 0.000000 4 6 (364 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (363 subj-dir-prefix 0.000000 5 6 (362 directive-lex 0.000000 5 6 (361 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("VP" ("ADV" ("dzho")) ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x5 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < e20 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.25)) +12@1@-1@-1@-1@-1@-1@-1@-1@-1@(383 head-adj-scop 0.000000 0 6 (382 comp-head 0.000000 0 4 (376 bare-np 0.000000 0 1 (375 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (381 head-subj 0.000000 1 4 (378 other-lex 0.000000 1 2 (377 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (380 head-spec 0.000000 2 4 (379 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (366 if-modifying-clause 0.000000 4 6 (365 decl-head-opt-subj 0.000000 4 6 (364 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (363 subj-dir-prefix 0.000000 5 6 (362 directive-lex 0.000000 5 6 (361 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("VP" ("ADV" ("dzho")) ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x5 ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < e20 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.25)) +12@2@-1@-1@-1@-1@-1@-1@-1@-1@(374 head-adj-scop 0.000000 0 6 (360 subj-head 0.000000 0 4 (354 bare-np 0.000000 0 1 (353 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (359 head-comp 0.000000 1 4 (356 other-lex 0.000000 1 2 (355 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (358 head-spec 0.000000 2 4 (357 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (373 if-modifying-clause 0.000000 4 6 (372 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (371 decl-head-opt-subj 0.000000 5 6 (370 subj-dir-prefix 0.000000 5 6 (369 directive-lex 0.000000 5 6 (368 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x5 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < e20 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.25)) +12@3@-1@-1@-1@-1@-1@-1@-1@-1@(384 head-adj-scop 0.000000 0 6 (382 comp-head 0.000000 0 4 (376 bare-np 0.000000 0 1 (375 nom-lex 0.000000 0 1 (7 opi 0.000000 0 1 ("opi")))) (381 head-subj 0.000000 1 4 (378 other-lex 0.000000 1 2 (377 non-past-lex 0.000000 1 2 (8 edzhi 0.000000 1 2 ("edzhi")))) (380 head-spec 0.000000 2 4 (379 nom-lex 0.000000 2 3 (9 ira 0.000000 2 3 ("ira"))) (10 ri 0.000000 3 4 ("ri"))))) (373 if-modifying-clause 0.000000 4 6 (372 adj-head-int 0.000000 4 6 (11 dzho 0.000000 4 5 ("dzho")) (371 decl-head-opt-subj 0.000000 5 6 (370 subj-dir-prefix 0.000000 5 6 (369 directive-lex 0.000000 5 6 (368 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))))@@("S" ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h6 BODY: h7 ] [ "_opi_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_take_v_rel"<-1:-1> LBL: h9 ARG0: e2 ARG1: x10 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x5 ] [ "_beer_n_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "_def_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_if_subord_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ARG2: h18 ] [ "_put+up_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h17 qeq h9 h18 qeq h19 > ICONS: < e20 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.25)) +14@0@-1@-1@-1@-1@-1@-1@-1@-1@(608 head-adj-scop 0.000000 0 6 (597 decl-head-opt-subj 0.000000 0 1 (596 subj-dir-prefix 0.000000 0 1 (595 directive-lex 0.000000 0 1 (594 non-past-lex 0.000000 0 1 (7 ba-oru 0.000000 0 1 ("koba-oru")))))) (607 if-modifying-clause 0.000000 1 6 (606 adj-head-int 0.000000 1 6 (8 dzho 0.000000 1 2 ("dzho")) (605 subj-head 0.000000 2 6 (599 bare-np 0.000000 2 3 (598 nom-lex 0.000000 2 3 (9 opi 0.000000 2 3 ("opi")))) (604 head-comp 0.000000 3 6 (601 other-lex 0.000000 3 4 (600 non-past-lex 0.000000 3 4 (10 edzhi 0.000000 3 4 ("edzhi")))) (603 head-spec 0.000000 4 6 (602 nom-lex 0.000000 4 5 (11 ira 0.000000 4 5 ("ira"))) (12 ri 0.000000 5 6 ("ri"))))))))@@("S" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_put+up_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_if_subord_rel"<-1:-1> LBL: h6 ARG0: e7 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h8 ARG2: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h12 BODY: h13 ] [ "_opi_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_take_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x11 ARG2: x17 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h18 ARG0: x17 ] [ "_def_q_rel"<-1:-1> LBL: h19 ARG0: x17 RSTR: h20 BODY: h21 ] > HCONS: < h0 qeq h1 h8 qeq h4 h9 qeq h15 h12 qeq h14 h20 qeq h18 > ICONS: < e2 non-focus x5 > ]@((:ascore . 0.0) (:probability . 0.5)) +14@1@-1@-1@-1@-1@-1@-1@-1@-1@(619 head-adj-scop 0.000000 0 6 (597 decl-head-opt-subj 0.000000 0 1 (596 subj-dir-prefix 0.000000 0 1 (595 directive-lex 0.000000 0 1 (594 non-past-lex 0.000000 0 1 (7 ba-oru 0.000000 0 1 ("koba-oru")))))) (618 if-modifying-clause 0.000000 1 6 (617 adj-head-int 0.000000 1 6 (8 dzho 0.000000 1 2 ("dzho")) (616 comp-head 0.000000 2 6 (610 bare-np 0.000000 2 3 (609 nom-lex 0.000000 2 3 (9 opi 0.000000 2 3 ("opi")))) (615 head-subj 0.000000 3 6 (612 other-lex 0.000000 3 4 (611 non-past-lex 0.000000 3 4 (10 edzhi 0.000000 3 4 ("edzhi")))) (614 head-spec 0.000000 4 6 (613 nom-lex 0.000000 4 5 (11 ira 0.000000 4 5 ("ira"))) (12 ri 0.000000 5 6 ("ri"))))))))@@("S" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))) ("PP" ("S" ("ADV" ("dzho")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_put+up_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_if_subord_rel"<-1:-1> LBL: h6 ARG0: e7 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h8 ARG2: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h12 BODY: h13 ] [ "_opi_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_take_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x17 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x11 ] [ "_beer_n_rel"<-1:-1> LBL: h18 ARG0: x17 ] [ "_def_q_rel"<-1:-1> LBL: h19 ARG0: x17 RSTR: h20 BODY: h21 ] > HCONS: < h0 qeq h1 h8 qeq h4 h9 qeq h15 h12 qeq h14 h20 qeq h18 > ICONS: < e2 non-focus x5 > ]@((:ascore . 0.0) (:probability . 0.5)) +15@0@-1@-1@-1@-1@-1@-1@-1@-1@(437 adj-head-scop 0.000000 0 6 (432 if2-modifying-clause 0.000000 0 5 (431 adj-head-int 0.000000 0 5 (7 saa 0.000000 0 1 ("saa")) (430 subj-head 0.000000 1 5 (424 bare-np 0.000000 1 2 (423 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (429 head-comp 0.000000 2 5 (426 other-lex 0.000000 2 3 (425 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (428 head-spec 0.000000 3 5 (427 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if2_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +15@1@-1@-1@-1@-1@-1@-1@-1@-1@(448 adj-head-scop 0.000000 0 6 (447 if2-modifying-clause 0.000000 0 5 (446 adj-head-int 0.000000 0 5 (7 saa 0.000000 0 1 ("saa")) (445 comp-head 0.000000 1 5 (439 bare-np 0.000000 1 2 (438 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (444 head-subj 0.000000 2 5 (441 other-lex 0.000000 2 3 (440 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (443 head-spec 0.000000 3 5 (442 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if2_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +16@0@-1@-1@-1@-1@-1@-1@-1@-1@(437 adj-head-scop 0.000000 0 6 (432 even+if-modifying-clause 0.000000 0 5 (431 adj-head-int 0.000000 0 5 (7 dzho-saa 0.000000 0 1 ("dzho-saa")) (430 subj-head 0.000000 1 5 (424 bare-np 0.000000 1 2 (423 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (429 head-comp 0.000000 2 5 (426 other-lex 0.000000 2 3 (425 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (428 head-spec 0.000000 3 5 (427 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho-saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_even+if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +16@1@-1@-1@-1@-1@-1@-1@-1@-1@(448 adj-head-scop 0.000000 0 6 (447 even+if-modifying-clause 0.000000 0 5 (446 adj-head-int 0.000000 0 5 (7 dzho-saa 0.000000 0 1 ("dzho-saa")) (445 comp-head 0.000000 1 5 (439 bare-np 0.000000 1 2 (438 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (444 head-subj 0.000000 2 5 (441 other-lex 0.000000 2 3 (440 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (443 head-spec 0.000000 3 5 (442 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho-saa")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_even+if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +17@0@-1@-1@-1@-1@-1@-1@-1@-1@(437 adj-head-scop 0.000000 0 6 (432 if3-modifying-clause 0.000000 0 5 (431 adj-head-int 0.000000 0 5 (7 kesu 0.000000 0 1 ("kesu")) (430 subj-head 0.000000 1 5 (424 bare-np 0.000000 1 2 (423 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (429 head-comp 0.000000 2 5 (426 other-lex 0.000000 2 3 (425 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (428 head-spec 0.000000 3 5 (427 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("kesu")) ("S" ("NP" ("N" ("N" ("opi")))) ("VP" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if3_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +17@1@-1@-1@-1@-1@-1@-1@-1@-1@(448 adj-head-scop 0.000000 0 6 (447 if3-modifying-clause 0.000000 0 5 (446 adj-head-int 0.000000 0 5 (7 kesu 0.000000 0 1 ("kesu")) (445 comp-head 0.000000 1 5 (439 bare-np 0.000000 1 2 (438 nom-lex 0.000000 1 2 (8 opi 0.000000 1 2 ("opi")))) (444 head-subj 0.000000 2 5 (441 other-lex 0.000000 2 3 (440 non-past-lex 0.000000 2 3 (9 edzhi 0.000000 2 3 ("edzhi")))) (443 head-spec 0.000000 3 5 (442 nom-lex 0.000000 3 4 (10 ira 0.000000 3 4 ("ira"))) (11 ri 0.000000 4 5 ("ri"))))))) (436 decl-head-opt-subj 0.000000 5 6 (435 subj-dir-prefix 0.000000 5 6 (434 directive-lex 0.000000 5 6 (433 non-past-lex 0.000000 5 6 (12 ba-oru 0.000000 5 6 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("kesu")) ("S" ("NP" ("N" ("N" ("opi")))) ("V" ("V" ("V" ("V" ("edzhi")))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if3_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] RSTR: h10 BODY: h11 ] [ "_opi_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_take_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: non-directive ] ARG1: x15 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ARG2: x9 ] [ "_beer_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_put+up_v_rel"<-1:-1> LBL: h20 ARG0: e2 ARG1: x21 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h20 h7 qeq h13 h10 qeq h12 h18 qeq h16 > ICONS: < e2 non-focus x21 > ]@((:ascore . 0.0) (:probability . 0.5)) +20@0@-1@-1@-1@-1@-1@-1@-1@-1@(168 adj-head-scop 0.000000 0 4 (163 directive-s-attach-modifying-clause-phrase 0.000000 0 3 (162 decl-head-opt-subj 0.000000 0 3 (161 head-comp 0.000000 0 3 (158 subj-dir-prefix 0.000000 0 1 (157 directive-lex 0.000000 0 1 (156 non-past-lex 0.000000 0 1 (5 edzhi 0.000000 0 1 ("koedzhi"))))) (160 head-spec 0.000000 1 3 (159 nom-lex 0.000000 1 2 (6 ira 0.000000 1 2 ("ira"))) (7 ri 0.000000 2 3 ("ri")))))) (167 decl-head-opt-subj 0.000000 3 4 (166 subj-dir-prefix 0.000000 3 4 (165 directive-lex 0.000000 3 4 (164 non-past-lex 0.000000 3 4 (8 ba-oru 0.000000 3 4 ("koba-oru")))))))@@("S" ("PP" ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri")))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: i5 ARG1: h6 ARG2: h7 ] [ "_take_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "_def_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_put+up_v_rel"<-1:-1> LBL: h16 ARG0: e2 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h16 h7 qeq h8 h14 qeq h12 > ICONS: < e9 non-focus x10 e2 non-focus x17 > ]@((:ascore . 0.0) (:probability . 0.5)) +20@1@-1@-1@-1@-1@-1@-1@-1@-1@(177 head-adj-scop 0.000000 0 4 (172 decl-head-opt-subj 0.000000 0 3 (171 head-comp 0.000000 0 3 (169 subj-dir-prefix 0.000000 0 1 (157 directive-lex 0.000000 0 1 (156 non-past-lex 0.000000 0 1 (5 edzhi 0.000000 0 1 ("koedzhi"))))) (170 head-spec 0.000000 1 3 (159 nom-lex 0.000000 1 2 (6 ira 0.000000 1 2 ("ira"))) (7 ri 0.000000 2 3 ("ri"))))) (176 directive-s-attach-modifying-clause-phrase 0.000000 3 4 (175 decl-head-opt-subj 0.000000 3 4 (174 subj-dir-prefix 0.000000 3 4 (173 directive-lex 0.000000 3 4 (164 non-past-lex 0.000000 3 4 (8 ba-oru 0.000000 3 4 ("koba-oru"))))))))@@("S" ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))) ("PP" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_take_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h7 ARG0: x6 ] [ "_def_q_rel"<-1:-1> LBL: h8 ARG0: x6 RSTR: h9 BODY: h10 ] [ "_if_subord_rel"<-1:-1> LBL: h11 ARG0: i12 ARG1: h13 ARG2: h14 ] [ "_put+up_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h9 qeq h7 h13 qeq h4 h14 qeq h15 > ICONS: < e2 non-focus x5 e16 non-focus x17 > ]@((:ascore . 0.0) (:probability . 0.5)) +21@0@-1@-1@-1@-1@-1@-1@-1@-1@(230 head-adj-scop 0.000000 0 4 (221 decl-head-opt-subj 0.000000 0 1 (220 subj-dir-prefix 0.000000 0 1 (219 directive-lex 0.000000 0 1 (218 non-past-lex 0.000000 0 1 (5 ba-oru 0.000000 0 1 ("koba-oru")))))) (229 directive-s-attach-modifying-clause-phrase 0.000000 1 4 (228 decl-head-opt-subj 0.000000 1 4 (227 head-comp 0.000000 1 4 (224 subj-dir-prefix 0.000000 1 2 (223 directive-lex 0.000000 1 2 (222 non-past-lex 0.000000 1 2 (6 edzhi 0.000000 1 2 ("koedzhi"))))) (226 head-spec 0.000000 2 4 (225 nom-lex 0.000000 2 3 (7 ira 0.000000 2 3 ("ira"))) (8 ri 0.000000 3 4 ("ri")))))))@@("S" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))) ("PP" ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_put+up_v_rel"<-1:-1> LBL: h4 ARG0: e2 ARG1: x5 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_if_subord_rel"<-1:-1> LBL: h6 ARG0: i7 ARG1: h8 ARG2: h9 ] [ "_take_v_rel"<-1:-1> LBL: h10 ARG0: e11 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x12 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x13 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h14 ARG0: x13 ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x13 RSTR: h16 BODY: h17 ] > HCONS: < h0 qeq h1 h8 qeq h4 h9 qeq h10 h16 qeq h14 > ICONS: < e2 non-focus x5 e11 non-focus x12 > ]@((:ascore . 0.0) (:probability . 0.5)) +21@1@-1@-1@-1@-1@-1@-1@-1@-1@(239 adj-head-scop 0.000000 0 4 (234 directive-s-attach-modifying-clause-phrase 0.000000 0 1 (233 decl-head-opt-subj 0.000000 0 1 (232 subj-dir-prefix 0.000000 0 1 (231 directive-lex 0.000000 0 1 (218 non-past-lex 0.000000 0 1 (5 ba-oru 0.000000 0 1 ("koba-oru"))))))) (238 decl-head-opt-subj 0.000000 1 4 (237 head-comp 0.000000 1 4 (235 subj-dir-prefix 0.000000 1 2 (223 directive-lex 0.000000 1 2 (222 non-past-lex 0.000000 1 2 (6 edzhi 0.000000 1 2 ("koedzhi"))))) (236 head-spec 0.000000 2 4 (225 nom-lex 0.000000 2 3 (7 ira 0.000000 2 3 ("ira"))) (8 ri 0.000000 3 4 ("ri"))))))@@("S" ("PP" ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru"))))))) ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: i5 ARG1: h6 ARG2: h7 ] [ "_put+up_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] [ "_take_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x12 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x13 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h14 ARG0: x13 ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x13 RSTR: h16 BODY: h17 ] > HCONS: < h0 qeq h1 h6 qeq h11 h7 qeq h8 h16 qeq h14 > ICONS: < e9 non-focus x10 e2 non-focus x12 > ]@((:ascore . 0.0) (:probability . 0.5)) +22@0@-1@-1@-1@-1@-1@-1@-1@-1@(271 adj-head-scop 0.000000 0 5 (266 if-modifying-clause 0.000000 0 4 (265 decl-head-opt-subj 0.000000 0 4 (264 adj-head-int 0.000000 0 4 (6 dzho 0.000000 0 1 ("dzho")) (263 head-comp 0.000000 1 4 (260 subj-dir-prefix 0.000000 1 2 (259 directive-lex 0.000000 1 2 (258 non-past-lex 0.000000 1 2 (7 edzhi 0.000000 1 2 ("koedzhi"))))) (262 head-spec 0.000000 2 4 (261 nom-lex 0.000000 2 3 (8 ira 0.000000 2 3 ("ira"))) (9 ri 0.000000 3 4 ("ri"))))))) (270 decl-head-opt-subj 0.000000 4 5 (269 subj-dir-prefix 0.000000 4 5 (268 directive-lex 0.000000 4 5 (267 non-past-lex 0.000000 4 5 (10 ba-oru 0.000000 4 5 ("koba-oru")))))))@@("S" ("PP" ("S" ("VP" ("ADV" ("dzho")) ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "_take_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "_def_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_put+up_v_rel"<-1:-1> LBL: h16 ARG0: e2 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h16 h7 qeq h8 h14 qeq h12 > ICONS: < e9 non-focus x10 e2 non-focus x17 > ]@((:ascore . 0.0) (:probability . 0.5)) +22@1@-1@-1@-1@-1@-1@-1@-1@-1@(280 adj-head-scop 0.000000 0 5 (279 if-modifying-clause 0.000000 0 4 (278 adj-head-int 0.000000 0 4 (6 dzho 0.000000 0 1 ("dzho")) (277 decl-head-opt-subj 0.000000 1 4 (276 head-comp 0.000000 1 4 (273 subj-dir-prefix 0.000000 1 2 (272 directive-lex 0.000000 1 2 (258 non-past-lex 0.000000 1 2 (7 edzhi 0.000000 1 2 ("koedzhi"))))) (275 head-spec 0.000000 2 4 (274 nom-lex 0.000000 2 3 (8 ira 0.000000 2 3 ("ira"))) (9 ri 0.000000 3 4 ("ri"))))))) (270 decl-head-opt-subj 0.000000 4 5 (269 subj-dir-prefix 0.000000 4 5 (268 directive-lex 0.000000 4 5 (267 non-past-lex 0.000000 4 5 (10 ba-oru 0.000000 4 5 ("koba-oru")))))))@@("S" ("PP" ("S" ("ADV" ("dzho")) ("S" ("VP" ("V" ("V" ("V" ("V" ("koedzhi"))))) ("NP" ("N" ("N" ("ira"))) ("D" ("ri"))))))) ("S" ("VP" ("VP" ("VP" ("VP" ("koba-oru")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] RELS: < [ "_if_subord_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h6 ARG2: h7 ] [ "_take_v_rel"<-1:-1> LBL: h8 ARG0: e9 [ e SF: prop-or-ques E.TENSE: nonpast E.ASPECT: aspect E.MOOD: directive ] ARG1: x10 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.DEFINITENESS: def PNG.PER: person PNG.NUM: number ] ] [ "_beer_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "_def_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_put+up_v_rel"<-1:-1> LBL: h16 ARG0: e2 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.DEFINITENESS: definiteness PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h6 qeq h16 h7 qeq h8 h14 qeq h12 > ICONS: < e9 non-focus x10 e2 non-focus x17 > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/clausalmods-madi/run b/tests/regression/home/gold/clausalmods-madi/run index 21b462d9a..0498bf0ba 100644 --- a/tests/regression/home/gold/clausalmods-madi/run +++ b/tests/regression/home/gold/clausalmods-madi/run @@ -1 +1 @@ -0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1539@-1@-1@19@6@17@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@27-jul-2020 14:01:42@27-jul-2020 14:01:42@-1@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1588@-1@-1@19@6@17@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 16:52:29@26-aug-2020 16:52:29@-1@ diff --git a/tests/regression/home/gold/subj-v-inv-obj-drop/parse b/tests/regression/home/gold/subj-v-inv-obj-drop/parse index a49ef3f97..4041d538a 100644 --- a/tests/regression/home/gold/subj-v-inv-obj-drop/parse +++ b/tests/regression/home/gold/subj-v-inv-obj-drop/parse @@ -1,15 +1,15 @@ -1@0@1@5@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@6@13@-1@-1@-1@-1@-1@-1@-1@543@24@-1@-1@294656@-1@-1@-1@@@ -2@0@2@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null")@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@709@42@-1@-1@146376@-1@-1@-1@@@ -3@0@3@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@10@17@-1@-1@-1@-1@-1@-1@-1@866@80@-1@-1@422280@-1@-1@-1@@@ -4@0@4@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:18>, 1, "chases", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:26>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:18>, 1, "chases", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:26>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@13@-1@-1@-1@-1@-1@-1@-1@1095@115@-1@-1@237744@-1@-1@-1@@@ -5@0@5@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null")@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@1111@125@-1@-1@93544@-1@-1@-1@@@ -6@0@6@6@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:11>, 1, "dog", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:11>, 1, "dog", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@13@20@-1@-1@-1@-1@-1@-1@-1@1171@164@-1@-1@509480@-1@-1@-1@@@ -7@0@7@4@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:13>, 1, "chase-inf", 0, "null") (3, 2, 3, <14:17>, 1, "the", 0, "null") (4, 3, 4, <18:21>, 1, "cat", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:13>, 1, "chase-inf", 0, "null") (3, 2, 3, <14:17>, 1, "the", 0, "null") (4, 3, 4, <18:21>, 1, "cat", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@7@11@-1@-1@-1@-1@-1@-1@-1@1420@197@-1@-1@206784@-1@-1@-1@@@ -8@0@8@6@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null") (5, 4, 5, <25:28>, 1, "the", 0, "null") (6, 5, 6, <29:32>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null") (5, 4, 5, <25:28>, 1, "the", 0, "null") (6, 5, 6, <29:32>, 1, "cat", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@13@20@-1@-1@-1@-1@-1@-1@-1@1482@236@-1@-1@369332@-1@-1@-1@@@ -9@0@9@5@(1, 0, 1, <0:6>, 1, "Chases", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:6>, 1, "Chases", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@1518@257@-1@-1@192980@-1@-1@-1@@@ -10@0@10@5@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:21>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:21>, 1, "cat", 0, "null")@0@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@7@13@-1@-1@-1@-1@-1@-1@-1@1566@287@-1@-1@256808@-1@-1@-1@@@ -11@0@11@4@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null")@4@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@12@-1@-1@-1@-1@-1@-1@-1@1601@309@-1@-1@199316@-1@-1@-1@@@ -12@0@12@4@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null")@4@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@9@16@-1@-1@-1@-1@-1@-1@-1@1657@338@-1@-1@343280@-1@-1@-1@@@ -13@0@13@6@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null") (6, 5, 6, <25:28>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null") (6, 5, 6, <25:28>, 1, "cat", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@16@24@-1@-1@-1@-1@-1@-1@-1@1896@392@-1@-1@544400@-1@-1@-1@@@ -14@0@14@3@(1, 0, 1, <0:9>, 1, "Chase-inf", 0, "null") (2, 1, 2, <10:13>, 1, "the", 0, "null") (3, 2, 3, <14:17>, 1, "dog", 0, "null")@3@(1, 0, 1, <0:9>, 1, "Chase-inf", 0, "null") (2, 1, 2, <10:13>, 1, "the", 0, "null") (3, 2, 3, <14:17>, 1, "dog", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@2118@415@-1@-1@118280@-1@-1@-1@@@ -15@0@15@3@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@9@-1@-1@-1@-1@-1@-1@-1@2152@436@-1@-1@169324@-1@-1@-1@@@ +1@0@1@5@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@5@13@-1@-1@-1@-1@-1@-1@-1@543@23@-1@-1@323536@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null")@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:14>, 1, "chases", 0, "null")@1@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@709@41@-1@-1@164336@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@9@17@-1@-1@-1@-1@-1@-1@-1@866@78@-1@-1@465880@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:18>, 1, "chases", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:26>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null") (4, 3, 4, <12:18>, 1, "chases", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:26>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@13@-1@-1@-1@-1@-1@-1@-1@1095@113@-1@-1@274864@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null")@3@(1, 0, 1, <0:3>, 1, "The", 0, "null") (2, 1, 2, <4:7>, 1, "dog", 0, "null") (3, 2, 3, <8:11>, 1, "dos", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@1111@123@-1@-1@105664@-1@-1@-1@@@ +6@0@6@6@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:11>, 1, "dog", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:11>, 1, "dog", 0, "null") (4, 3, 4, <12:21>, 1, "chase-inf", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@12@20@-1@-1@-1@-1@-1@-1@-1@1171@161@-1@-1@565840@-1@-1@-1@@@ +7@0@7@4@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:13>, 1, "chase-inf", 0, "null") (3, 2, 3, <14:17>, 1, "the", 0, "null") (4, 3, 4, <18:21>, 1, "cat", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Dos", 0, "null") (2, 1, 2, <4:13>, 1, "chase-inf", 0, "null") (3, 2, 3, <14:17>, 1, "the", 0, "null") (4, 3, 4, <18:21>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@11@-1@-1@-1@-1@-1@-1@-1@1420@194@-1@-1@238668@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null") (5, 4, 5, <25:28>, 1, "the", 0, "null") (6, 5, 6, <29:32>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null") (5, 4, 5, <25:28>, 1, "the", 0, "null") (6, 5, 6, <29:32>, 1, "cat", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@20@-1@-1@-1@-1@-1@-1@-1@1482@232@-1@-1@412572@-1@-1@-1@@@ +9@0@9@5@(1, 0, 1, <0:6>, 1, "Chases", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:6>, 1, "Chases", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@1518@253@-1@-1@224820@-1@-1@-1@@@ +10@0@10@5@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:21>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:21>, 1, "cat", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@7@13@-1@-1@-1@-1@-1@-1@-1@1566@283@-1@-1@301328@-1@-1@-1@@@ +11@0@11@4@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null")@4@(1, 0, 1, <0:6>, 1, "Do-inf", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "dog", 0, "null") (4, 3, 4, <15:24>, 1, "chase-inf", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@12@-1@-1@-1@-1@-1@-1@-1@1601@305@-1@-1@228636@-1@-1@-1@@@ +12@0@12@4@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null")@4@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@13@-1@-1@-1@-1@-1@-1@-1@1649@328@-1@-1@229784@-1@-1@-1@@@ +13@0@13@6@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null") (6, 5, 6, <25:28>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:10>, 1, "dog", 0, "null") (4, 3, 4, <11:20>, 1, "chase-inf", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null") (6, 5, 6, <25:28>, 1, "cat", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@10@19@-1@-1@-1@-1@-1@-1@-1@1711@363@-1@-1@356880@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:9>, 1, "Chase-inf", 0, "null") (2, 1, 2, <10:13>, 1, "the", 0, "null") (3, 2, 3, <14:17>, 1, "dog", 0, "null")@3@(1, 0, 1, <0:9>, 1, "Chase-inf", 0, "null") (2, 1, 2, <10:13>, 1, "the", 0, "null") (3, 2, 3, <14:17>, 1, "dog", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@1729@376@-1@-1@136684@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Chase", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "dog", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@9@-1@-1@-1@-1@-1@-1@-1@1763@397@-1@-1@197092@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/subj-v-inv-obj-drop/result b/tests/regression/home/gold/subj-v-inv-obj-drop/result index e470d59d7..edca10fc4 100644 --- a/tests/regression/home/gold/subj-v-inv-obj-drop/result +++ b/tests/regression/home/gold/subj-v-inv-obj-drop/result @@ -1,6 +1,4 @@ -1@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 subj-head 0.000000 0 5 (65 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("The")) (64 singular-lex 0.000000 1 2 (7 dog 0.000000 1 2 ("dog")))) (69 head-comp 0.000000 2 5 (66 3sg-suffix 0.000000 2 3 (8 chase 0.000000 2 3 ("chases"))) (68 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (67 singular-lex 0.000000 4 5 (10 cat 0.000000 4 5 ("cat"))))))@@("S" ("NP" ("D" ("The")) ("N" ("N" ("dog")))) ("VP" ("V" ("V" ("chases"))) ("NP" ("D" ("the")) ("N" ("N" ("cat"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(69 subj-head 0.000000 0 5 (64 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("The")) (63 singular-lex 0.000000 1 2 (7 dog 0.000000 1 2 ("dog")))) (68 head-comp 0.000000 2 5 (65 3sg-suffix 0.000000 2 3 (8 chase 0.000000 2 3 ("chases"))) (67 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (66 singular-lex 0.000000 4 5 (10 cat 0.000000 4 5 ("cat"))))))@@("S" ("NP" ("D" ("The")) ("N" ("N" ("dog")))) ("VP" ("V" ("V" ("chases"))) ("NP" ("D" ("the")) ("N" ("N" ("cat"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) 2@0@-1@-1@-1@-1@-1@-1@-1@-1@(41 subj-head 0.000000 0 3 (38 head-spec 0.000000 0 2 (4 the 0.000000 0 1 ("The")) (37 singular-lex 0.000000 1 2 (5 dog 0.000000 1 2 ("dog")))) (40 basic-head-opt-comp 0.000000 2 3 (39 3sg-suffix 0.000000 2 3 (6 chase 0.000000 2 3 ("chases")))))@@("S" ("NP" ("D" ("The")) ("N" ("N" ("dog")))) ("VP" ("V" ("V" ("chases")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < e2 non-focus x8 > ]@((:ascore . 0.0) (:probability . 1.0)) -3@0@-1@-1@-1@-1@-1@-1@-1@-1@(88 subj-head 0.000000 0 6 (81 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("The")) (80 singular-lex 0.000000 1 2 (8 dog 0.000000 1 2 ("dog")))) (87 head-comp 0.000000 2 6 (82 3sg-suffix 0.000000 2 3 (9 do 0.000000 2 3 ("dos"))) (86 head-comp 0.000000 3 6 (83 inf-suffix 0.000000 3 4 (10 chase 0.000000 3 4 ("chase-inf"))) (85 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (84 singular-lex 0.000000 5 6 (12 cat 0.000000 5 6 ("cat")))))))@@("S" ("NP" ("D" ("The")) ("N" ("N" ("dog")))) ("VP" ("V" ("V" ("dos"))) ("VP" ("V" ("V" ("chase-inf"))) ("NP" ("D" ("the")) ("N" ("N" ("cat")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -6@0@-1@-1@-1@-1@-1@-1@-1@-1@(96 int 0.000000 0 6 (95 head-comp 0.000000 0 6 (90 head-comp 0.000000 0 3 (87 inv-lr 0.000000 0 1 (86 3sg-suffix 0.000000 0 1 (7 do 0.000000 0 1 ("Dos")))) (89 head-spec 0.000000 1 3 (8 the 0.000000 1 2 ("the")) (88 singular-lex 0.000000 2 3 (9 dog 0.000000 2 3 ("dog"))))) (94 head-comp 0.000000 3 6 (91 inf-suffix 0.000000 3 4 (10 chase 0.000000 3 4 ("chase-inf"))) (93 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (92 singular-lex 0.000000 5 6 (12 cat 0.000000 5 6 ("cat")))))))@@("S" ("S" ("V" ("V-M" ("V" ("V" ("Dos")))) ("NP" ("D" ("the")) ("N" ("N" ("dog"))))) ("VP" ("V" ("V" ("chase-inf"))) ("NP" ("D" ("the")) ("N" ("N" ("cat")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) -12@0@-1@-1@-1@-1@-1@-1@-1@-1@(69 int 0.000000 0 4 (68 head-comp 0.000000 0 4 (65 head-comp 0.000000 0 3 (62 inv-lr 0.000000 0 1 (5 do 0.000000 0 1 ("Do"))) (64 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (63 singular-lex 0.000000 2 3 (7 dog 0.000000 2 3 ("dog"))))) (67 basic-head-opt-comp 0.000000 3 4 (66 inf-suffix 0.000000 3 4 (8 chase 0.000000 3 4 ("chase-inf"))))))@@("S" ("S" ("V" ("V-M" ("V" ("Do"))) ("NP" ("D" ("the")) ("N" ("N" ("dog"))))) ("VP" ("V" ("V" ("chase-inf"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < e2 non-focus x8 > ]@((:ascore . 0.0) (:probability . 1.0)) -13@0@-1@-1@-1@-1@-1@-1@-1@-1@(102 int 0.000000 0 6 (101 head-comp 0.000000 0 6 (96 head-comp 0.000000 0 3 (93 inv-lr 0.000000 0 1 (7 do 0.000000 0 1 ("Do"))) (95 head-spec 0.000000 1 3 (8 the 0.000000 1 2 ("the")) (94 singular-lex 0.000000 2 3 (9 dog 0.000000 2 3 ("dog"))))) (100 head-comp 0.000000 3 6 (97 inf-suffix 0.000000 3 4 (10 chase 0.000000 3 4 ("chase-inf"))) (99 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (98 singular-lex 0.000000 5 6 (12 cat 0.000000 5 6 ("cat")))))))@@("S" ("S" ("V" ("V-M" ("V" ("Do"))) ("NP" ("D" ("the")) ("N" ("N" ("dog"))))) ("VP" ("V" ("V" ("chase-inf"))) ("NP" ("D" ("the")) ("N" ("N" ("cat")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(87 subj-head 0.000000 0 6 (80 head-spec 0.000000 0 2 (7 the 0.000000 0 1 ("The")) (79 singular-lex 0.000000 1 2 (8 dog 0.000000 1 2 ("dog")))) (86 head-comp 0.000000 2 6 (81 3sg-suffix 0.000000 2 3 (9 do 0.000000 2 3 ("dos"))) (85 head-comp 0.000000 3 6 (82 inf-suffix 0.000000 3 4 (10 chase 0.000000 3 4 ("chase-inf"))) (84 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (83 singular-lex 0.000000 5 6 (12 cat 0.000000 5 6 ("cat")))))))@@("S" ("NP" ("D" ("The")) ("N" ("N" ("dog")))) ("VP" ("V" ("V" ("dos"))) ("VP" ("V" ("V" ("chase-inf"))) ("NP" ("D" ("the")) ("N" ("N" ("cat")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(95 int 0.000000 0 6 (94 head-comp 0.000000 0 6 (89 head-comp 0.000000 0 3 (86 inv-lr 0.000000 0 1 (85 3sg-suffix 0.000000 0 1 (7 do 0.000000 0 1 ("Dos")))) (88 head-spec 0.000000 1 3 (8 the 0.000000 1 2 ("the")) (87 singular-lex 0.000000 2 3 (9 dog 0.000000 2 3 ("dog"))))) (93 head-comp 0.000000 3 6 (90 inf-suffix 0.000000 3 4 (10 chase 0.000000 3 4 ("chase-inf"))) (92 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (91 singular-lex 0.000000 5 6 (12 cat 0.000000 5 6 ("cat")))))))@@("S" ("S" ("V" ("V-M" ("V" ("V" ("Dos")))) ("NP" ("D" ("the")) ("N" ("N" ("dog"))))) ("VP" ("V" ("V" ("chase-inf"))) ("NP" ("D" ("the")) ("N" ("N" ("cat")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/subj-v-inv-obj-drop/run b/tests/regression/home/gold/subj-v-inv-obj-drop/run index f87c02508..a0e822152 100644 --- a/tests/regression/home/gold/subj-v-inv-obj-drop/run +++ b/tests/regression/home/gold/subj-v-inv-obj-drop/run @@ -1 +1 @@ -0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1499@-1@-1@7@7@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@27-jul-2020 14:33:30@27-jul-2020 14:33:30@-1@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1549@-1@-1@7@7@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@21-aug-2020 12:31:17@21-aug-2020 12:31:17@-1@ diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/decision b/tests/regression/home/gold/wh-dev-ckt-mini/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/edge b/tests/regression/home/gold/wh-dev-ckt-mini/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/item b/tests/regression/home/gold/wh-dev-ckt-mini/item new file mode 100644 index 000000000..9ccf4c4d1 --- /dev/null +++ b/tests/regression/home/gold/wh-dev-ckt-mini/item @@ -0,0 +1,8 @@ +1@@@@1@@req-ərkənəm igirkej gənin ekək@@@@1@4@@@ +2@@@@1@@nǐ zà=gànmá@@@@1@2@@@ +3@@@@1@@ke trò@@@@1@2@@@ +4@@@@1@@vasia-m@@@@1@1@@@ +5@@@@1@@ʔeʔenət-čxw@@@@1@1@@@ +6@@@@1@@čem@@@@1@1@@@ +7@@@@1@@ine-n-req@@@@1@1@@@ +8@@@@1@@zà=req-iγət@@@@1@1@@@ diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/item-set b/tests/regression/home/gold/wh-dev-ckt-mini/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/parse b/tests/regression/home/gold/wh-dev-ckt-mini/parse new file mode 100644 index 000000000..b219cbf19 --- /dev/null +++ b/tests/regression/home/gold/wh-dev-ckt-mini/parse @@ -0,0 +1,8 @@ +1@0@1@4@(1, 0, 1, <0:11>, 1, "req-ərkənəm", 0, "null") (2, 1, 2, <12:19>, 1, "igirkej", 0, "null") (3, 2, 3, <20:25>, 1, "gənin", 0, "null") (4, 3, 4, <26:30>, 1, "ekək", 0, "null")@4@(1, 0, 1, <0:11>, 1, "req-ərkənəm", 0, "null") (2, 1, 2, <12:19>, 1, "igirkej", 0, "null") (3, 2, 3, <20:25>, 1, "gənin", 0, "null") (4, 3, 4, <26:30>, 1, "ekək", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@36@14@-1@-1@-1@-1@-1@-1@-1@941@55@-1@-1@788360@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:2>, 1, "nǐ", 0, "null") (2, 1, 2, <3:11>, 1, "zà=gànmá", 0, "null")@2@(1, 0, 1, <0:2>, 1, "nǐ", 0, "null") (2, 1, 2, <3:11>, 1, "zà=gànmá", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1108@62@-1@-1@1328@-1@-1@-1@@post-reduction lexical gap@ +3@0@3@2@(1, 0, 1, <0:2>, 1, "ke", 0, "null") (2, 1, 2, <3:6>, 1, "trò", 0, "null")@2@(1, 0, 1, <0:2>, 1, "ke", 0, "null") (2, 1, 2, <3:6>, 1, "trò", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1108@62@-1@-1@1256@-1@-1@-1@@post-reduction lexical gap@ +4@0@4@1@(1, 0, 1, <0:7>, 1, "vasia-m", 0, "null")@1@(1, 0, 1, <0:7>, 1, "vasia-m", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1108@62@-1@-1@740@-1@-1@-1@@post-reduction lexical gap@ +5@0@5@1@(1, 0, 1, <0:11>, 1, "ʔeʔenət-čxw", 0, "null")@1@(1, 0, 1, <0:11>, 1, "ʔeʔenət-čxw", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1108@62@-1@-1@824@-1@-1@-1@@post-reduction lexical gap@ +6@0@6@1@(1, 0, 1, <0:3>, 1, "čem", 0, "null")@1@(1, 0, 1, <0:3>, 1, "čem", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1108@62@-1@-1@732@-1@-1@-1@@post-reduction lexical gap@ +7@0@7@1@(1, 0, 1, <0:9>, 1, "ine-n-req", 0, "null")@1@(1, 0, 1, <0:9>, 1, "ine-n-req", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@3@-1@-1@-1@-1@-1@-1@-1@1113@67@-1@-1@114936@-1@-1@-1@@@ +8@0@8@1@(1, 0, 1, <0:11>, 1, "zà=req-iγət", 0, "null")@1@(1, 0, 1, <0:11>, 1, "zà=req-iγət", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1197@71@-1@-1@992@-1@-1@-1@@post-reduction lexical gap@ diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/preference b/tests/regression/home/gold/wh-dev-ckt-mini/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/relations b/tests/regression/home/gold/wh-dev-ckt-mini/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh-dev-ckt-mini/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/result b/tests/regression/home/gold/wh-dev-ckt-mini/result new file mode 100644 index 000000000..e0ec1a1cf --- /dev/null +++ b/tests/regression/home/gold/wh-dev-ckt-mini/result @@ -0,0 +1,2 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(122 head-subj 0.000000 0 4 (118 headv-adj 0.000000 0 2 (117 aspect-suf-suffix 0.000000 0 1 (116 zero-lex 0.000000 0 1 (5 req 0.000000 0 1 ("req-ərkənəm")))) (6 igirkej 0.000000 1 2 ("igirkej"))) (121 head-spec 0.000000 2 4 (120 poss-unary-pron-1 0.000000 2 3 (119 bare-np 0.000000 2 3 (7 your-noun 0.000000 2 3 ("gənin")))) (8 ekək 0.000000 3 4 ("ekək"))))@@("S" ("VP" ("VP" ("VP" ("VP" ("req-ərkənəm")))) ("ADV" ("igirkej"))) ("NP" ("D" ("NP" ("N" ("gənin")))) ("N" ("ekək"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: progressive E.MOOD: mood ] RELS: < [ "_do_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: uniq-id PNG.PER: person PNG.NUM: sg PNG.GEND: gender ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_right.now_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "poss_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x17 [ x SPECI: + COG-ST: activ-or-more PNG.PER: 2nd PNG.NUM: sg PNG.GEND: gender ] ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x3 RSTR: h19 BODY: h20 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x17 RSTR: h22 BODY: h23 ] [ "pron_rel"<-1:-1> LBL: h24 ARG0: x17 ] [ "_son_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 h19 qeq h15 h22 qeq h24 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(21 decl-head-opt-subj 0.000000 0 1 (20 basic-head-opt-comp 0.000000 0 1 (19 ine-prefix 0.000000 0 1 (18 cs-prefix 0.000000 0 1 (2 req 0.000000 0 1 ("ine-n-req"))))))@@("S" ("VP" ("V" ("V" ("VP" ("ine-n-req"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_do_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: sg PNG.GEND: gender ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "applicative"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg PNG.GEND: gender ] ] > HCONS: < h0 qeq h1 h6 qeq h8 > ICONS: < e2 non-focus x3 e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] non-focus x11 > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/run b/tests/regression/home/gold/wh-dev-ckt-mini/run new file mode 100644 index 000000000..a6a531e0f --- /dev/null +++ b/tests/regression/home/gold/wh-dev-ckt-mini/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1574@-1@-1@14@7@15@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@29-jun-2020 18:35:39@29-jun-2020 18:35:39@-1@ diff --git a/tests/regression/home/gold/wh-dev-ckt-mini/tree b/tests/regression/home/gold/wh-dev-ckt-mini/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/decision b/tests/regression/home/gold/wh-dev-mini-japanese/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/edge b/tests/regression/home/gold/wh-dev-mini-japanese/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/item b/tests/regression/home/gold/wh-dev-mini-japanese/item new file mode 100644 index 000000000..9b8254939 --- /dev/null +++ b/tests/regression/home/gold/wh-dev-mini-japanese/item @@ -0,0 +1,10 @@ +1@@@@1@@Kim-wa nani-o yonda no@@@@1@4@@@ +2@@@@1@@Kim-wa nani-o yonda@@@@1@3@@@ +3@@@@1@@Sandy-wa Kim-ga nani-o yonda ka sitteiru@@@@1@6@@@ +4@@@@1@@dare-ga kuru@@@@1@2@@@ +5@@@@1@@dare-ga kuru no@@@@1@3@@@ +6@@@@1@@dare-ga kuru ka@@@@0@3@@@ +7@@@@1@@Sandy-wa Kim-ga nani-o yonda no sitteiru@@@@1@6@@@ +8@@@@1@@Sandy-wa Kim-ga nani-o yonda sitteiru@@@@1@5@@@ +9@@@@1@@no dare-ga kuru@@@@0@3@@@ +10@@@@1@@ka dare-ga kuru@@@@0@3@@@ diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/item-set b/tests/regression/home/gold/wh-dev-mini-japanese/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/parse b/tests/regression/home/gold/wh-dev-mini-japanese/parse new file mode 100644 index 000000000..b8e615069 --- /dev/null +++ b/tests/regression/home/gold/wh-dev-mini-japanese/parse @@ -0,0 +1,10 @@ +1@0@1@4@(1, 0, 1, <0:6>, 1, "Kim-wa", 0, "null") (2, 1, 2, <7:13>, 1, "nani-o", 0, "null") (3, 2, 3, <14:19>, 1, "yonda", 0, "null") (4, 3, 4, <20:22>, 1, "no", 0, "null")@4@(1, 0, 1, <0:6>, 1, "Kim-wa", 0, "null") (2, 1, 2, <7:13>, 1, "nani-o", 0, "null") (3, 2, 3, <14:19>, 1, "yonda", 0, "null") (4, 3, 4, <20:22>, 1, "no", 0, "null")@1@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@22@11@-1@-1@-1@-1@-1@-1@-1@481@37@-1@-1@547280@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:6>, 1, "Kim-wa", 0, "null") (2, 1, 2, <7:13>, 1, "nani-o", 0, "null") (3, 2, 3, <14:19>, 1, "yonda", 0, "null")@3@(1, 0, 1, <0:6>, 1, "Kim-wa", 0, "null") (2, 1, 2, <7:13>, 1, "nani-o", 0, "null") (3, 2, 3, <14:19>, 1, "yonda", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@11@8@-1@-1@-1@-1@-1@-1@-1@663@66@-1@-1@316024@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:8>, 1, "Sandy-wa", 0, "null") (2, 1, 2, <9:15>, 1, "Kim-ga", 0, "null") (3, 2, 3, <16:22>, 1, "nani-o", 0, "null") (4, 3, 4, <23:28>, 1, "yonda", 0, "null") (5, 4, 5, <29:31>, 1, "ka", 0, "null") (6, 5, 6, <32:40>, 1, "sitteiru", 0, "null")@6@(1, 0, 1, <0:8>, 1, "Sandy-wa", 0, "null") (2, 1, 2, <9:15>, 1, "Kim-ga", 0, "null") (3, 2, 3, <16:22>, 1, "nani-o", 0, "null") (4, 3, 4, <23:28>, 1, "yonda", 0, "null") (5, 4, 5, <29:31>, 1, "ka", 0, "null") (6, 5, 6, <32:40>, 1, "sitteiru", 0, "null")@2@-1@15@15@-1@15@-1@-1@-1@-1@-1@-1@46@26@-1@-1@-1@-1@-1@-1@-1@877@150@-1@-1@1344336@-1@-1@-1@@@ +4@0@4@2@(1, 0, 1, <0:7>, 1, "dare-ga", 0, "null") (2, 1, 2, <8:12>, 1, "kuru", 0, "null")@2@(1, 0, 1, <0:7>, 1, "dare-ga", 0, "null") (2, 1, 2, <8:12>, 1, "kuru", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@5@-1@-1@-1@-1@-1@-1@-1@1331@184@-1@-1@154328@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:7>, 1, "dare-ga", 0, "null") (2, 1, 2, <8:12>, 1, "kuru", 0, "null") (3, 2, 3, <13:15>, 1, "no", 0, "null")@3@(1, 0, 1, <0:7>, 1, "dare-ga", 0, "null") (2, 1, 2, <8:12>, 1, "kuru", 0, "null") (3, 2, 3, <13:15>, 1, "no", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@8@-1@-1@-1@-1@-1@-1@-1@1442@211@-1@-1@313424@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:7>, 1, "dare-ga", 0, "null") (2, 1, 2, <8:12>, 1, "kuru", 0, "null") (3, 2, 3, <13:15>, 1, "ka", 0, "null")@3@(1, 0, 1, <0:7>, 1, "dare-ga", 0, "null") (2, 1, 2, <8:12>, 1, "kuru", 0, "null") (3, 2, 3, <13:15>, 1, "ka", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@8@-1@-1@-1@-1@-1@-1@-1@1602@239@-1@-1@267524@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:8>, 1, "Sandy-wa", 0, "null") (2, 1, 2, <9:15>, 1, "Kim-ga", 0, "null") (3, 2, 3, <16:22>, 1, "nani-o", 0, "null") (4, 3, 4, <23:28>, 1, "yonda", 0, "null") (5, 4, 5, <29:31>, 1, "no", 0, "null") (6, 5, 6, <32:40>, 1, "sitteiru", 0, "null")@6@(1, 0, 1, <0:8>, 1, "Sandy-wa", 0, "null") (2, 1, 2, <9:15>, 1, "Kim-ga", 0, "null") (3, 2, 3, <16:22>, 1, "nani-o", 0, "null") (4, 3, 4, <23:28>, 1, "yonda", 0, "null") (5, 4, 5, <29:31>, 1, "no", 0, "null") (6, 5, 6, <32:40>, 1, "sitteiru", 0, "null")@2@-1@14@14@-1@14@-1@-1@-1@-1@-1@-1@46@26@-1@-1@-1@-1@-1@-1@-1@1714@317@-1@-1@1344136@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:8>, 1, "Sandy-wa", 0, "null") (2, 1, 2, <9:15>, 1, "Kim-ga", 0, "null") (3, 2, 3, <16:22>, 1, "nani-o", 0, "null") (4, 3, 4, <23:28>, 1, "yonda", 0, "null") (5, 4, 5, <29:37>, 1, "sitteiru", 0, "null")@5@(1, 0, 1, <0:8>, 1, "Sandy-wa", 0, "null") (2, 1, 2, <9:15>, 1, "Kim-ga", 0, "null") (3, 2, 3, <16:22>, 1, "nani-o", 0, "null") (4, 3, 4, <23:28>, 1, "yonda", 0, "null") (5, 4, 5, <29:37>, 1, "sitteiru", 0, "null")@2@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@37@21@-1@-1@-1@-1@-1@-1@-1@2241@402@-1@-1@1090000@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:2>, 1, "no", 0, "null") (2, 1, 2, <3:10>, 1, "dare-ga", 0, "null") (3, 2, 3, <11:15>, 1, "kuru", 0, "null")@3@(1, 0, 1, <0:2>, 1, "no", 0, "null") (2, 1, 2, <3:10>, 1, "dare-ga", 0, "null") (3, 2, 3, <11:15>, 1, "kuru", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@2601@437@-1@-1@161788@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:2>, 1, "ka", 0, "null") (2, 1, 2, <3:10>, 1, "dare-ga", 0, "null") (3, 2, 3, <11:15>, 1, "kuru", 0, "null")@3@(1, 0, 1, <0:2>, 1, "ka", 0, "null") (2, 1, 2, <3:10>, 1, "dare-ga", 0, "null") (3, 2, 3, <11:15>, 1, "kuru", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@2619@452@-1@-1@161748@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/preference b/tests/regression/home/gold/wh-dev-mini-japanese/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/relations b/tests/regression/home/gold/wh-dev-mini-japanese/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh-dev-mini-japanese/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/result b/tests/regression/home/gold/wh-dev-mini-japanese/result new file mode 100644 index 000000000..280b1b45e --- /dev/null +++ b/tests/regression/home/gold/wh-dev-mini-japanese/result @@ -0,0 +1,10 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 comp-head 0.000000 0 4 (77 in-situ-ques 0.000000 0 3 (76 subj-head 0.000000 0 3 (73 bare-np 0.000000 0 1 (72 nom-suffix1 0.000000 0 1 (5 Kim 0.000000 0 1 ("Kim-wa")))) (75 comp-head 0.000000 1 3 (74 acc-suffix 0.000000 1 2 (6 nani 0.000000 1 2 ("nani-o"))) (7 yonda 0.000000 2 3 ("yonda"))))) (8 no 0.000000 3 4 ("no")))@@("CP" ("S" ("S" ("NP" ("N" ("N" ("Kim-wa")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda"))))) ("C" ("no")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Mary_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_read_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(53 in-situ-ques 0.000000 0 3 (52 subj-head 0.000000 0 3 (49 bare-np 0.000000 0 1 (48 nom-suffix1 0.000000 0 1 (4 Kim 0.000000 0 1 ("Kim-wa")))) (51 comp-head 0.000000 1 3 (50 acc-suffix 0.000000 1 2 (5 nani 0.000000 1 2 ("nani-o"))) (6 yonda 0.000000 2 3 ("yonda")))))@@("S" ("S" ("NP" ("N" ("N" ("Kim-wa")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Mary_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_read_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(141 subj-head 0.000000 0 6 (132 bare-np 0.000000 0 1 (131 nom-suffix1 0.000000 0 1 (7 Sandy 0.000000 0 1 ("Sandy-wa")))) (140 comp-head 0.000000 1 6 (139 comp-head 0.000000 1 5 (138 in-situ-ques 0.000000 1 4 (137 subj-head 0.000000 1 4 (134 bare-np 0.000000 1 2 (133 nom-suffix2 0.000000 1 2 (8 Kim 0.000000 1 2 ("Kim-ga")))) (136 comp-head 0.000000 2 4 (135 acc-suffix 0.000000 2 3 (9 nani 0.000000 2 3 ("nani-o"))) (10 yonda 0.000000 3 4 ("yonda"))))) (11 ka 0.000000 4 5 ("ka"))) (12 sitteiru 0.000000 5 6 ("sitteiru"))))@@("S" ("NP" ("N" ("N" ("Sandy-wa")))) ("VP" ("CP" ("S" ("S" ("NP" ("N" ("N" ("Kim-ga")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda"))))) ("C" ("ka"))) ("V" ("sitteiru"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Sandy_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_Mary_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_read_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(152 in-situ-ques 0.000000 0 6 (151 subj-head 0.000000 0 6 (143 bare-np 0.000000 0 1 (142 nom-suffix1 0.000000 0 1 (7 Sandy 0.000000 0 1 ("Sandy-wa")))) (150 comp-head 0.000000 1 6 (149 comp-head 0.000000 1 5 (148 subj-head 0.000000 1 4 (145 bare-np 0.000000 1 2 (144 nom-suffix2 0.000000 1 2 (8 Kim 0.000000 1 2 ("Kim-ga")))) (147 comp-head 0.000000 2 4 (146 acc-suffix 0.000000 2 3 (9 nani 0.000000 2 3 ("nani-o"))) (10 yonda 0.000000 3 4 ("yonda")))) (11 ka 0.000000 4 5 ("ka"))) (12 sitteiru 0.000000 5 6 ("sitteiru")))))@@("S" ("S" ("NP" ("N" ("N" ("Sandy-wa")))) ("VP" ("CP" ("S" ("NP" ("N" ("N" ("Kim-ga")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda")))) ("C" ("ka"))) ("V" ("sitteiru")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Sandy_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_Mary_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_read_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 in-situ-ques 0.000000 0 2 (30 subj-head 0.000000 0 2 (29 nom-suffix2 0.000000 0 1 (3 dare 0.000000 0 1 ("dare-ga"))) (4 kuru 0.000000 1 2 ("kuru"))))@@("S" ("S" ("NP" ("NP" ("dare-ga"))) ("VP" ("kuru"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_come_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(53 comp-head 0.000000 0 3 (52 in-situ-ques 0.000000 0 2 (51 subj-head 0.000000 0 2 (50 nom-suffix2 0.000000 0 1 (4 dare 0.000000 0 1 ("dare-ga"))) (5 kuru 0.000000 1 2 ("kuru")))) (6 no 0.000000 2 3 ("no")))@@("CP" ("S" ("S" ("NP" ("NP" ("dare-ga"))) ("VP" ("kuru")))) ("C" ("no")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_come_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(141 subj-head 0.000000 0 6 (132 bare-np 0.000000 0 1 (131 nom-suffix1 0.000000 0 1 (7 Sandy 0.000000 0 1 ("Sandy-wa")))) (140 comp-head 0.000000 1 6 (139 comp-head 0.000000 1 5 (138 in-situ-ques 0.000000 1 4 (137 subj-head 0.000000 1 4 (134 bare-np 0.000000 1 2 (133 nom-suffix2 0.000000 1 2 (8 Kim 0.000000 1 2 ("Kim-ga")))) (136 comp-head 0.000000 2 4 (135 acc-suffix 0.000000 2 3 (9 nani 0.000000 2 3 ("nani-o"))) (10 yonda 0.000000 3 4 ("yonda"))))) (11 no 0.000000 4 5 ("no"))) (12 sitteiru 0.000000 5 6 ("sitteiru"))))@@("S" ("NP" ("N" ("N" ("Sandy-wa")))) ("VP" ("CP" ("S" ("S" ("NP" ("N" ("N" ("Kim-ga")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda"))))) ("C" ("no"))) ("V" ("sitteiru"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Sandy_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_Mary_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_read_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(152 in-situ-ques 0.000000 0 6 (151 subj-head 0.000000 0 6 (143 bare-np 0.000000 0 1 (142 nom-suffix1 0.000000 0 1 (7 Sandy 0.000000 0 1 ("Sandy-wa")))) (150 comp-head 0.000000 1 6 (149 comp-head 0.000000 1 5 (148 subj-head 0.000000 1 4 (145 bare-np 0.000000 1 2 (144 nom-suffix2 0.000000 1 2 (8 Kim 0.000000 1 2 ("Kim-ga")))) (147 comp-head 0.000000 2 4 (146 acc-suffix 0.000000 2 3 (9 nani 0.000000 2 3 ("nani-o"))) (10 yonda 0.000000 3 4 ("yonda")))) (11 no 0.000000 4 5 ("no"))) (12 sitteiru 0.000000 5 6 ("sitteiru")))))@@("S" ("S" ("NP" ("N" ("N" ("Sandy-wa")))) ("VP" ("CP" ("S" ("NP" ("N" ("N" ("Kim-ga")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda")))) ("C" ("no"))) ("V" ("sitteiru")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Sandy_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_Mary_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_read_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(116 in-situ-ques 0.000000 0 5 (115 subj-head 0.000000 0 5 (108 bare-np 0.000000 0 1 (107 nom-suffix1 0.000000 0 1 (6 Sandy 0.000000 0 1 ("Sandy-wa")))) (114 comp-head 0.000000 1 5 (113 subj-head 0.000000 1 4 (110 bare-np 0.000000 1 2 (109 nom-suffix2 0.000000 1 2 (7 Kim 0.000000 1 2 ("Kim-ga")))) (112 comp-head 0.000000 2 4 (111 acc-suffix 0.000000 2 3 (8 nani 0.000000 2 3 ("nani-o"))) (9 yonda 0.000000 3 4 ("yonda")))) (10 sitteiru 0.000000 4 5 ("sitteiru")))))@@("S" ("S" ("NP" ("N" ("N" ("Sandy-wa")))) ("VP" ("S" ("NP" ("N" ("N" ("Kim-ga")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda")))) ("V" ("sitteiru")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Sandy_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_Mary_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_read_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(126 subj-head 0.000000 0 5 (118 bare-np 0.000000 0 1 (117 nom-suffix1 0.000000 0 1 (6 Sandy 0.000000 0 1 ("Sandy-wa")))) (125 comp-head 0.000000 1 5 (124 in-situ-ques 0.000000 1 4 (123 subj-head 0.000000 1 4 (120 bare-np 0.000000 1 2 (119 nom-suffix2 0.000000 1 2 (7 Kim 0.000000 1 2 ("Kim-ga")))) (122 comp-head 0.000000 2 4 (121 acc-suffix 0.000000 2 3 (8 nani 0.000000 2 3 ("nani-o"))) (9 yonda 0.000000 3 4 ("yonda"))))) (10 sitteiru 0.000000 4 5 ("sitteiru"))))@@("S" ("NP" ("N" ("N" ("Sandy-wa")))) ("VP" ("S" ("S" ("NP" ("N" ("N" ("Kim-ga")))) ("VP" ("NP" ("NP" ("nani-o"))) ("V" ("yonda"))))) ("V" ("sitteiru"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_Sandy_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_Mary_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_read_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/run b/tests/regression/home/gold/wh-dev-mini-japanese/run new file mode 100644 index 000000000..3e8aa9cd8 --- /dev/null +++ b/tests/regression/home/gold/wh-dev-mini-japanese/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1538@-1@-1@18@3@8@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 16:02:14@26-aug-2020 16:02:14@-1@ diff --git a/tests/regression/home/gold/wh-dev-mini-japanese/tree b/tests/regression/home/gold/wh-dev-mini-japanese/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-rus/decision b/tests/regression/home/gold/wh-dev-rus/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-rus/edge b/tests/regression/home/gold/wh-dev-rus/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-rus/item b/tests/regression/home/gold/wh-dev-rus/item new file mode 100644 index 000000000..2c9584cd1 --- /dev/null +++ b/tests/regression/home/gold/wh-dev-rus/item @@ -0,0 +1,327 @@ +1@@@@1@@# Simple intransitive propositions@@@@1@4@@@ +2@@@@1@@Иван лежит@@@@1@2@@@ +3@@@@1@@Лежит Иван@@@@1@2@@@ +4@@@@1@@@@@@1@0@@@ +5@@@@1@@# Simple transitive propositions@@@@1@4@@@ +6@@@@1@@Иван читает книгу @@@@1@3@@@ +7@@@@1@@Читает книгу Иван@@@@1@3@@@ +8@@@@1@@Читает Иван книгу@@@@1@3@@@ +9@@@@1@@Книгу Иван читает@@@@1@3@@@ +10@@@@1@@Книгу читает Иван@@@@1@3@@@ +11@@@@1@@Иван книгу читает@@@@1@3@@@ +12@@@@1@@@@@@1@0@@@ +13@@@@1@@# Question about intransitive subject of matrix clause@@@@1@8@@@ +14@@@@1@@Кто идет?@@@@1@2@@@ +15@@@@1@@Кого идет?@@@@0@2@@@ +16@@@@1@@Чему лежит?@@@@0@2@@@ +17@@@@1@@Кто идешь?@@@@0@2@@@ +18@@@@1@@Кто идете?@@@@0@2@@@ +19@@@@1@@Что лежишь?@@@@0@2@@@ +20@@@@1@@Что лежит?@@@@1@2@@@ +21@@@@1@@@@@@1@0@@@ +22@@@@1@@# Question about subject of transitive matrix clause@@@@1@8@@@ +23@@@@1@@Кто видит сон?@@@@1@3@@@ +24@@@@1@@Кто сон видит?@@@@1@3@@@ +25@@@@1@@?Видит кто сон?@@@@1@3@@@ +26@@@@1@@?Видит сон кто?@@@@1@3@@@ +27@@@@1@@Сон кто видит?@@@@1@3@@@ +28@@@@1@@Сон видит кто?@@@@1@3@@@ +29@@@@1@@Кто видит Ивана?@@@@1@3@@@ +30@@@@1@@Кого видит Ивана?@@@@0@3@@@ +31@@@@1@@Кто видит женщину в книге?@@@@1@5@@@ +32@@@@1@@@@@@1@0@@@ +33@@@@1@@# Question about object of transitive matrix clause@@@@1@8@@@ +34@@@@1@@Что видит Иван?@@@@1@3@@@ +35@@@@1@@Кого видит Иван?@@@@1@3@@@ +36@@@@1@@Кто видит Иван?@@@@0@3@@@ +37@@@@1@@@@@@1@0@@@ +38@@@@1@@# Multiple questions about subject and object of transitive matrix clause@@@@1@11@@@ +39@@@@1@@Кто что видит?@@@@1@3@@@ +40@@@@1@@Кто видит что?@@@@1@3@@@ +41@@@@1@@Что видит кто?@@@@1@3@@@ +42@@@@1@@Кого что видит?@@@@1@3@@@ +43@@@@1@@Кто чему видит?@@@@0@3@@@ +44@@@@1@@Кого чему видит?@@@@0@3@@@ +45@@@@1@@@@@@1@0@@@ +46@@@@1@@# Question about adjunct of intransitive and transitive matrix clause@@@@1@10@@@ +47@@@@1@@Иван идет куда?@@@@1@3@@@ +48@@@@1@@Куда идет Иван?@@@@1@3@@@ +49@@@@1@@Иван куда идет?@@@@1@3@@@ +50@@@@1@@?Идет Иван куда?@@@@1@3@@@ +51@@@@1@@?Идет куда Иван?@@@@1@3@@@ +52@@@@1@@Иван куда идет в книге?@@@@1@5@@@ +53@@@@1@@Куда Иван идет в книге?@@@@1@5@@@ +54@@@@1@@Куда Иван в книге идет?@@@@1@5@@@ +55@@@@1@@Где Иван видел Машу?@@@@1@4@@@ +56@@@@1@@Как Иван пишет диссертацию?@@@@1@4@@@ +57@@@@1@@Иван как пишет диссертацию?@@@@1@4@@@ +58@@@@1@@?Иван пишет как диссертацию?@@@@1@4@@@ +59@@@@1@@?Иван пишет диссертацию как?@@@@1@4@@@ +60@@@@1@@@@@@1@0@@@ +61@@@@1@@# PP-adjuncts@@@@1@2@@@ +62@@@@1@@В какой город Иван приехал?@@@@1@5@@@ +63@@@@1@@В какой Иван приехал город?@@@@1@5@@@ +64@@@@1@@В Иван приехал какой город?@@@@0@5@@@ +65@@@@1@@В Иван какой приехал город?@@@@0@5@@@ +66@@@@1@@Какого Иван приехал из города?@@@@0@5@@@ +67@@@@1@@Какой город Иван приехал?@@@@0@4@@@ +68@@@@1@@Какому город Иван приехал?@@@@0@4@@@ +69@@@@1@@В какому город Иван приехал?@@@@0@5@@@ +70@@@@1@@В какому городу Иван приехал?@@@@0@5@@@ +71@@@@1@@Из какого города Иван приехал?@@@@1@5@@@ +72@@@@1@@Какого города Иван приехал?@@@@0@4@@@ +73@@@@1@@Кто и в какой город приехал?@@@@1@6@@@ +74@@@@1@@Иван видит женщину в книге.@@@@1@5@@@ +75@@@@1@@Иван видит женщину в этой книге.@@@@1@6@@@ +76@@@@1@@Иван видит женщину книге в.@@@@0@5@@@ +77@@@@1@@Иван видит женщину этой в книге.@@@@0@6@@@ +78@@@@1@@Иван видит женщину книге в этой.@@@@0@6@@@ +79@@@@1@@В какой книге Иван видит женщину?@@@@1@6@@@ +80@@@@1@@Каких в книгах Иван видит женщину?@@@@0@6@@@ +81@@@@1@@Книге в какой Иван видит женщину?@@@@0@6@@@ +82@@@@1@@Книге какой в Иван видит женщину?@@@@0@6@@@ +83@@@@1@@Иван видит женщину в какой книге?@@@@1@6@@@ +84@@@@1@@Какой человек в книге видит женщину?@@@@1@6@@@ +85@@@@1@@В какой же книге Иван видит женщину?@@@@1@7@@@ +86@@@@1@@В какого книге Иван видит женщину?@@@@0@6@@@ +87@@@@1@@В какой книги Иван видит женщину?@@@@0@6@@@ +88@@@@1@@@@@@1@0@@@ +89@@@@1@@# Multiple questions about subject and adjunct of intransitive matrix clause@@@@1@11@@@ +90@@@@1@@Кто куда идет?@@@@1@3@@@ +91@@@@1@@Кому куда идет?@@@@0@3@@@ +92@@@@1@@Куда кто идет?@@@@1@3@@@ +93@@@@1@@?Идет кто куда?@@@@1@3@@@ +94@@@@1@@?Куда идет кто?@@@@1@3@@@ +95@@@@1@@?Идет куда кто?@@@@1@3@@@ +96@@@@1@@Кто идет куда?@@@@1@3@@@ +97@@@@1@@Где когда кто что купил?@@@@0@5@@@ +98@@@@1@@Где когда Иван купил книгу?@@@@0@5@@@ +99@@@@1@@@@@@1@0@@@ +100@@@@1@@# Question about determiner in the object NP in embedded clause@@@@1@11@@@ +101@@@@1@@Сколько книг Иван читает?@@@@1@4@@@ +102@@@@1@@Сколько Иван книг читает?@@@@1@4@@@ +103@@@@1@@Сколько книгу Иван читает?@@@@0@4@@@ +104@@@@1@@Сколько Иван читает книг?@@@@1@4@@@ +105@@@@1@@Иван сколько книг читает?@@@@1@4@@@ +106@@@@1@@Иван читает сколько книг?@@@@1@4@@@ +107@@@@1@@Иван сколько читает книг?@@@@1@4@@@ +108@@@@1@@Иван читает книг сколько?@@@@1@4@@@ +109@@@@1@@@@@@1@0@@@ +110@@@@1@@Который человек приехал?@@@@1@3@@@ +111@@@@1@@Какой человек приехал?@@@@1@3@@@ +112@@@@1@@Какой приехал человек?@@@@1@3@@@ +113@@@@1@@Какого человек приехал?@@@@0@3@@@ +114@@@@1@@Какому человек приехал?@@@@0@3@@@ +115@@@@1@@Какую книгу Иван читает?@@@@1@4@@@ +116@@@@1@@Какую Иван читает книгу?@@@@1@4@@@ +117@@@@1@@Какого книгу Иван читает?@@@@0@4@@@ +118@@@@1@@Какую книгу читает Иван?@@@@1@4@@@ +119@@@@1@@Какую книга читает Иван?@@@@0@4@@@ +120@@@@1@@Какую книги читает Иван?@@@@0@4@@@ +121@@@@1@@Какие книги читает Иван?@@@@1@4@@@ +122@@@@1@@Какие книгу читает Иван?@@@@0@4@@@ +123@@@@1@@Какую сон видит Иван?@@@@0@4@@@ +124@@@@1@@Какой сон видит Иван?@@@@1@4@@@ +125@@@@1@@@@@@1@0@@@ +126@@@@1@@@@@@1@0@@@ +127@@@@1@@# Embedded proposition@@@@1@3@@@ +128@@@@1@@Иван спрашивает, что студент лежит@@@@0@5@@@ +129@@@@1@@Иван думает, что студент лежит@@@@1@5@@@ +130@@@@1@@Иван думает, студент лежит@@@@1@4@@@ +131@@@@1@@Иван спрашивает, студент читает книгу@@@@0@5@@@ +132@@@@1@@Иван думает, что студент читает книгу@@@@1@6@@@ +133@@@@1@@Думает Иван, что студент читает книгу@@@@1@6@@@ +134@@@@1@@Думает Иван, студент читает книгу что@@@@0@6@@@ +135@@@@1@@Иван думает, что читает книгу студент@@@@1@6@@@ +136@@@@1@@Иван думает, что книгу читает студент@@@@1@6@@@ +137@@@@1@@Иван что студент читает книгу думает@@@@1@6@@@ +138@@@@1@@Иван студент читает книгу думает что@@@@0@6@@@ +139@@@@1@@Иван знает, что студент лежит.@@@@1@5@@@ +140@@@@1@@Иван знает, студент лежит.@@@@1@4@@@ +141@@@@1@@@@@@1@0@@@ +142@@@@1@@@@@@1@0@@@ +143@@@@1@@# Embedded question about subject of intransitive clause@@@@1@8@@@ +144@@@@1@@Иван спрашивает, кто идет@@@@1@4@@@ +145@@@@1@@Иван думает, кто идет?@@@@0@4@@@ +146@@@@1@@Спрашивает Иван, кто идет.@@@@1@4@@@ +147@@@@1@@Кто идет, Иван спрашивает.@@@@1@4@@@ +148@@@@1@@Иван спрашивает, кому идет.@@@@0@4@@@ +149@@@@1@@Иван спрашивает, кто идешь.@@@@0@4@@@ +150@@@@1@@Иван знает, кто идет@@@@1@4@@@ +151@@@@1@@@@@@1@0@@@ +152@@@@1@@@@@@1@0@@@ +153@@@@1@@# Embedded question about object of intransitive clause@@@@1@8@@@ +154@@@@1@@Иван спрашивает, кто книгу читает?@@@@1@5@@@ +155@@@@1@@Иван спрашивает, кто читает книгу?@@@@1@5@@@ +156@@@@1@@Иван спрашивает, что студент читает?@@@@1@5@@@ +157@@@@1@@Иван думает, что студент читает?@@@@0@5@@@ +158@@@@1@@Иван спрашивает, какую книгу студент читает@@@@1@6@@@ +159@@@@1@@Иван спрашивает, какую студент читает книгу@@@@1@6@@@ +160@@@@1@@Иван знает, что читает студент?@@@@1@5@@@ +161@@@@1@@@@@@1@0@@@ +162@@@@1@@# Embedded question about both subject and object of intransitive clause@@@@1@11@@@ +163@@@@1@@Иван спрашивает, кто что видит.@@@@1@5@@@ +164@@@@1@@Иван спрашивает, что кто видит.@@@@1@5@@@ +165@@@@1@@Иван спрашивает, кто видит что.@@@@1@5@@@ +166@@@@1@@Иван спрашивает, что видит кто.@@@@1@5@@@ +167@@@@1@@Иван думает, кто что видит.@@@@0@5@@@ +168@@@@1@@Иван знает, кто что видит@@@@1@5@@@ +169@@@@1@@@@@@1@0@@@ +170@@@@1@@@@@@1@0@@@ +171@@@@1@@# Embedded that-clause with question in it@@@@1@7@@@ +172@@@@1@@Иван думает, что кто идет?@@@@1@5@@@ +173@@@@1@@Иван спрашивает, что кто идет?@@@@0@5@@@ +174@@@@1@@Иван спрашивает, что что студент читает?@@@@0@6@@@ +175@@@@1@@Иван спрашивает, что студент читает книгу@@@@0@6@@@ +176@@@@1@@Иван спрашивает, что кто что читает?@@@@0@6@@@ +177@@@@1@@Иван думает, что кто что читает?@@@@1@6@@@ +178@@@@1@@Иван спрашивает, что где студент лежит?@@@@0@6@@@ +179@@@@1@@Иван спрашивает, что где студент купил книгу?@@@@0@7@@@ +180@@@@1@@Иван спрашивает, что как студент читает книгу?@@@@0@7@@@ +181@@@@1@@Иван думает, что Иван где купил эту книгу?@@@@1@8@@@ +182@@@@1@@?Иван знает, что кто идет?@@@@1@5@@@ +183@@@@1@@@@@@1@0@@@ +184@@@@1@@# Questioning adjunct of the embedded clause@@@@1@7@@@ +185@@@@1@@Иван спрашивает, где студент лежит@@@@1@5@@@ +186@@@@1@@Иван спрашивает, как студент читает книгу?@@@@1@6@@@ +187@@@@1@@Иван думает, как студент читает книгу@@@@0@6@@@ +188@@@@1@@Иван знает, где студент лежит?@@@@1@5@@@ +189@@@@1@@Иван знает, как студент читает книгу.@@@@1@6@@@ +190@@@@1@@@@@@1@0@@@ +191@@@@1@@# Negation@@@@1@2@@@ +192@@@@1@@Иван не спрашивает, куда идет студент.@@@@1@6@@@ +193@@@@1@@Куда идет студент, Иван не спрашивает.@@@@1@6@@@ +194@@@@1@@Иван не спрашивает, кто идет@@@@1@5@@@ +195@@@@1@@Не спрашивает Иван, кто идет@@@@1@5@@@ +196@@@@1@@Кто идет, Иван не спрашивает@@@@1@5@@@ +197@@@@1@@Иван не спрашивает, какую книгу студент читает@@@@1@7@@@ +198@@@@1@@Иван не знает, куда идет студент.@@@@1@6@@@ +199@@@@1@@@@@@1@0@@@ +200@@@@1@@# Fronted question about subject, object, or adjunct of embedded clause@@@@1@11@@@ +201@@@@1@@?Кто, Иван спрашивает, идет?@@@@1@4@@@ +202@@@@1@@?Кто, Иван спрашивает, книгу читает?@@@@1@5@@@ +203@@@@1@@?Что, Иван спрашивает, читает студент?@@@@1@5@@@ +204@@@@1@@?Где, Иван спрашивает, студент купил книгу?@@@@1@6@@@ +205@@@@1@@Где, Иван думает, что студент купил эту книгу?@@@@1@8@@@ +206@@@@1@@Где, Иван думает, студент купил эту книгу?@@@@1@7@@@ +207@@@@1@@?Где, Иван спрашивает, студент лежит?@@@@1@5@@@ +208@@@@1@@Где, я спрашиваю, студент лежит?@@@@1@5@@@ +209@@@@1@@Где, Иван думает, студент лежит?@@@@1@5@@@ +210@@@@1@@Кто, Иван думает, идет?@@@@1@4@@@ +211@@@@1@@Что, Иван думает, студент читает?@@@@1@5@@@ +212@@@@1@@Кто в какой город, Иван спрашивает, приехал?@@@@1@7@@@ +213@@@@1@@Кто и в какой город,ты спрашиваешь, приехал?@@@@1@7@@@ +214@@@@1@@?Где, Иван знает, студент лежит?@@@@1@5@@@ +215@@@@1@@?Кто, Иван знает, идет?@@@@1@4@@@ +216@@@@1@@?Что, Иван знает, студент читает?@@@@1@5@@@ +217@@@@1@@@@@@1@0@@@ +218@@@@1@@@@@@1@0@@@ +219@@@@1@@# Fronted question from that-clause@@@@1@5@@@ +220@@@@1@@Кто, Иван спрашивает, что идет?@@@@0@5@@@ +221@@@@1@@Где Иван спрашивает что студент купил книгу?@@@@0@7@@@ +222@@@@1@@Где Иван спрашивает что студент лежит?@@@@0@6@@@ +223@@@@1@@?Где, Иван точно знает, что студент лежит?@@@@1@7@@@ +224@@@@1@@?Где, Иван думает, что студент лежит?@@@@1@6@@@ +225@@@@1@@Кто, Иван спрашивает, что читает книгу?@@@@0@6@@@ +226@@@@1@@@@@@1@0@@@ +227@@@@1@@@@@@1@0@@@ +228@@@@1@@# Multiple fronted questions about subject, object, or adjunct of embedded clause@@@@1@12@@@ +229@@@@1@@?Кто, Иван спрашивает, видит что?@@@@1@5@@@ +230@@@@1@@?Кто, Иван спрашивает, что видит?@@@@1@5@@@ +231@@@@1@@?Кто что, Иван спрашивает, видит?@@@@1@5@@@ +232@@@@1@@?Кто куда, Иван спрашивает, идет?@@@@1@5@@@ +233@@@@1@@?Где, Иван спрашивает, студент купил книгу?@@@@1@6@@@ +234@@@@1@@?Где, Иван спрашивает, студент купил какую книгу?@@@@1@7@@@ +235@@@@1@@?Где, Иван спрашивает, студент что купил?@@@@1@6@@@ +236@@@@1@@?Где кто что, Иван спрашивает, купил?@@@@1@6@@@ +237@@@@1@@?Где кто, Иван спрашивает, что купил?@@@@1@6@@@ +238@@@@1@@?Где, Иван спрашивает, кто что купил?@@@@1@6@@@ +239@@@@1@@?Кто, Иван спрашивает, что видел?@@@@1@5@@@ +240@@@@1@@?Кто Иван спрашивает какую книгу читает?@@@@1@6@@@ +241@@@@1@@?Кто Иван спрашивает какую читает книгу?@@@@1@6@@@ +242@@@@1@@Иван спрашивает, какую книгу студент читает?@@@@1@6@@@ +243@@@@1@@Какую книгу, Иван спрашивает, студент читает?@@@@1@6@@@ +244@@@@1@@Какую книгу, Иван спрашивает, читает студент? @@@@1@6@@@ +245@@@@1@@Какую, Иван спрашивает, студент читает книгу?@@@@1@6@@@ +246@@@@1@@Кто какую книгу, Иван думает, читает?@@@@1@6@@@ +247@@@@1@@?Где кто что, Иван знает, что читает?@@@@1@7@@@ +248@@@@1@@Где кто что, Иван знает, читает?@@@@0@6@@@ +249@@@@1@@?Какую кто, Иван думает, купил книгу?@@@@1@6@@@ +250@@@@1@@?Кто, Иван думает, что видел?@@@@1@5@@@ +251@@@@1@@?Кто, Иван думает, видел что?@@@@1@5@@@ +252@@@@1@@?Кто, Иван думает, купил какую книгу?@@@@1@6@@@ +253@@@@1@@?Кто, Иван точно знает, что видел?@@@@1@6@@@ +254@@@@1@@Кто, Иван спрашивает, что видел?@@@@1@5@@@ +255@@@@1@@@@@@1@0@@@ +256@@@@1@@# Multiple questions and that-clause@@@@1@5@@@ +257@@@@1@@Кто что, Иван спрашивает, что видел?@@@@0@6@@@ +258@@@@1@@Кто какую книгу, Иван думает, что читает?@@@@1@7@@@ +259@@@@1@@?Кто какую книгу, Иван точно знает, что читает?@@@@1@8@@@ +260@@@@1@@?Кто, Иван точно знает, что читает какую книгу?@@@@1@8@@@ +261@@@@1@@Где что Иван спрашивает, что мы видели?@@@@0@7@@@ +262@@@@1@@Как Иван спрашивает, что студент читает эту книгу?@@@@0@8@@@ +263@@@@1@@?Кто, Иван думает, что что видел?@@@@1@6@@@ +264@@@@1@@?Кто, Иван точно знает, что что видел?@@@@1@7@@@ +265@@@@1@@Кто, Иван спрашивает, что что видел?@@@@0@6@@@ +266@@@@1@@@@@@1@0@@@ +267@@@@1@@# Question both to the subject of matrix and subj/obj/adj of embedded clause@@@@1@13@@@ +268@@@@1@@Кто спрашивает, где мы что видели?@@@@1@6@@@ +269@@@@1@@Кто спрашивает, где мы видели какие книги?@@@@1@7@@@ +270@@@@1@@Кто спрашивает, где мы видели эти книги?@@@@1@7@@@ +271@@@@1@@Кто спрашивает, что где мы видели эти книги?@@@@0@8@@@ +272@@@@1@@Кто спрашивает какие книги мы где видели?@@@@1@7@@@ +273@@@@1@@Кто спрашивает эти книги мы где видели?@@@@1@7@@@ +274@@@@1@@Кто спрашивает книги мы где видели?@@@@1@6@@@ +275@@@@1@@Кто думает, где мы что видели?@@@@0@6@@@ +276@@@@1@@Кто думает, где мы видели какие книги?@@@@0@7@@@ +277@@@@1@@Кто думает, где мы видели эти книги?@@@@0@7@@@ +278@@@@1@@Кто думает, что где мы видели эти книги?@@@@0@8@@@ +279@@@@1@@Кто думает какие книги мы где видели?@@@@0@7@@@ +280@@@@1@@Кто думает эти книги мы где видели?@@@@0@7@@@ +281@@@@1@@Кто думает книги мы где видели?@@@@0@6@@@ +282@@@@1@@Кто знает, где мы что видели?@@@@1@6@@@ +283@@@@1@@Кто знает, что где мы что видели?@@@@0@7@@@ +284@@@@1@@@@@@1@0@@@ +285@@@@1@@@@@@1@0@@@ +286@@@@1@@# Second position question clitic in embedded questions@@@@1@8@@@ +287@@@@1@@Ты спрашиваешь, видит ли Иван Машу?@@@@1@6@@@ +288@@@@1@@Ты спрашиваешь, что видит ли Иван?@@@@0@6@@@ +289@@@@1@@Ты спрашиваешь, ли видит Иван Машу?@@@@0@6@@@ +290@@@@1@@Ты спрашиваешь, что видит ли Иван?@@@@0@6@@@ +291@@@@1@@Ты спрашиваешь, ли видит Иван Машу?@@@@0@6@@@ +292@@@@1@@Ты думаешь, видит ли Иван Машу?@@@@0@6@@@ +293@@@@1@@Кто ли идет@@@@0@3@@@ +294@@@@1@@Что ли Иван видит@@@@0@4@@@ +295@@@@1@@Ты не спрашиваешь, читает ли Иван эту книгу?@@@@1@8@@@ +296@@@@1@@Ты спрашиваешь, читает ли Иван эту книгу?@@@@1@7@@@ +297@@@@1@@Какую книгу, ты спрашиваешь, читает ли Иван?@@@@1@7@@@ +298@@@@1@@Ты знаешь, видит ли Иван Машу?@@@@1@6@@@ +299@@@@1@@Знаешь ли ты, видит ли Иван Машу?@@@@1@7@@@ +300@@@@1@@Думаешь ли ты, видит ли Иван Машу?@@@@0@7@@@ +301@@@@1@@Спрашиваешь ли ты, видит ли Иван Машу?@@@@1@7@@@ +302@@@@1@@Ты не знаешь, видит ли Иван Машу@@@@1@7@@@ +303@@@@1@@Ты знаешь, что видит ли Иван Машу@@@@0@7@@@ +304@@@@1@@@@@@1@0@@@ +305@@@@1@@@@@@1@0@@@ +306@@@@1@@# Infinitival embedded questions@@@@1@4@@@ +307@@@@1@@Иван спрашивает, как читать эту книгу@@@@1@6@@@ +308@@@@1@@Иван спрашивает, как читать какую книгу@@@@1@6@@@ +309@@@@1@@Иван спрашивает, как что читать@@@@1@5@@@ +310@@@@1@@Иван спрашивает, как читать что@@@@1@5@@@ +311@@@@1@@Иван спрашивает, как читать книгу@@@@1@5@@@ +312@@@@1@@Иван думает, как читать эту книгу@@@@0@6@@@ +313@@@@1@@Иван знает, как читать эту книгу@@@@1@6@@@ +314@@@@1@@@@@@1@0@@@ +315@@@@1@@# Coordination@@@@1@2@@@ +316@@@@1@@Где и когда Иван купил книгу?@@@@1@6@@@ +317@@@@1@@Кого и что Иван видит?@@@@1@5@@@ +318@@@@1@@Кого что Иван видит?@@@@0@4@@@ +319@@@@1@@Кого и чему Иван видит?@@@@0@5@@@ +320@@@@1@@Кому и чему Иван видит?@@@@0@5@@@ +321@@@@1@@Кого Иван видит и что Иван слышит?@@@@1@7@@@ +322@@@@1@@Кого Иван видит и чему Иван слышит?@@@@0@7@@@ +323@@@@1@@Кому Иван видит и чему Иван слышит?@@@@0@7@@@ +324@@@@1@@Кого видит Иван и что слышала Маша?@@@@1@7@@@ +325@@@@1@@Кого видит Иван и что слышит?@@@@1@6@@@ +326@@@@1@@Кого видел Иван и что слышала?@@@@0@6@@@ +327@@@@1@@Иван лежит и читает книгу.@@@@1@5@@@ diff --git a/tests/regression/home/gold/wh-dev-rus/item-set b/tests/regression/home/gold/wh-dev-rus/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-rus/parse b/tests/regression/home/gold/wh-dev-rus/parse new file mode 100644 index 000000000..8061c6846 --- /dev/null +++ b/tests/regression/home/gold/wh-dev-rus/parse @@ -0,0 +1,327 @@ +1@0@1@3@(1, 0, 1, <2:8>, 1, "Simple", 0, "null") (2, 1, 2, <9:21>, 1, "intransitive", 0, "null") (3, 2, 3, <22:34>, 1, "propositions", 0, "null")@3@(1, 0, 1, <2:8>, 1, "Simple", 0, "null") (2, 1, 2, <9:21>, 1, "intransitive", 0, "null") (3, 2, 3, <22:34>, 1, "propositions", 0, "null")@0@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@4056@0@-1@-1@2072@-1@-1@-1@@post-reduction lexical gap@ +2@0@2@2@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "лежит", 0, "null")@2@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "лежит", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@22@17@-1@-1@-1@-1@-1@-1@-1@4136@41@-1@-1@515480@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:5>, 1, "Лежит", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null")@2@(1, 0, 1, <0:5>, 1, "Лежит", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@56@17@-1@-1@-1@-1@-1@-1@-1@4330@120@-1@-1@1016880@-1@-1@-1@@@ +4@0@4@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <2:8>, 1, "Simple", 0, "null") (2, 1, 2, <9:19>, 1, "transitive", 0, "null") (3, 2, 3, <20:32>, 1, "propositions", 0, "null")@3@(1, 0, 1, <2:8>, 1, "Simple", 0, "null") (2, 1, 2, <9:19>, 1, "transitive", 0, "null") (3, 2, 3, <20:32>, 1, "propositions", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@4410@124@-1@-1@2024@-1@-1@-1@@post-reduction lexical gap@ +6@0@6@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "читает", 0, "null") (3, 2, 3, <12:17>, 1, "книгу", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "читает", 0, "null") (3, 2, 3, <12:17>, 1, "книгу", 0, "null")@1@-1@19@19@-1@19@-1@-1@-1@-1@-1@-1@337@135@-1@-1@-1@-1@-1@-1@-1@5279@607@-1@-1@7393624@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:6>, 1, "Читает", 0, "null") (2, 1, 2, <7:12>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null")@3@(1, 0, 1, <0:6>, 1, "Читает", 0, "null") (2, 1, 2, <7:12>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null")@1@-1@20@20@-1@20@-1@-1@-1@-1@-1@-1@563@115@-1@-1@-1@-1@-1@-1@-1@6475@1299@-1@-1@11187864@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:6>, 1, "Читает", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <12:17>, 1, "книгу", 0, "null")@3@(1, 0, 1, <0:6>, 1, "Читает", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <12:17>, 1, "книгу", 0, "null")@1@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@343@64@-1@-1@-1@-1@-1@-1@-1@7264@1724@-1@-1@6568624@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:5>, 1, "Книгу", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "читает", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Книгу", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "читает", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@45@64@-1@-1@-1@-1@-1@-1@-1@7648@1851@-1@-1@1533568@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:5>, 1, "Книгу", 0, "null") (2, 1, 2, <6:12>, 1, "читает", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Книгу", 0, "null") (2, 1, 2, <6:12>, 1, "читает", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null")@1@-1@17@17@-1@17@-1@-1@-1@-1@-1@-1@545@114@-1@-1@-1@-1@-1@-1@-1@8830@2528@-1@-1@10852104@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "книгу", 0, "null") (3, 2, 3, <11:17>, 1, "читает", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "книгу", 0, "null") (3, 2, 3, <11:17>, 1, "читает", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@45@115@-1@-1@-1@-1@-1@-1@-1@9356@2702@-1@-1@2119424@-1@-1@-1@@@ +12@0@12@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +13@0@13@7@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:29>, 1, "intransitive", 0, "null") (4, 3, 4, <30:37>, 1, "subject", 0, "null") (5, 4, 5, <38:40>, 1, "of", 0, "null") (6, 5, 6, <41:47>, 1, "matrix", 0, "null") (7, 6, 7, <48:54>, 1, "clause", 0, "null")@7@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:29>, 1, "intransitive", 0, "null") (4, 3, 4, <30:37>, 1, "subject", 0, "null") (5, 4, 5, <38:40>, 1, "of", 0, "null") (6, 5, 6, <41:47>, 1, "matrix", 0, "null") (7, 6, 7, <48:54>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@9514@2709@-1@-1@4444@-1@-1@-1@@post-reduction lexical gap@ +14@0@14@2@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null")@2@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@13@-1@-1@-1@-1@-1@-1@-1@9557@2732@-1@-1@265384@-1@-1@-1@@@ +15@0@15@2@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null")@2@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@9@-1@-1@-1@-1@-1@-1@-1@9686@2754@-1@-1@216272@-1@-1@-1@@@ +16@0@16@2@(1, 0, 1, <0:4>, 1, "Чему", 0, "null") (2, 1, 2, <5:10>, 1, "лежит", 0, "null")@2@(1, 0, 1, <0:4>, 1, "Чему", 0, "null") (2, 1, 2, <5:10>, 1, "лежит", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@9@-1@-1@-1@-1@-1@-1@-1@9725@2773@-1@-1@216560@-1@-1@-1@@@ +17@0@17@2@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "идешь", 0, "null")@2@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "идешь", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@9@-1@-1@-1@-1@-1@-1@-1@9764@2792@-1@-1@215992@-1@-1@-1@@@ +18@0@18@2@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "идете", 0, "null")@2@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "идете", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@9@-1@-1@-1@-1@-1@-1@-1@9803@2811@-1@-1@216312@-1@-1@-1@@@ +19@0@19@2@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:10>, 1, "лежишь", 0, "null")@2@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:10>, 1, "лежишь", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@13@-1@-1@-1@-1@-1@-1@-1@9862@2840@-1@-1@323704@-1@-1@-1@@@ +20@0@20@2@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:9>, 1, "лежит", 0, "null")@2@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:9>, 1, "лежит", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@17@-1@-1@-1@-1@-1@-1@-1@9931@2873@-1@-1@373152@-1@-1@-1@@@ +21@0@21@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +22@0@22@7@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:24>, 1, "subject", 0, "null") (4, 3, 4, <25:27>, 1, "of", 0, "null") (5, 4, 5, <28:38>, 1, "transitive", 0, "null") (6, 5, 6, <39:45>, 1, "matrix", 0, "null") (7, 6, 7, <46:52>, 1, "clause", 0, "null")@7@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:24>, 1, "subject", 0, "null") (4, 3, 4, <25:27>, 1, "of", 0, "null") (5, 4, 5, <28:38>, 1, "transitive", 0, "null") (6, 5, 6, <39:45>, 1, "matrix", 0, "null") (7, 6, 7, <46:52>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@10027@2876@-1@-1@4436@-1@-1@-1@@post-reduction lexical gap@ +23@0@23@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "сон", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "сон", 0, "null")@1@-1@36@36@-1@36@-1@-1@-1@-1@-1@-1@720@234@-1@-1@-1@-1@-1@-1@-1@11711@3863@-1@-1@14572072@-1@-1@-1@@@ +24@0@24@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:7>, 1, "сон", 0, "null") (3, 2, 3, <8:13>, 1, "видит", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:7>, 1, "сон", 0, "null") (3, 2, 3, <8:13>, 1, "видит", 0, "null")@1@-1@21@21@-1@21@-1@-1@-1@-1@-1@-1@30@211@-1@-1@-1@-1@-1@-1@-1@12596@4139@-1@-1@3077952@-1@-1@-1@@@ +25@0@25@3@(1, 0, 1, <1:6>, 1, "Видит", 0, "null") (2, 1, 2, <7:10>, 1, "кто", 0, "null") (3, 2, 3, <11:14>, 1, "сон", 0, "null")@3@(1, 0, 1, <1:6>, 1, "Видит", 0, "null") (2, 1, 2, <7:10>, 1, "кто", 0, "null") (3, 2, 3, <11:14>, 1, "сон", 0, "null")@1@-1@23@23@-1@24@-1@-1@-1@-1@-1@-1@729@112@-1@-1@-1@-1@-1@-1@-1@13970@5007@-1@-1@13186552@-1@-1@-1@@@ +26@0@26@3@(1, 0, 1, <1:6>, 1, "Видит", 0, "null") (2, 1, 2, <7:10>, 1, "сон", 0, "null") (3, 2, 3, <11:14>, 1, "кто", 0, "null")@3@(1, 0, 1, <1:6>, 1, "Видит", 0, "null") (2, 1, 2, <7:10>, 1, "сон", 0, "null") (3, 2, 3, <11:14>, 1, "кто", 0, "null")@1@-1@65@65@-1@65@-1@-1@-1@-1@-1@-1@1332@208@-1@-1@-1@-1@-1@-1@-1@16395@6582@-1@-1@25298832@-1@-1@-1@@@ +27@0@27@3@(1, 0, 1, <0:3>, 1, "Сон", 0, "null") (2, 1, 2, <4:7>, 1, "кто", 0, "null") (3, 2, 3, <8:13>, 1, "видит", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Сон", 0, "null") (2, 1, 2, <4:7>, 1, "кто", 0, "null") (3, 2, 3, <8:13>, 1, "видит", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@30@112@-1@-1@-1@-1@-1@-1@-1@16953@6751@-1@-1@1835656@-1@-1@-1@@@ +28@0@28@3@(1, 0, 1, <0:3>, 1, "Сон", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "кто", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Сон", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "кто", 0, "null")@1@-1@51@51@-1@53@-1@-1@-1@-1@-1@-1@1296@222@-1@-1@-1@-1@-1@-1@-1@19495@8308@-1@-1@24989112@-1@-1@-1@@@ +29@0@29@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:15>, 1, "Ивана", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:15>, 1, "Ивана", 0, "null")@1@-1@32@32@-1@33@-1@-1@-1@-1@-1@-1@721@173@-1@-1@-1@-1@-1@-1@-1@21129@9229@-1@-1@13812128@-1@-1@-1@@@ +30@0@30@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:16>, 1, "Ивана", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:16>, 1, "Ивана", 0, "null")@0@-1@21@21@-1@21@-1@-1@-1@-1@-1@-1@701@152@-1@-1@-1@-1@-1@-1@-1@22736@10105@-1@-1@13120856@-1@-1@-1@@@ +31@0@31@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:17>, 1, "женщину", 0, "null") (4, 3, 4, <18:19>, 1, "в", 0, "null") (5, 4, 5, <20:25>, 1, "книге", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:17>, 1, "женщину", 0, "null") (4, 3, 4, <18:19>, 1, "в", 0, "null") (5, 4, 5, <20:25>, 1, "книге", 0, "null")@2@-1@54@54@-1@55@-1@-1@-1@-1@-1@-1@1207@283@-1@-1@-1@-1@-1@-1@-1@25422@11618@-1@-1@23965320@-1@-1@-1@@@ +32@0@32@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +33@0@33@7@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:23>, 1, "object", 0, "null") (4, 3, 4, <24:26>, 1, "of", 0, "null") (5, 4, 5, <27:37>, 1, "transitive", 0, "null") (6, 5, 6, <38:44>, 1, "matrix", 0, "null") (7, 6, 7, <45:51>, 1, "clause", 0, "null")@7@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:23>, 1, "object", 0, "null") (4, 3, 4, <24:26>, 1, "of", 0, "null") (5, 4, 5, <27:37>, 1, "transitive", 0, "null") (6, 5, 6, <38:44>, 1, "matrix", 0, "null") (7, 6, 7, <45:51>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@25833@11637@-1@-1@4436@-1@-1@-1@@post-reduction lexical gap@ +34@0@34@3@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null")@1@-1@52@52@-1@58@-1@-1@-1@-1@-1@-1@944@261@-1@-1@-1@-1@-1@-1@-1@27917@12876@-1@-1@18617640@-1@-1@-1@@@ +35@0@35@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null")@1@-1@30@30@-1@31@-1@-1@-1@-1@-1@-1@700@174@-1@-1@-1@-1@-1@-1@-1@29606@13785@-1@-1@13509848@-1@-1@-1@@@ +36@0@36@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null")@0@-1@37@37@-1@38@-1@-1@-1@-1@-1@-1@720@166@-1@-1@-1@-1@-1@-1@-1@31228@14710@-1@-1@13753640@-1@-1@-1@@@ +37@0@37@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +38@0@38@10@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:20>, 1, "questions", 0, "null") (3, 2, 3, <21:26>, 1, "about", 0, "null") (4, 3, 4, <27:34>, 1, "subject", 0, "null") (5, 4, 5, <35:38>, 1, "and", 0, "null") (6, 5, 6, <39:45>, 1, "object", 0, "null") (7, 6, 7, <46:48>, 1, "of", 0, "null") (8, 7, 8, <49:59>, 1, "transitive", 0, "null") (9, 8, 9, <60:66>, 1, "matrix", 0, "null") (10, 9, 10, <67:73>, 1, "clause", 0, "null")@10@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:20>, 1, "questions", 0, "null") (3, 2, 3, <21:26>, 1, "about", 0, "null") (4, 3, 4, <27:34>, 1, "subject", 0, "null") (5, 4, 5, <35:38>, 1, "and", 0, "null") (6, 5, 6, <39:45>, 1, "object", 0, "null") (7, 6, 7, <46:48>, 1, "of", 0, "null") (8, 7, 8, <49:59>, 1, "transitive", 0, "null") (9, 8, 9, <60:66>, 1, "matrix", 0, "null") (10, 9, 10, <67:73>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@31228@14710@-1@-1@6384@-1@-1@-1@@post-reduction lexical gap@ +39@0@39@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:7>, 1, "что", 0, "null") (3, 2, 3, <8:13>, 1, "видит", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:7>, 1, "что", 0, "null") (3, 2, 3, <8:13>, 1, "видит", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@21@153@-1@-1@-1@-1@-1@-1@-1@31776@14906@-1@-1@2055416@-1@-1@-1@@@ +40@0@40@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "что", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "что", 0, "null")@1@-1@26@26@-1@26@-1@-1@-1@-1@-1@-1@719@160@-1@-1@-1@-1@-1@-1@-1@33446@15816@-1@-1@13585312@-1@-1@-1@@@ +41@0@41@3@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "кто", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:9>, 1, "видит", 0, "null") (3, 2, 3, <10:13>, 1, "кто", 0, "null")@1@-1@30@30@-1@30@-1@-1@-1@-1@-1@-1@944@187@-1@-1@-1@-1@-1@-1@-1@35420@16977@-1@-1@17684712@-1@-1@-1@@@ +42@0@42@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <9:14>, 1, "видит", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <9:14>, 1, "видит", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@21@150@-1@-1@-1@-1@-1@-1@-1@36098@17174@-1@-1@2004744@-1@-1@-1@@@ +43@0@43@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "чему", 0, "null") (3, 2, 3, <9:14>, 1, "видит", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "чему", 0, "null") (3, 2, 3, <9:14>, 1, "видит", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@16@80@-1@-1@-1@-1@-1@-1@-1@36503@17291@-1@-1@1213552@-1@-1@-1@@@ +44@0@44@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "чему", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "чему", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@16@80@-1@-1@-1@-1@-1@-1@-1@36800@17404@-1@-1@1213844@-1@-1@-1@@@ +45@0@45@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +46@0@46@9@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:24>, 1, "adjunct", 0, "null") (4, 3, 4, <25:27>, 1, "of", 0, "null") (5, 4, 5, <28:40>, 1, "intransitive", 0, "null") (6, 5, 6, <41:44>, 1, "and", 0, "null") (7, 6, 7, <45:55>, 1, "transitive", 0, "null") (8, 7, 8, <56:62>, 1, "matrix", 0, "null") (9, 8, 9, <63:69>, 1, "clause", 0, "null")@9@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:24>, 1, "adjunct", 0, "null") (4, 3, 4, <25:27>, 1, "of", 0, "null") (5, 4, 5, <28:40>, 1, "intransitive", 0, "null") (6, 5, 6, <41:44>, 1, "and", 0, "null") (7, 6, 7, <45:55>, 1, "transitive", 0, "null") (8, 7, 8, <56:62>, 1, "matrix", 0, "null") (9, 8, 9, <63:69>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@36800@17404@-1@-1@5772@-1@-1@-1@@post-reduction lexical gap@ +47@0@47@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "куда", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "куда", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@110@35@-1@-1@-1@-1@-1@-1@-1@37065@17560@-1@-1@2639968@-1@-1@-1@@@ +48@0@48@3@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@124@40@-1@-1@-1@-1@-1@-1@-1@37684@17767@-1@-1@2265104@-1@-1@-1@@@ +49@0@49@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@31@29@-1@-1@-1@-1@-1@-1@-1@37969@17836@-1@-1@791128@-1@-1@-1@@@ +50@0@50@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:15>, 1, "куда", 0, "null")@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:15>, 1, "куда", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@110@24@-1@-1@-1@-1@-1@-1@-1@38338@17979@-1@-1@1979728@-1@-1@-1@@@ +51@0@51@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:10>, 1, "куда", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null")@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:10>, 1, "куда", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@118@24@-1@-1@-1@-1@-1@-1@-1@38721@18137@-1@-1@2631288@-1@-1@-1@@@ +52@0@52@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null") (4, 3, 4, <15:16>, 1, "в", 0, "null") (5, 4, 5, <17:22>, 1, "книге", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null") (4, 3, 4, <15:16>, 1, "в", 0, "null") (5, 4, 5, <17:22>, 1, "книге", 0, "null")@2@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@190@58@-1@-1@-1@-1@-1@-1@-1@39410@18430@-1@-1@4043808@-1@-1@-1@@@ +53@0@53@5@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null") (4, 3, 4, <15:16>, 1, "в", 0, "null") (5, 4, 5, <17:22>, 1, "книге", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null") (4, 3, 4, <15:16>, 1, "в", 0, "null") (5, 4, 5, <17:22>, 1, "книге", 0, "null")@2@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@169@55@-1@-1@-1@-1@-1@-1@-1@40307@18702@-1@-1@3687928@-1@-1@-1@@@ +54@0@54@5@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:11>, 1, "в", 0, "null") (4, 3, 4, <12:17>, 1, "книге", 0, "null") (5, 4, 5, <18:22>, 1, "идет", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:11>, 1, "в", 0, "null") (4, 3, 4, <12:17>, 1, "книге", 0, "null") (5, 4, 5, <18:22>, 1, "идет", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@103@48@-1@-1@-1@-1@-1@-1@-1@41047@18889@-1@-1@2281280@-1@-1@-1@@@ +55@0@55@4@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:14>, 1, "видел", 0, "null") (4, 3, 4, <15:19>, 1, "Машу", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:14>, 1, "видел", 0, "null") (4, 3, 4, <15:19>, 1, "Машу", 0, "null")@2@-1@63@63@-1@63@-1@-1@-1@-1@-1@-1@1438@353@-1@-1@-1@-1@-1@-1@-1@44607@20740@-1@-1@28790640@-1@-1@-1@@@ +56@0@56@4@(1, 0, 1, <0:3>, 1, "Как", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:14>, 1, "пишет", 0, "null") (4, 3, 4, <15:26>, 1, "диссертацию", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Как", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:14>, 1, "пишет", 0, "null") (4, 3, 4, <15:26>, 1, "диссертацию", 0, "null")@2@-1@24@24@-1@24@-1@-1@-1@-1@-1@-1@499@210@-1@-1@-1@-1@-1@-1@-1@46345@21484@-1@-1@11321424@-1@-1@-1@@@ +57@0@57@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:8>, 1, "как", 0, "null") (3, 2, 3, <9:14>, 1, "пишет", 0, "null") (4, 3, 4, <15:26>, 1, "диссертацию", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:8>, 1, "как", 0, "null") (3, 2, 3, <9:14>, 1, "пишет", 0, "null") (4, 3, 4, <15:26>, 1, "диссертацию", 0, "null")@2@-1@37@37@-1@37@-1@-1@-1@-1@-1@-1@677@311@-1@-1@-1@-1@-1@-1@-1@48707@22509@-1@-1@15417184@-1@-1@-1@@@ +58@0@58@4@(1, 0, 1, <1:5>, 1, "Иван", 0, "null") (2, 1, 2, <6:11>, 1, "пишет", 0, "null") (3, 2, 3, <12:15>, 1, "как", 0, "null") (4, 3, 4, <16:27>, 1, "диссертацию", 0, "null")@4@(1, 0, 1, <1:5>, 1, "Иван", 0, "null") (2, 1, 2, <6:11>, 1, "пишет", 0, "null") (3, 2, 3, <12:15>, 1, "как", 0, "null") (4, 3, 4, <16:27>, 1, "диссертацию", 0, "null")@1@-1@27@27@-1@27@-1@-1@-1@-1@-1@-1@698@170@-1@-1@-1@-1@-1@-1@-1@50758@23408@-1@-1@14785472@-1@-1@-1@@@ +59@0@59@4@(1, 0, 1, <1:5>, 1, "Иван", 0, "null") (2, 1, 2, <6:11>, 1, "пишет", 0, "null") (3, 2, 3, <12:23>, 1, "диссертацию", 0, "null") (4, 3, 4, <24:27>, 1, "как", 0, "null")@4@(1, 0, 1, <1:5>, 1, "Иван", 0, "null") (2, 1, 2, <6:11>, 1, "пишет", 0, "null") (3, 2, 3, <12:23>, 1, "диссертацию", 0, "null") (4, 3, 4, <24:27>, 1, "как", 0, "null")@2@-1@44@44@-1@45@-1@-1@-1@-1@-1@-1@900@254@-1@-1@-1@-1@-1@-1@-1@53039@24584@-1@-1@19486472@-1@-1@-1@@@ +60@0@60@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +61@0@61@2@(1, 0, 1, <2:4>, 1, "PP", 0, "null") (2, 1, 2, <5:13>, 1, "adjuncts", 0, "null")@2@(1, 0, 1, <2:4>, 1, "PP", 0, "null") (2, 1, 2, <5:13>, 1, "adjuncts", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@53493@24602@-1@-1@1308@-1@-1@-1@@post-reduction lexical gap@ +62@0@62@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:13>, 1, "город", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:26>, 1, "приехал", 0, "null")@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:13>, 1, "город", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:26>, 1, "приехал", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@126@43@-1@-1@-1@-1@-1@-1@-1@53776@24777@-1@-1@2570048@-1@-1@-1@@@ +63@0@63@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:12>, 1, "Иван", 0, "null") (4, 3, 4, <13:20>, 1, "приехал", 0, "null") (5, 4, 5, <21:26>, 1, "город", 0, "null")@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:12>, 1, "Иван", 0, "null") (4, 3, 4, <13:20>, 1, "приехал", 0, "null") (5, 4, 5, <21:26>, 1, "город", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@199@39@-1@-1@-1@-1@-1@-1@-1@54608@25041@-1@-1@3488156@-1@-1@-1@@@ +64@0@64@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:6>, 1, "Иван", 0, "null") (3, 2, 3, <7:14>, 1, "приехал", 0, "null") (4, 3, 4, <15:20>, 1, "какой", 0, "null") (5, 4, 5, <21:26>, 1, "город", 0, "null")@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:6>, 1, "Иван", 0, "null") (3, 2, 3, <7:14>, 1, "приехал", 0, "null") (4, 3, 4, <15:20>, 1, "какой", 0, "null") (5, 4, 5, <21:26>, 1, "город", 0, "null")@0@-1@5@5@-1@6@-1@-1@-1@-1@-1@-1@150@32@-1@-1@-1@-1@-1@-1@-1@54886@25229@-1@-1@2578196@-1@-1@-1@@@ +65@0@65@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:6>, 1, "Иван", 0, "null") (3, 2, 3, <7:12>, 1, "какой", 0, "null") (4, 3, 4, <13:20>, 1, "приехал", 0, "null") (5, 4, 5, <21:26>, 1, "город", 0, "null")@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:6>, 1, "Иван", 0, "null") (3, 2, 3, <7:12>, 1, "какой", 0, "null") (4, 3, 4, <13:20>, 1, "приехал", 0, "null") (5, 4, 5, <21:26>, 1, "город", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@118@29@-1@-1@-1@-1@-1@-1@-1@55160@25382@-1@-1@2026984@-1@-1@-1@@@ +66@0@66@5@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <12:19>, 1, "приехал", 0, "null") (4, 3, 4, <20:22>, 1, "из", 0, "null") (5, 4, 5, <23:29>, 1, "города", 0, "null")@5@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <12:19>, 1, "приехал", 0, "null") (4, 3, 4, <20:22>, 1, "из", 0, "null") (5, 4, 5, <23:29>, 1, "города", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@130@38@-1@-1@-1@-1@-1@-1@-1@55496@25566@-1@-1@2736388@-1@-1@-1@@@ +67@0@67@4@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:11>, 1, "город", 0, "null") (3, 2, 3, <12:16>, 1, "Иван", 0, "null") (4, 3, 4, <17:24>, 1, "приехал", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:11>, 1, "город", 0, "null") (3, 2, 3, <12:16>, 1, "Иван", 0, "null") (4, 3, 4, <17:24>, 1, "приехал", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@97@28@-1@-1@-1@-1@-1@-1@-1@55758@25718@-1@-1@1702016@-1@-1@-1@@@ +68@0@68@4@(1, 0, 1, <0:6>, 1, "Какому", 0, "null") (2, 1, 2, <7:12>, 1, "город", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:25>, 1, "приехал", 0, "null")@4@(1, 0, 1, <0:6>, 1, "Какому", 0, "null") (2, 1, 2, <7:12>, 1, "город", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:25>, 1, "приехал", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@51@22@-1@-1@-1@-1@-1@-1@-1@55893@25796@-1@-1@976832@-1@-1@-1@@@ +69@0@69@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:8>, 1, "какому", 0, "null") (3, 2, 3, <9:14>, 1, "город", 0, "null") (4, 3, 4, <15:19>, 1, "Иван", 0, "null") (5, 4, 5, <20:27>, 1, "приехал", 0, "null")@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:8>, 1, "какому", 0, "null") (3, 2, 3, <9:14>, 1, "город", 0, "null") (4, 3, 4, <15:19>, 1, "Иван", 0, "null") (5, 4, 5, <20:27>, 1, "приехал", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@56@23@-1@-1@-1@-1@-1@-1@-1@56038@25881@-1@-1@1082076@-1@-1@-1@@@ +70@0@70@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:8>, 1, "какому", 0, "null") (3, 2, 3, <9:15>, 1, "городу", 0, "null") (4, 3, 4, <16:20>, 1, "Иван", 0, "null") (5, 4, 5, <21:28>, 1, "приехал", 0, "null")@5@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:8>, 1, "какому", 0, "null") (3, 2, 3, <9:15>, 1, "городу", 0, "null") (4, 3, 4, <16:20>, 1, "Иван", 0, "null") (5, 4, 5, <21:28>, 1, "приехал", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@56047@25890@-1@-1@118388@-1@-1@-1@@post-reduction lexical gap@ +71@0@71@5@(1, 0, 1, <0:2>, 1, "Из", 0, "null") (2, 1, 2, <3:9>, 1, "какого", 0, "null") (3, 2, 3, <10:16>, 1, "города", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:29>, 1, "приехал", 0, "null")@5@(1, 0, 1, <0:2>, 1, "Из", 0, "null") (2, 1, 2, <3:9>, 1, "какого", 0, "null") (3, 2, 3, <10:16>, 1, "города", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:29>, 1, "приехал", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@97@38@-1@-1@-1@-1@-1@-1@-1@56271@26031@-1@-1@2101552@-1@-1@-1@@@ +72@0@72@4@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:13>, 1, "города", 0, "null") (3, 2, 3, <14:18>, 1, "Иван", 0, "null") (4, 3, 4, <19:26>, 1, "приехал", 0, "null")@4@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:13>, 1, "города", 0, "null") (3, 2, 3, <14:18>, 1, "Иван", 0, "null") (4, 3, 4, <19:26>, 1, "приехал", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@68@23@-1@-1@-1@-1@-1@-1@-1@56866@26147@-1@-1@1232832@-1@-1@-1@@@ +73@0@73@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:5>, 1, "и", 0, "null") (3, 2, 3, <6:7>, 1, "в", 0, "null") (4, 3, 4, <8:13>, 1, "какой", 0, "null") (5, 4, 5, <14:19>, 1, "город", 0, "null") (6, 5, 6, <20:27>, 1, "приехал", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:5>, 1, "и", 0, "null") (3, 2, 3, <6:7>, 1, "в", 0, "null") (4, 3, 4, <8:13>, 1, "какой", 0, "null") (5, 4, 5, <14:19>, 1, "город", 0, "null") (6, 5, 6, <20:27>, 1, "приехал", 0, "null")@0@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@104@48@-1@-1@-1@-1@-1@-1@-1@57144@26306@-1@-1@1990924@-1@-1@-1@@@ +74@0@74@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:20>, 1, "в", 0, "null") (5, 4, 5, <21:26>, 1, "книге", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:20>, 1, "в", 0, "null") (5, 4, 5, <21:26>, 1, "книге", 0, "null")@3@-1@70@70@-1@71@-1@-1@-1@-1@-1@-1@1537@388@-1@-1@-1@-1@-1@-1@-1@60617@28262@-1@-1@31900448@-1@-1@-1@@@ +75@0@75@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:20>, 1, "в", 0, "null") (5, 4, 5, <21:25>, 1, "этой", 0, "null") (6, 5, 6, <26:31>, 1, "книге", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:20>, 1, "в", 0, "null") (5, 4, 5, <21:25>, 1, "этой", 0, "null") (6, 5, 6, <26:31>, 1, "книге", 0, "null")@3@-1@74@74@-1@75@-1@-1@-1@-1@-1@-1@1567@395@-1@-1@-1@-1@-1@-1@-1@64797@30286@-1@-1@32556840@-1@-1@-1@@@ +76@0@76@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:24>, 1, "книге", 0, "null") (5, 4, 5, <25:26>, 1, "в", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:24>, 1, "книге", 0, "null") (5, 4, 5, <25:26>, 1, "в", 0, "null")@0@-1@50@50@-1@51@-1@-1@-1@-1@-1@-1@1577@234@-1@-1@-1@-1@-1@-1@-1@68569@32160@-1@-1@30344920@-1@-1@-1@@@ +77@0@77@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:23>, 1, "этой", 0, "null") (5, 4, 5, <24:25>, 1, "в", 0, "null") (6, 5, 6, <26:31>, 1, "книге", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:23>, 1, "этой", 0, "null") (5, 4, 5, <24:25>, 1, "в", 0, "null") (6, 5, 6, <26:31>, 1, "книге", 0, "null")@0@-1@58@58@-1@58@-1@-1@-1@-1@-1@-1@1567@240@-1@-1@-1@-1@-1@-1@-1@71461@33999@-1@-1@30260552@-1@-1@-1@@@ +78@0@78@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:24>, 1, "книге", 0, "null") (5, 4, 5, <25:26>, 1, "в", 0, "null") (6, 5, 6, <27:31>, 1, "этой", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:24>, 1, "книге", 0, "null") (5, 4, 5, <25:26>, 1, "в", 0, "null") (6, 5, 6, <27:31>, 1, "этой", 0, "null")@0@-1@57@57@-1@57@-1@-1@-1@-1@-1@-1@1583@239@-1@-1@-1@-1@-1@-1@-1@74435@35853@-1@-1@30487472@-1@-1@-1@@@ +79@0@79@6@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:13>, 1, "книге", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@6@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:13>, 1, "книге", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@3@-1@79@79@-1@79@-1@-1@-1@-1@-1@-1@1634@410@-1@-1@-1@-1@-1@-1@-1@78585@37944@-1@-1@34171680@-1@-1@-1@@@ +80@0@80@6@(1, 0, 1, <0:5>, 1, "Каких", 0, "null") (2, 1, 2, <6:7>, 1, "в", 0, "null") (3, 2, 3, <8:14>, 1, "книгах", 0, "null") (4, 3, 4, <15:19>, 1, "Иван", 0, "null") (5, 4, 5, <20:25>, 1, "видит", 0, "null") (6, 5, 6, <26:33>, 1, "женщину", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Каких", 0, "null") (2, 1, 2, <6:7>, 1, "в", 0, "null") (3, 2, 3, <8:14>, 1, "книгах", 0, "null") (4, 3, 4, <15:19>, 1, "Иван", 0, "null") (5, 4, 5, <20:25>, 1, "видит", 0, "null") (6, 5, 6, <26:33>, 1, "женщину", 0, "null")@0@-1@67@67@-1@68@-1@-1@-1@-1@-1@-1@1526@373@-1@-1@-1@-1@-1@-1@-1@83377@39915@-1@-1@31351364@-1@-1@-1@@@ +81@0@81@6@(1, 0, 1, <0:5>, 1, "Книге", 0, "null") (2, 1, 2, <6:7>, 1, "в", 0, "null") (3, 2, 3, <8:13>, 1, "какой", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Книге", 0, "null") (2, 1, 2, <6:7>, 1, "в", 0, "null") (3, 2, 3, <8:13>, 1, "какой", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@0@-1@47@47@-1@48@-1@-1@-1@-1@-1@-1@1196@285@-1@-1@-1@-1@-1@-1@-1@86543@41433@-1@-1@23888636@-1@-1@-1@@@ +82@0@82@6@(1, 0, 1, <0:5>, 1, "Книге", 0, "null") (2, 1, 2, <6:11>, 1, "какой", 0, "null") (3, 2, 3, <12:13>, 1, "в", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Книге", 0, "null") (2, 1, 2, <6:11>, 1, "какой", 0, "null") (3, 2, 3, <12:13>, 1, "в", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@0@-1@38@38@-1@38@-1@-1@-1@-1@-1@-1@1053@239@-1@-1@-1@-1@-1@-1@-1@88747@42758@-1@-1@20441420@-1@-1@-1@@@ +83@0@83@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:20>, 1, "в", 0, "null") (5, 4, 5, <21:26>, 1, "какой", 0, "null") (6, 5, 6, <27:32>, 1, "книге", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:18>, 1, "женщину", 0, "null") (4, 3, 4, <19:20>, 1, "в", 0, "null") (5, 4, 5, <21:26>, 1, "какой", 0, "null") (6, 5, 6, <27:32>, 1, "книге", 0, "null")@3@-1@76@76@-1@76@-1@-1@-1@-1@-1@-1@1572@400@-1@-1@-1@-1@-1@-1@-1@92272@44763@-1@-1@32797928@-1@-1@-1@@@ +84@0@84@6@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:13>, 1, "человек", 0, "null") (3, 2, 3, <14:15>, 1, "в", 0, "null") (4, 3, 4, <16:21>, 1, "книге", 0, "null") (5, 4, 5, <22:27>, 1, "видит", 0, "null") (6, 5, 6, <28:35>, 1, "женщину", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:13>, 1, "человек", 0, "null") (3, 2, 3, <14:15>, 1, "в", 0, "null") (4, 3, 4, <16:21>, 1, "книге", 0, "null") (5, 4, 5, <22:27>, 1, "видит", 0, "null") (6, 5, 6, <28:35>, 1, "женщину", 0, "null")@4@-1@173@173@-1@176@-1@-1@-1@-1@-1@-1@2485@663@-1@-1@-1@-1@-1@-1@-1@100432@47997@-1@-1@54535600@-1@-1@-1@@@ +85@0@85@7@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:10>, 1, "же", 0, "null") (4, 3, 4, <11:16>, 1, "книге", 0, "null") (5, 4, 5, <17:21>, 1, "Иван", 0, "null") (6, 5, 6, <22:27>, 1, "видит", 0, "null") (7, 6, 7, <28:35>, 1, "женщину", 0, "null")@7@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:10>, 1, "же", 0, "null") (4, 3, 4, <11:16>, 1, "книге", 0, "null") (5, 4, 5, <17:21>, 1, "Иван", 0, "null") (6, 5, 6, <22:27>, 1, "видит", 0, "null") (7, 6, 7, <28:35>, 1, "женщину", 0, "null")@0@-1@55@55@-1@64@-1@-1@-1@-1@-1@-1@1067@241@-1@-1@-1@-1@-1@-1@-1@103913@49385@-1@-1@20695272@-1@-1@-1@@@ +86@0@86@6@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:8>, 1, "какого", 0, "null") (3, 2, 3, <9:14>, 1, "книге", 0, "null") (4, 3, 4, <15:19>, 1, "Иван", 0, "null") (5, 4, 5, <20:25>, 1, "видит", 0, "null") (6, 5, 6, <26:33>, 1, "женщину", 0, "null")@6@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:8>, 1, "какого", 0, "null") (3, 2, 3, <9:14>, 1, "книге", 0, "null") (4, 3, 4, <15:19>, 1, "Иван", 0, "null") (5, 4, 5, <20:25>, 1, "видит", 0, "null") (6, 5, 6, <26:33>, 1, "женщину", 0, "null")@0@-1@40@40@-1@56@-1@-1@-1@-1@-1@-1@1032@236@-1@-1@-1@-1@-1@-1@-1@106269@50686@-1@-1@20119664@-1@-1@-1@@@ +87@0@87@6@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:13>, 1, "книги", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@6@(1, 0, 1, <0:1>, 1, "В", 0, "null") (2, 1, 2, <2:7>, 1, "какой", 0, "null") (3, 2, 3, <8:13>, 1, "книги", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "видит", 0, "null") (6, 5, 6, <25:32>, 1, "женщину", 0, "null")@0@-1@47@47@-1@49@-1@-1@-1@-1@-1@-1@1274@274@-1@-1@-1@-1@-1@-1@-1@109199@52272@-1@-1@25260516@-1@-1@-1@@@ +88@0@88@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +89@0@89@10@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:20>, 1, "questions", 0, "null") (3, 2, 3, <21:26>, 1, "about", 0, "null") (4, 3, 4, <27:34>, 1, "subject", 0, "null") (5, 4, 5, <35:38>, 1, "and", 0, "null") (6, 5, 6, <39:46>, 1, "adjunct", 0, "null") (7, 6, 7, <47:49>, 1, "of", 0, "null") (8, 7, 8, <50:62>, 1, "intransitive", 0, "null") (9, 8, 9, <63:69>, 1, "matrix", 0, "null") (10, 9, 10, <70:76>, 1, "clause", 0, "null")@10@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:20>, 1, "questions", 0, "null") (3, 2, 3, <21:26>, 1, "about", 0, "null") (4, 3, 4, <27:34>, 1, "subject", 0, "null") (5, 4, 5, <35:38>, 1, "and", 0, "null") (6, 5, 6, <39:46>, 1, "adjunct", 0, "null") (7, 6, 7, <47:49>, 1, "of", 0, "null") (8, 7, 8, <50:62>, 1, "intransitive", 0, "null") (9, 8, 9, <63:69>, 1, "matrix", 0, "null") (10, 9, 10, <70:76>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@109199@52272@-1@-1@6392@-1@-1@-1@@post-reduction lexical gap@ +90@0@90@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "куда", 0, "null") (3, 2, 3, <9:13>, 1, "идет", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "куда", 0, "null") (3, 2, 3, <9:13>, 1, "идет", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@17@24@-1@-1@-1@-1@-1@-1@-1@109287@52318@-1@-1@581168@-1@-1@-1@@@ +91@0@91@3@(1, 0, 1, <0:4>, 1, "Кому", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Кому", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <10:14>, 1, "идет", 0, "null")@0@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@17@20@-1@-1@-1@-1@-1@-1@-1@109655@52367@-1@-1@439460@-1@-1@-1@@@ +92@0@92@3@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <9:13>, 1, "идет", 0, "null")@3@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <9:13>, 1, "идет", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@17@19@-1@-1@-1@-1@-1@-1@-1@109729@52408@-1@-1@562504@-1@-1@-1@@@ +93@0@93@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:9>, 1, "кто", 0, "null") (3, 2, 3, <10:14>, 1, "куда", 0, "null")@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:9>, 1, "кто", 0, "null") (3, 2, 3, <10:14>, 1, "куда", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@84@18@-1@-1@-1@-1@-1@-1@-1@110168@52522@-1@-1@1546768@-1@-1@-1@@@ +94@0@94@3@(1, 0, 1, <1:5>, 1, "Куда", 0, "null") (2, 1, 2, <6:10>, 1, "идет", 0, "null") (3, 2, 3, <11:14>, 1, "кто", 0, "null")@3@(1, 0, 1, <1:5>, 1, "Куда", 0, "null") (2, 1, 2, <6:10>, 1, "идет", 0, "null") (3, 2, 3, <11:14>, 1, "кто", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@124@29@-1@-1@-1@-1@-1@-1@-1@110703@52687@-1@-1@2141616@-1@-1@-1@@@ +95@0@95@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:10>, 1, "куда", 0, "null") (3, 2, 3, <11:14>, 1, "кто", 0, "null")@3@(1, 0, 1, <1:5>, 1, "Идет", 0, "null") (2, 1, 2, <6:10>, 1, "куда", 0, "null") (3, 2, 3, <11:14>, 1, "кто", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@118@20@-1@-1@-1@-1@-1@-1@-1@111063@52835@-1@-1@2149528@-1@-1@-1@@@ +96@0@96@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null") (3, 2, 3, <9:13>, 1, "куда", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null") (3, 2, 3, <9:13>, 1, "куда", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@90@29@-1@-1@-1@-1@-1@-1@-1@111408@52968@-1@-1@1645400@-1@-1@-1@@@ +97@0@97@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:9>, 1, "когда", 0, "null") (3, 2, 3, <10:13>, 1, "кто", 0, "null") (4, 3, 4, <14:17>, 1, "что", 0, "null") (5, 4, 5, <18:23>, 1, "купил", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:9>, 1, "когда", 0, "null") (3, 2, 3, <10:13>, 1, "кто", 0, "null") (4, 3, 4, <14:17>, 1, "что", 0, "null") (5, 4, 5, <18:23>, 1, "купил", 0, "null")@7@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@39@104@-1@-1@-1@-1@-1@-1@-1@111928@53138@-1@-1@2727248@-1@-1@-1@@@ +98@0@98@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:9>, 1, "когда", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:20>, 1, "купил", 0, "null") (5, 4, 5, <21:26>, 1, "книгу", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:9>, 1, "когда", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:20>, 1, "купил", 0, "null") (5, 4, 5, <21:26>, 1, "книгу", 0, "null")@4@-1@41@41@-1@41@-1@-1@-1@-1@-1@-1@711@304@-1@-1@-1@-1@-1@-1@-1@115399@54241@-1@-1@16446080@-1@-1@-1@@@ +99@0@99@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +100@0@100@10@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:27>, 1, "determiner", 0, "null") (4, 3, 4, <28:30>, 1, "in", 0, "null") (5, 4, 5, <31:34>, 1, "the", 0, "null") (6, 5, 6, <35:41>, 1, "object", 0, "null") (7, 6, 7, <42:44>, 1, "NP", 0, "null") (8, 7, 8, <45:47>, 1, "in", 0, "null") (9, 8, 9, <48:56>, 1, "embedded", 0, "null") (10, 9, 10, <57:63>, 1, "clause", 0, "null")@10@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:16>, 1, "about", 0, "null") (3, 2, 3, <17:27>, 1, "determiner", 0, "null") (4, 3, 4, <28:30>, 1, "in", 0, "null") (5, 4, 5, <31:34>, 1, "the", 0, "null") (6, 5, 6, <35:41>, 1, "object", 0, "null") (7, 6, 7, <42:44>, 1, "NP", 0, "null") (8, 7, 8, <45:47>, 1, "in", 0, "null") (9, 8, 9, <48:56>, 1, "embedded", 0, "null") (10, 9, 10, <57:63>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@116367@54277@-1@-1@6312@-1@-1@-1@@post-reduction lexical gap@ +101@0@101@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:12>, 1, "книг", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:12>, 1, "книг", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@59@82@-1@-1@-1@-1@-1@-1@-1@116717@54430@-1@-1@2054648@-1@-1@-1@@@ +102@0@102@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:12>, 1, "Иван", 0, "null") (3, 2, 3, <13:17>, 1, "книг", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:12>, 1, "Иван", 0, "null") (3, 2, 3, <13:17>, 1, "книг", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@50@125@-1@-1@-1@-1@-1@-1@-1@117492@54629@-1@-1@2330008@-1@-1@-1@@@ +103@0@103@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:13>, 1, "книгу", 0, "null") (3, 2, 3, <14:18>, 1, "Иван", 0, "null") (4, 3, 4, <19:25>, 1, "читает", 0, "null")@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:13>, 1, "книгу", 0, "null") (3, 2, 3, <14:18>, 1, "Иван", 0, "null") (4, 3, 4, <19:25>, 1, "читает", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@51@65@-1@-1@-1@-1@-1@-1@-1@117940@54765@-1@-1@1566804@-1@-1@-1@@@ +104@0@104@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:12>, 1, "Иван", 0, "null") (3, 2, 3, <13:19>, 1, "читает", 0, "null") (4, 3, 4, <20:24>, 1, "книг", 0, "null")@4@(1, 0, 1, <0:7>, 1, "Сколько", 0, "null") (2, 1, 2, <8:12>, 1, "Иван", 0, "null") (3, 2, 3, <13:19>, 1, "читает", 0, "null") (4, 3, 4, <20:24>, 1, "книг", 0, "null")@1@-1@16@16@-1@17@-1@-1@-1@-1@-1@-1@342@145@-1@-1@-1@-1@-1@-1@-1@118879@55264@-1@-1@7605728@-1@-1@-1@@@ +105@0@105@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:12>, 1, "сколько", 0, "null") (3, 2, 3, <13:17>, 1, "книг", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:12>, 1, "сколько", 0, "null") (3, 2, 3, <13:17>, 1, "книг", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@59@129@-1@-1@-1@-1@-1@-1@-1@119534@55468@-1@-1@2452904@-1@-1@-1@@@ +106@0@106@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "читает", 0, "null") (3, 2, 3, <12:19>, 1, "сколько", 0, "null") (4, 3, 4, <20:24>, 1, "книг", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "читает", 0, "null") (3, 2, 3, <12:19>, 1, "сколько", 0, "null") (4, 3, 4, <20:24>, 1, "книг", 0, "null")@1@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@342@95@-1@-1@-1@-1@-1@-1@-1@120449@55925@-1@-1@7055024@-1@-1@-1@@@ +107@0@107@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:12>, 1, "сколько", 0, "null") (3, 2, 3, <13:19>, 1, "читает", 0, "null") (4, 3, 4, <20:24>, 1, "книг", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:12>, 1, "сколько", 0, "null") (3, 2, 3, <13:19>, 1, "читает", 0, "null") (4, 3, 4, <20:24>, 1, "книг", 0, "null")@0@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@220@93@-1@-1@-1@-1@-1@-1@-1@121200@56254@-1@-1@4553600@-1@-1@-1@@@ +108@0@108@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "читает", 0, "null") (3, 2, 3, <12:16>, 1, "книг", 0, "null") (4, 3, 4, <17:24>, 1, "сколько", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "читает", 0, "null") (3, 2, 3, <12:16>, 1, "книг", 0, "null") (4, 3, 4, <17:24>, 1, "сколько", 0, "null")@0@-1@26@26@-1@27@-1@-1@-1@-1@-1@-1@900@137@-1@-1@-1@-1@-1@-1@-1@122851@57303@-1@-1@17887872@-1@-1@-1@@@ +109@0@109@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +110@0@110@3@(1, 0, 1, <0:7>, 1, "Который", 0, "null") (2, 1, 2, <8:15>, 1, "человек", 0, "null") (3, 2, 3, <16:23>, 1, "приехал", 0, "null")@3@(1, 0, 1, <0:7>, 1, "Который", 0, "null") (2, 1, 2, <8:15>, 1, "человек", 0, "null") (3, 2, 3, <16:23>, 1, "приехал", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@45@26@-1@-1@-1@-1@-1@-1@-1@122984@57377@-1@-1@1034008@-1@-1@-1@@@ +111@0@111@3@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:13>, 1, "человек", 0, "null") (3, 2, 3, <14:21>, 1, "приехал", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:13>, 1, "человек", 0, "null") (3, 2, 3, <14:21>, 1, "приехал", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@66@29@-1@-1@-1@-1@-1@-1@-1@123459@57488@-1@-1@1370192@-1@-1@-1@@@ +112@0@112@3@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:13>, 1, "приехал", 0, "null") (3, 2, 3, <14:21>, 1, "человек", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:13>, 1, "приехал", 0, "null") (3, 2, 3, <14:21>, 1, "человек", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@91@24@-1@-1@-1@-1@-1@-1@-1@123976@57619@-1@-1@1633736@-1@-1@-1@@@ +113@0@113@3@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:14>, 1, "человек", 0, "null") (3, 2, 3, <15:22>, 1, "приехал", 0, "null")@3@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:14>, 1, "человек", 0, "null") (3, 2, 3, <15:22>, 1, "приехал", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@36@19@-1@-1@-1@-1@-1@-1@-1@124234@57684@-1@-1@724856@-1@-1@-1@@@ +114@0@114@3@(1, 0, 1, <0:6>, 1, "Какому", 0, "null") (2, 1, 2, <7:14>, 1, "человек", 0, "null") (3, 2, 3, <15:22>, 1, "приехал", 0, "null")@3@(1, 0, 1, <0:6>, 1, "Какому", 0, "null") (2, 1, 2, <7:14>, 1, "человек", 0, "null") (3, 2, 3, <15:22>, 1, "приехал", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@29@18@-1@-1@-1@-1@-1@-1@-1@124331@57735@-1@-1@618216@-1@-1@-1@@@ +115@0@115@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <12:16>, 1, "Иван", 0, "null") (4, 3, 4, <17:23>, 1, "читает", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <12:16>, 1, "Иван", 0, "null") (4, 3, 4, <17:23>, 1, "читает", 0, "null")@2@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@61@81@-1@-1@-1@-1@-1@-1@-1@124671@57890@-1@-1@2120936@-1@-1@-1@@@ +116@0@116@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "читает", 0, "null") (4, 3, 4, <18:23>, 1, "книгу", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "читает", 0, "null") (4, 3, 4, <18:23>, 1, "книгу", 0, "null")@1@-1@15@15@-1@15@-1@-1@-1@-1@-1@-1@344@144@-1@-1@-1@-1@-1@-1@-1@125968@58409@-1@-1@7649360@-1@-1@-1@@@ +117@0@117@4@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:12>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@4@(1, 0, 1, <0:6>, 1, "Какого", 0, "null") (2, 1, 2, <7:12>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:24>, 1, "читает", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@59@66@-1@-1@-1@-1@-1@-1@-1@126464@58556@-1@-1@1700596@-1@-1@-1@@@ +118@0@118@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@2@-1@23@23@-1@23@-1@-1@-1@-1@-1@-1@725@159@-1@-1@-1@-1@-1@-1@-1@127956@59453@-1@-1@14961616@-1@-1@-1@@@ +119@0@119@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книга", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книга", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@0@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@344@74@-1@-1@-1@-1@-1@-1@-1@129045@59906@-1@-1@6715504@-1@-1@-1@@@ +120@0@120@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книги", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книги", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@0@-1@24@24@-1@25@-1@-1@-1@-1@-1@-1@755@151@-1@-1@-1@-1@-1@-1@-1@130655@60833@-1@-1@14998720@-1@-1@-1@@@ +121@0@121@4@(1, 0, 1, <0:5>, 1, "Какие", 0, "null") (2, 1, 2, <6:11>, 1, "книги", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какие", 0, "null") (2, 1, 2, <6:11>, 1, "книги", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@2@-1@32@32@-1@34@-1@-1@-1@-1@-1@-1@944@197@-1@-1@-1@-1@-1@-1@-1@132787@61995@-1@-1@19304576@-1@-1@-1@@@ +122@0@122@4@(1, 0, 1, <0:5>, 1, "Какие", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какие", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <12:18>, 1, "читает", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null")@0@-1@17@17@-1@17@-1@-1@-1@-1@-1@-1@559@116@-1@-1@-1@-1@-1@-1@-1@134357@62701@-1@-1@11019600@-1@-1@-1@@@ +123@0@123@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:9>, 1, "сон", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:20>, 1, "Иван", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:9>, 1, "сон", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:20>, 1, "Иван", 0, "null")@0@-1@49@49@-1@49@-1@-1@-1@-1@-1@-1@1303@268@-1@-1@-1@-1@-1@-1@-1@137101@64315@-1@-1@25669696@-1@-1@-1@@@ +124@0@124@4@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:9>, 1, "сон", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:20>, 1, "Иван", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Какой", 0, "null") (2, 1, 2, <6:9>, 1, "сон", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:20>, 1, "Иван", 0, "null")@3@-1@64@64@-1@66@-1@-1@-1@-1@-1@-1@1647@342@-1@-1@-1@-1@-1@-1@-1@141326@66351@-1@-1@33452176@-1@-1@-1@@@ +125@0@125@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +126@0@126@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +127@0@127@2@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:22>, 1, "proposition", 0, "null")@2@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:22>, 1, "proposition", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@141849@66377@-1@-1@1424@-1@-1@-1@@post-reduction lexical gap@ +128@0@128@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:34>, 1, "лежит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:34>, 1, "лежит", 0, "null")@0@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@435@84@-1@-1@-1@-1@-1@-1@-1@142770@66912@-1@-1@8168976@-1@-1@-1@@@ +129@0@129@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:30>, 1, "лежит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:30>, 1, "лежит", 0, "null")@1@-1@47@47@-1@52@-1@-1@-1@-1@-1@-1@389@294@-1@-1@-1@-1@-1@-1@-1@144228@67609@-1@-1@10702576@-1@-1@-1@@@ +130@0@130@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:20>, 1, "студент", 0, "null") (4, 3, 4, <21:26>, 1, "лежит", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:20>, 1, "студент", 0, "null") (4, 3, 4, <21:26>, 1, "лежит", 0, "null")@1@-1@48@48@-1@49@-1@-1@-1@-1@-1@-1@487@333@-1@-1@-1@-1@-1@-1@-1@146319@68455@-1@-1@12821384@-1@-1@-1@@@ +131@0@131@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:24>, 1, "студент", 0, "null") (4, 3, 4, <25:31>, 1, "читает", 0, "null") (5, 4, 5, <32:37>, 1, "книгу", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:24>, 1, "студент", 0, "null") (4, 3, 4, <25:31>, 1, "читает", 0, "null") (5, 4, 5, <32:37>, 1, "книгу", 0, "null")@0@-1@60@60@-1@60@-1@-1@-1@-1@-1@-1@1054@330@-1@-1@-1@-1@-1@-1@-1@150675@69873@-1@-1@23844320@-1@-1@-1@@@ +132@0@132@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@1@-1@1778@1778@-1@1842@-1@-1@-1@-1@-1@-1@5000@2309@-1@-1@-1@-1@-1@-1@-1@164578@77205@-1@-1@156616704@-1@-1@-1@@@ +133@0@133@6@(1, 0, 1, <0:6>, 1, "Думает", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:6>, 1, "Думает", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@1@-1@188@188@-1@193@-1@-1@-1@-1@-1@-1@1335@517@-1@-1@-1@-1@-1@-1@-1@169441@79097@-1@-1@35102824@-1@-1@-1@@@ +134@0@134@6@(1, 0, 1, <0:6>, 1, "Думает", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <13:20>, 1, "студент", 0, "null") (4, 3, 4, <21:27>, 1, "читает", 0, "null") (5, 4, 5, <28:33>, 1, "книгу", 0, "null") (6, 5, 6, <34:37>, 1, "что", 0, "null")@6@(1, 0, 1, <0:6>, 1, "Думает", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <13:20>, 1, "студент", 0, "null") (4, 3, 4, <21:27>, 1, "читает", 0, "null") (5, 4, 5, <28:33>, 1, "книгу", 0, "null") (6, 5, 6, <34:37>, 1, "что", 0, "null")@0@-1@226@226@-1@229@-1@-1@-1@-1@-1@-1@2895@475@-1@-1@-1@-1@-1@-1@-1@176168@82507@-1@-1@71480032@-1@-1@-1@@@ +135@0@135@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:23>, 1, "читает", 0, "null") (5, 4, 5, <24:29>, 1, "книгу", 0, "null") (6, 5, 6, <30:37>, 1, "студент", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:23>, 1, "читает", 0, "null") (5, 4, 5, <24:29>, 1, "книгу", 0, "null") (6, 5, 6, <30:37>, 1, "студент", 0, "null")@1@-1@2224@2224@-1@2271@-1@-1@-1@-1@-1@-1@8764@3156@-1@-1@-1@-1@-1@-1@-1@198369@94448@-1@-1@254689224@-1@-1@-1@@@ +136@0@136@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:22>, 1, "книгу", 0, "null") (5, 4, 5, <23:29>, 1, "читает", 0, "null") (6, 5, 6, <30:37>, 1, "студент", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:22>, 1, "книгу", 0, "null") (5, 4, 5, <23:29>, 1, "читает", 0, "null") (6, 5, 6, <30:37>, 1, "студент", 0, "null")@1@-1@1041@1041@-1@1065@-1@-1@-1@-1@-1@-1@6458@1837@-1@-1@-1@-1@-1@-1@-1@214118@102779@-1@-1@178209184@-1@-1@-1@@@ +137@0@137@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <9:16>, 1, "студент", 0, "null") (4, 3, 4, <17:23>, 1, "читает", 0, "null") (5, 4, 5, <24:29>, 1, "книгу", 0, "null") (6, 5, 6, <30:36>, 1, "думает", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <9:16>, 1, "студент", 0, "null") (4, 3, 4, <17:23>, 1, "читает", 0, "null") (5, 4, 5, <24:29>, 1, "книгу", 0, "null") (6, 5, 6, <30:36>, 1, "думает", 0, "null")@1@-1@3364@3364@-1@3436@-1@-1@-1@-1@-1@-1@1235@4844@-1@-1@-1@-1@-1@-1@-1@232562@108890@-1@-1@107500384@-1@-1@-1@@@ +138@0@138@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:12>, 1, "студент", 0, "null") (3, 2, 3, <13:19>, 1, "читает", 0, "null") (4, 3, 4, <20:25>, 1, "книгу", 0, "null") (5, 4, 5, <26:32>, 1, "думает", 0, "null") (6, 5, 6, <33:36>, 1, "что", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:12>, 1, "студент", 0, "null") (3, 2, 3, <13:19>, 1, "читает", 0, "null") (4, 3, 4, <20:25>, 1, "книгу", 0, "null") (5, 4, 5, <26:32>, 1, "думает", 0, "null") (6, 5, 6, <33:36>, 1, "что", 0, "null")@0@-1@2860@2860@-1@2923@-1@-1@-1@-1@-1@-1@19443@3034@-1@-1@-1@-1@-1@-1@-1@274457@131399@-1@-1@508681112@-1@-1@-1@@@ +139@0@139@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "что", 0, "null") (4, 3, 4, <16:23>, 1, "студент", 0, "null") (5, 4, 5, <24:29>, 1, "лежит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "что", 0, "null") (4, 3, 4, <16:23>, 1, "студент", 0, "null") (5, 4, 5, <24:29>, 1, "лежит", 0, "null")@1@-1@55@55@-1@55@-1@-1@-1@-1@-1@-1@767@350@-1@-1@-1@-1@-1@-1@-1@276680@132541@-1@-1@17761248@-1@-1@-1@@@ +140@0@140@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:19>, 1, "студент", 0, "null") (4, 3, 4, <20:25>, 1, "лежит", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:19>, 1, "студент", 0, "null") (4, 3, 4, <20:25>, 1, "лежит", 0, "null")@1@-1@65@65@-1@65@-1@-1@-1@-1@-1@-1@930@410@-1@-1@-1@-1@-1@-1@-1@279739@133920@-1@-1@21351016@-1@-1@-1@@@ +141@0@141@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +142@0@142@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +143@0@143@7@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:19>, 1, "question", 0, "null") (3, 2, 3, <20:25>, 1, "about", 0, "null") (4, 3, 4, <26:33>, 1, "subject", 0, "null") (5, 4, 5, <34:36>, 1, "of", 0, "null") (6, 5, 6, <37:49>, 1, "intransitive", 0, "null") (7, 6, 7, <50:56>, 1, "clause", 0, "null")@7@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:19>, 1, "question", 0, "null") (3, 2, 3, <20:25>, 1, "about", 0, "null") (4, 3, 4, <26:33>, 1, "subject", 0, "null") (5, 4, 5, <34:36>, 1, "of", 0, "null") (6, 5, 6, <37:49>, 1, "intransitive", 0, "null") (7, 6, 7, <50:56>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@280057@133929@-1@-1@4532@-1@-1@-1@@post-reduction lexical gap@ +144@0@144@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:25>, 1, "идет", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:25>, 1, "идет", 0, "null")@2@-1@30@30@-1@30@-1@-1@-1@-1@-1@-1@408@245@-1@-1@-1@-1@-1@-1@-1@281372@134596@-1@-1@10139904@-1@-1@-1@@@ +145@0@145@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "кто", 0, "null") (4, 3, 4, <17:21>, 1, "идет", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "кто", 0, "null") (4, 3, 4, <17:21>, 1, "идет", 0, "null")@0@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@362@66@-1@-1@-1@-1@-1@-1@-1@282556@135052@-1@-1@6753720@-1@-1@-1@@@ +146@0@146@4@(1, 0, 1, <0:10>, 1, "Спрашивает", 0, "null") (2, 1, 2, <11:15>, 1, "Иван", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:25>, 1, "идет", 0, "null")@4@(1, 0, 1, <0:10>, 1, "Спрашивает", 0, "null") (2, 1, 2, <11:15>, 1, "Иван", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:25>, 1, "идет", 0, "null")@2@-1@13@13@-1@13@-1@-1@-1@-1@-1@-1@351@84@-1@-1@-1@-1@-1@-1@-1@283259@135503@-1@-1@7039944@-1@-1@-1@@@ +147@0@147@4@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:25>, 1, "спрашивает", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:25>, 1, "спрашивает", 0, "null")@1@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@145@99@-1@-1@-1@-1@-1@-1@-1@284317@135779@-1@-1@3516336@-1@-1@-1@@@ +148@0@148@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:21>, 1, "кому", 0, "null") (4, 3, 4, <22:26>, 1, "идет", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:21>, 1, "кому", 0, "null") (4, 3, 4, <22:26>, 1, "идет", 0, "null")@0@-1@9@9@-1@9@-1@-1@-1@-1@-1@-1@345@59@-1@-1@-1@-1@-1@-1@-1@285167@136203@-1@-1@6470840@-1@-1@-1@@@ +149@0@149@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:26>, 1, "идешь", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:26>, 1, "идешь", 0, "null")@0@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@408@75@-1@-1@-1@-1@-1@-1@-1@286004@136700@-1@-1@7697400@-1@-1@-1@@@ +150@0@150@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "кто", 0, "null") (4, 3, 4, <16:20>, 1, "идет", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "кто", 0, "null") (4, 3, 4, <16:20>, 1, "идет", 0, "null")@2@-1@40@40@-1@40@-1@-1@-1@-1@-1@-1@740@294@-1@-1@-1@-1@-1@-1@-1@287973@137757@-1@-1@16289224@-1@-1@-1@@@ +151@0@151@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +152@0@152@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +153@0@153@7@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:19>, 1, "question", 0, "null") (3, 2, 3, <20:25>, 1, "about", 0, "null") (4, 3, 4, <26:32>, 1, "object", 0, "null") (5, 4, 5, <33:35>, 1, "of", 0, "null") (6, 5, 6, <36:48>, 1, "intransitive", 0, "null") (7, 6, 7, <49:55>, 1, "clause", 0, "null")@7@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:19>, 1, "question", 0, "null") (3, 2, 3, <20:25>, 1, "about", 0, "null") (4, 3, 4, <26:32>, 1, "object", 0, "null") (5, 4, 5, <33:35>, 1, "of", 0, "null") (6, 5, 6, <36:48>, 1, "intransitive", 0, "null") (7, 6, 7, <49:55>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@288419@137773@-1@-1@4532@-1@-1@-1@@post-reduction lexical gap@ +154@0@154@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:26>, 1, "книгу", 0, "null") (5, 4, 5, <27:33>, 1, "читает", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:26>, 1, "книгу", 0, "null") (5, 4, 5, <27:33>, 1, "читает", 0, "null")@2@-1@306@306@-1@317@-1@-1@-1@-1@-1@-1@431@996@-1@-1@-1@-1@-1@-1@-1@292087@139219@-1@-1@24027824@-1@-1@-1@@@ +155@0@155@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:27>, 1, "читает", 0, "null") (5, 4, 5, <28:33>, 1, "книгу", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:27>, 1, "читает", 0, "null") (5, 4, 5, <28:33>, 1, "книгу", 0, "null")@2@-1@460@460@-1@464@-1@-1@-1@-1@-1@-1@2740@1342@-1@-1@-1@-1@-1@-1@-1@301663@143344@-1@-1@80400384@-1@-1@-1@@@ +156@0@156@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null")@2@-1@152@152@-1@153@-1@-1@-1@-1@-1@-1@435@618@-1@-1@-1@-1@-1@-1@-1@305248@144443@-1@-1@17158520@-1@-1@-1@@@ +157@0@157@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null")@0@-1@278@278@-1@294@-1@-1@-1@-1@-1@-1@389@760@-1@-1@-1@-1@-1@-1@-1@308857@145636@-1@-1@19708812@-1@-1@-1@@@ +158@0@158@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:22>, 1, "какую", 0, "null") (4, 3, 4, <23:28>, 1, "книгу", 0, "null") (5, 4, 5, <29:36>, 1, "студент", 0, "null") (6, 5, 6, <37:43>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:22>, 1, "какую", 0, "null") (4, 3, 4, <23:28>, 1, "книгу", 0, "null") (5, 4, 5, <29:36>, 1, "студент", 0, "null") (6, 5, 6, <37:43>, 1, "читает", 0, "null")@3@-1@226@226@-1@228@-1@-1@-1@-1@-1@-1@398@784@-1@-1@-1@-1@-1@-1@-1@312162@146841@-1@-1@21047120@-1@-1@-1@@@ +159@0@159@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:22>, 1, "какую", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:37>, 1, "читает", 0, "null") (6, 5, 6, <38:43>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:22>, 1, "какую", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:37>, 1, "читает", 0, "null") (6, 5, 6, <38:43>, 1, "книгу", 0, "null")@1@-1@95@95@-1@103@-1@-1@-1@-1@-1@-1@681@546@-1@-1@-1@-1@-1@-1@-1@315930@148129@-1@-1@20501120@-1@-1@-1@@@ +160@0@160@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "что", 0, "null") (4, 3, 4, <16:22>, 1, "читает", 0, "null") (5, 4, 5, <23:30>, 1, "студент", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "что", 0, "null") (4, 3, 4, <16:22>, 1, "читает", 0, "null") (5, 4, 5, <23:30>, 1, "студент", 0, "null")@2@-1@1770@1770@-1@1795@-1@-1@-1@-1@-1@-1@8389@2909@-1@-1@-1@-1@-1@-1@-1@338624@159476@-1@-1@229052240@-1@-1@-1@@@ +161@0@161@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +162@0@162@10@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:19>, 1, "question", 0, "null") (3, 2, 3, <20:25>, 1, "about", 0, "null") (4, 3, 4, <26:30>, 1, "both", 0, "null") (5, 4, 5, <31:38>, 1, "subject", 0, "null") (6, 5, 6, <39:42>, 1, "and", 0, "null") (7, 6, 7, <43:49>, 1, "object", 0, "null") (8, 7, 8, <50:52>, 1, "of", 0, "null") (9, 8, 9, <53:65>, 1, "intransitive", 0, "null") (10, 9, 10, <66:72>, 1, "clause", 0, "null")@10@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:19>, 1, "question", 0, "null") (3, 2, 3, <20:25>, 1, "about", 0, "null") (4, 3, 4, <26:30>, 1, "both", 0, "null") (5, 4, 5, <31:38>, 1, "subject", 0, "null") (6, 5, 6, <39:42>, 1, "and", 0, "null") (7, 6, 7, <43:49>, 1, "object", 0, "null") (8, 7, 8, <50:52>, 1, "of", 0, "null") (9, 8, 9, <53:65>, 1, "intransitive", 0, "null") (10, 9, 10, <66:72>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@339870@159498@-1@-1@6384@-1@-1@-1@@post-reduction lexical gap@ +163@0@163@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:30>, 1, "видит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:30>, 1, "видит", 0, "null")@2@-1@88@88@-1@88@-1@-1@-1@-1@-1@-1@421@655@-1@-1@-1@-1@-1@-1@-1@342677@160608@-1@-1@16937088@-1@-1@-1@@@ +164@0@164@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "кто", 0, "null") (5, 4, 5, <25:30>, 1, "видит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "кто", 0, "null") (5, 4, 5, <25:30>, 1, "видит", 0, "null")@2@-1@59@59@-1@64@-1@-1@-1@-1@-1@-1@421@457@-1@-1@-1@-1@-1@-1@-1@345474@161539@-1@-1@13761712@-1@-1@-1@@@ +165@0@165@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:26>, 1, "видит", 0, "null") (5, 4, 5, <27:30>, 1, "что", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "кто", 0, "null") (4, 3, 4, <21:26>, 1, "видит", 0, "null") (5, 4, 5, <27:30>, 1, "что", 0, "null")@2@-1@898@898@-1@905@-1@-1@-1@-1@-1@-1@7419@1871@-1@-1@-1@-1@-1@-1@-1@364887@170885@-1@-1@189638904@-1@-1@-1@@@ +166@0@166@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:26>, 1, "видит", 0, "null") (5, 4, 5, <27:30>, 1, "кто", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:26>, 1, "видит", 0, "null") (5, 4, 5, <27:30>, 1, "кто", 0, "null")@2@-1@1242@1242@-1@1256@-1@-1@-1@-1@-1@-1@10729@2250@-1@-1@-1@-1@-1@-1@-1@389471@183920@-1@-1@266064432@-1@-1@-1@@@ +167@0@167@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "кто", 0, "null") (4, 3, 4, <17:20>, 1, "что", 0, "null") (5, 4, 5, <21:26>, 1, "видит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "кто", 0, "null") (4, 3, 4, <17:20>, 1, "что", 0, "null") (5, 4, 5, <21:26>, 1, "видит", 0, "null")@0@-1@18@18@-1@18@-1@-1@-1@-1@-1@-1@375@206@-1@-1@-1@-1@-1@-1@-1@391416@184551@-1@-1@8510292@-1@-1@-1@@@ +168@0@168@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "кто", 0, "null") (4, 3, 4, <16:19>, 1, "что", 0, "null") (5, 4, 5, <20:25>, 1, "видит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "кто", 0, "null") (4, 3, 4, <16:19>, 1, "что", 0, "null") (5, 4, 5, <20:25>, 1, "видит", 0, "null")@2@-1@101@101@-1@101@-1@-1@-1@-1@-1@-1@753@704@-1@-1@-1@-1@-1@-1@-1@395069@186051@-1@-1@23086168@-1@-1@-1@@@ +169@0@169@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +170@0@170@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +171@0@171@7@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:15>, 1, "that", 0, "null") (3, 2, 3, <16:22>, 1, "clause", 0, "null") (4, 3, 4, <23:27>, 1, "with", 0, "null") (5, 4, 5, <28:36>, 1, "question", 0, "null") (6, 5, 6, <37:39>, 1, "in", 0, "null") (7, 6, 7, <40:42>, 1, "it", 0, "null")@7@(1, 0, 1, <2:10>, 1, "Embedded", 0, "null") (2, 1, 2, <11:15>, 1, "that", 0, "null") (3, 2, 3, <16:22>, 1, "clause", 0, "null") (4, 3, 4, <23:27>, 1, "with", 0, "null") (5, 4, 5, <28:36>, 1, "question", 0, "null") (6, 5, 6, <37:39>, 1, "in", 0, "null") (7, 6, 7, <40:42>, 1, "it", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@395711@186070@-1@-1@4360@-1@-1@-1@@post-reduction lexical gap@ +172@0@172@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:20>, 1, "кто", 0, "null") (5, 4, 5, <21:25>, 1, "идет", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:20>, 1, "кто", 0, "null") (5, 4, 5, <21:25>, 1, "идет", 0, "null")@0@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@375@70@-1@-1@-1@-1@-1@-1@-1@396518@186529@-1@-1@6992064@-1@-1@-1@@@ +173@0@173@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "кто", 0, "null") (5, 4, 5, <25:29>, 1, "идет", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "кто", 0, "null") (5, 4, 5, <25:29>, 1, "идет", 0, "null")@0@-1@11@11@-1@11@-1@-1@-1@-1@-1@-1@421@88@-1@-1@-1@-1@-1@-1@-1@397419@187056@-1@-1@8026928@-1@-1@-1@@@ +174@0@174@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null")@0@-1@19@19@-1@19@-1@-1@-1@-1@-1@-1@448@176@-1@-1@-1@-1@-1@-1@-1@398647@187708@-1@-1@9625064@-1@-1@-1@@@ +175@0@175@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null") (6, 5, 6, <36:41>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null") (6, 5, 6, <36:41>, 1, "книгу", 0, "null")@0@-1@283@283@-1@285@-1@-1@-1@-1@-1@-1@3973@735@-1@-1@-1@-1@-1@-1@-1@406850@192441@-1@-1@96486784@-1@-1@-1@@@ +176@0@176@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "кто", 0, "null") (5, 4, 5, <25:28>, 1, "что", 0, "null") (6, 5, 6, <29:35>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "кто", 0, "null") (5, 4, 5, <25:28>, 1, "что", 0, "null") (6, 5, 6, <29:35>, 1, "читает", 0, "null")@0@-1@16@16@-1@23@-1@-1@-1@-1@-1@-1@434@164@-1@-1@-1@-1@-1@-1@-1@408010@193065@-1@-1@9192548@-1@-1@-1@@@ +177@0@177@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:20>, 1, "кто", 0, "null") (5, 4, 5, <21:24>, 1, "что", 0, "null") (6, 5, 6, <25:31>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:20>, 1, "кто", 0, "null") (5, 4, 5, <21:24>, 1, "что", 0, "null") (6, 5, 6, <25:31>, 1, "читает", 0, "null")@0@-1@13@13@-1@13@-1@-1@-1@-1@-1@-1@388@134@-1@-1@-1@-1@-1@-1@-1@409061@193609@-1@-1@7913136@-1@-1@-1@@@ +178@0@178@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "где", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:38>, 1, "лежит", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "где", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:38>, 1, "лежит", 0, "null")@0@-1@15@15@-1@16@-1@-1@-1@-1@-1@-1@501@122@-1@-1@-1@-1@-1@-1@-1@410225@194250@-1@-1@9727648@-1@-1@-1@@@ +179@0@179@7@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "где", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:38>, 1, "купил", 0, "null") (7, 6, 7, <39:44>, 1, "книгу", 0, "null")@7@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "где", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:38>, 1, "купил", 0, "null") (7, 6, 7, <39:44>, 1, "книгу", 0, "null")@0@-1@368@368@-1@374@-1@-1@-1@-1@-1@-1@4579@1019@-1@-1@-1@-1@-1@-1@-1@420385@199901@-1@-1@104604048@-1@-1@-1@@@ +180@0@180@7@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "как", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null") (7, 6, 7, <40:45>, 1, "книгу", 0, "null")@7@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "что", 0, "null") (4, 3, 4, <21:24>, 1, "как", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null") (7, 6, 7, <40:45>, 1, "книгу", 0, "null")@0@-1@368@368@-1@369@-1@-1@-1@-1@-1@-1@4578@1020@-1@-1@-1@-1@-1@-1@-1@430553@205553@-1@-1@104647576@-1@-1@-1@@@ +181@0@181@8@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:25>, 1, "где", 0, "null") (6, 5, 6, <26:31>, 1, "купил", 0, "null") (7, 6, 7, <32:35>, 1, "эту", 0, "null") (8, 7, 8, <36:41>, 1, "книгу", 0, "null")@8@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:25>, 1, "где", 0, "null") (6, 5, 6, <26:31>, 1, "купил", 0, "null") (7, 6, 7, <32:35>, 1, "эту", 0, "null") (8, 7, 8, <36:41>, 1, "книгу", 0, "null")@0@-1@47@47@-1@48@-1@-1@-1@-1@-1@-1@1329@339@-1@-1@-1@-1@-1@-1@-1@433930@207252@-1@-1@26533264@-1@-1@-1@@@ +182@0@182@5@(1, 0, 1, <1:5>, 1, "Иван", 0, "null") (2, 1, 2, <6:11>, 1, "знает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:20>, 1, "кто", 0, "null") (5, 4, 5, <21:25>, 1, "идет", 0, "null")@5@(1, 0, 1, <1:5>, 1, "Иван", 0, "null") (2, 1, 2, <6:11>, 1, "знает", 0, "null") (3, 2, 3, <13:16>, 1, "что", 0, "null") (4, 3, 4, <17:20>, 1, "кто", 0, "null") (5, 4, 5, <21:25>, 1, "идет", 0, "null")@0@-1@25@25@-1@25@-1@-1@-1@-1@-1@-1@753@137@-1@-1@-1@-1@-1@-1@-1@435522@208169@-1@-1@14176448@-1@-1@-1@@@ +183@0@183@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +184@0@184@6@(1, 0, 1, <2:13>, 1, "Questioning", 0, "null") (2, 1, 2, <14:21>, 1, "adjunct", 0, "null") (3, 2, 3, <22:24>, 1, "of", 0, "null") (4, 3, 4, <25:28>, 1, "the", 0, "null") (5, 4, 5, <29:37>, 1, "embedded", 0, "null") (6, 5, 6, <38:44>, 1, "clause", 0, "null")@6@(1, 0, 1, <2:13>, 1, "Questioning", 0, "null") (2, 1, 2, <14:21>, 1, "adjunct", 0, "null") (3, 2, 3, <22:24>, 1, "of", 0, "null") (4, 3, 4, <25:28>, 1, "the", 0, "null") (5, 4, 5, <29:37>, 1, "embedded", 0, "null") (6, 5, 6, <38:44>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@435522@208169@-1@-1@3808@-1@-1@-1@@post-reduction lexical gap@ +185@0@185@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "где", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:34>, 1, "лежит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "где", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:34>, 1, "лежит", 0, "null")@2@-1@83@83@-1@83@-1@-1@-1@-1@-1@-1@835@472@-1@-1@-1@-1@-1@-1@-1@438250@209491@-1@-1@21027952@-1@-1@-1@@@ +186@0@186@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null") (6, 5, 6, <36:41>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:28>, 1, "студент", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null") (6, 5, 6, <36:41>, 1, "книгу", 0, "null")@3@-1@3157@3157@-1@3217@-1@-1@-1@-1@-1@-1@7243@3463@-1@-1@-1@-1@-1@-1@-1@461718@220250@-1@-1@198463096@-1@-1@-1@@@ +187@0@187@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "как", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "как", 0, "null") (4, 3, 4, <17:24>, 1, "студент", 0, "null") (5, 4, 5, <25:31>, 1, "читает", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@1@-1@1264@1264@-1@1284@-1@-1@-1@-1@-1@-1@3949@1859@-1@-1@-1@-1@-1@-1@-1@478293@226125@-1@-1@110003840@-1@-1@-1@@@ +188@0@188@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:23>, 1, "студент", 0, "null") (5, 4, 5, <24:29>, 1, "лежит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:23>, 1, "студент", 0, "null") (5, 4, 5, <24:29>, 1, "лежит", 0, "null")@3@-1@157@157@-1@158@-1@-1@-1@-1@-1@-1@1617@764@-1@-1@-1@-1@-1@-1@-1@484605@228546@-1@-1@39065344@-1@-1@-1@@@ +189@0@189@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "как", 0, "null") (4, 3, 4, <16:23>, 1, "студент", 0, "null") (5, 4, 5, <24:30>, 1, "читает", 0, "null") (6, 5, 6, <31:36>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "как", 0, "null") (4, 3, 4, <16:23>, 1, "студент", 0, "null") (5, 4, 5, <24:30>, 1, "читает", 0, "null") (6, 5, 6, <31:36>, 1, "книгу", 0, "null")@4@-1@5572@5572@-1@5686@-1@-1@-1@-1@-1@-1@10671@5108@-1@-1@-1@-1@-1@-1@-1@521285@244398@-1@-1@297004688@-1@-1@-1@@@ +190@0@190@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +191@0@191@1@(1, 0, 1, <2:10>, 1, "Negation", 0, "null")@1@(1, 0, 1, <2:10>, 1, "Negation", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@525028@244445@-1@-1@784@-1@-1@-1@@post-reduction lexical gap@ +192@0@192@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:18>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:24>, 1, "куда", 0, "null") (5, 4, 5, <25:29>, 1, "идет", 0, "null") (6, 5, 6, <30:37>, 1, "студент", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:18>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:24>, 1, "куда", 0, "null") (5, 4, 5, <25:29>, 1, "идет", 0, "null") (6, 5, 6, <30:37>, 1, "студент", 0, "null")@3@-1@206@206@-1@208@-1@-1@-1@-1@-1@-1@2782@1157@-1@-1@-1@-1@-1@-1@-1@533243@248396@-1@-1@67128480@-1@-1@-1@@@ +193@0@193@6@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null") (3, 2, 3, <10:17>, 1, "студент", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null") (5, 4, 5, <24:26>, 1, "не", 0, "null") (6, 5, 6, <27:37>, 1, "спрашивает", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Куда", 0, "null") (2, 1, 2, <5:9>, 1, "идет", 0, "null") (3, 2, 3, <10:17>, 1, "студент", 0, "null") (4, 3, 4, <19:23>, 1, "Иван", 0, "null") (5, 4, 5, <24:26>, 1, "не", 0, "null") (6, 5, 6, <27:37>, 1, "спрашивает", 0, "null")@1@-1@11@11@-1@11@-1@-1@-1@-1@-1@-1@283@113@-1@-1@-1@-1@-1@-1@-1@534944@248834@-1@-1@5818304@-1@-1@-1@@@ +194@0@194@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:18>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:23>, 1, "кто", 0, "null") (5, 4, 5, <24:28>, 1, "идет", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:18>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:23>, 1, "кто", 0, "null") (5, 4, 5, <24:28>, 1, "идет", 0, "null")@2@-1@23@23@-1@23@-1@-1@-1@-1@-1@-1@446@244@-1@-1@-1@-1@-1@-1@-1@536715@249547@-1@-1@10633120@-1@-1@-1@@@ +195@0@195@5@(1, 0, 1, <0:2>, 1, "Не", 0, "null") (2, 1, 2, <3:13>, 1, "спрашивает", 0, "null") (3, 2, 3, <14:18>, 1, "Иван", 0, "null") (4, 3, 4, <20:23>, 1, "кто", 0, "null") (5, 4, 5, <24:28>, 1, "идет", 0, "null")@5@(1, 0, 1, <0:2>, 1, "Не", 0, "null") (2, 1, 2, <3:13>, 1, "спрашивает", 0, "null") (3, 2, 3, <14:18>, 1, "Иван", 0, "null") (4, 3, 4, <20:23>, 1, "кто", 0, "null") (5, 4, 5, <24:28>, 1, "идет", 0, "null")@2@-1@19@19@-1@19@-1@-1@-1@-1@-1@-1@486@112@-1@-1@-1@-1@-1@-1@-1@538210@250180@-1@-1@9797880@-1@-1@-1@@@ +196@0@196@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:17>, 1, "не", 0, "null") (5, 4, 5, <18:28>, 1, "спрашивает", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:8>, 1, "идет", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:17>, 1, "не", 0, "null") (5, 4, 5, <18:28>, 1, "спрашивает", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@153@79@-1@-1@-1@-1@-1@-1@-1@539163@250439@-1@-1@3347136@-1@-1@-1@@@ +197@0@197@7@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:18>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:25>, 1, "какую", 0, "null") (5, 4, 5, <26:31>, 1, "книгу", 0, "null") (6, 5, 6, <32:39>, 1, "студент", 0, "null") (7, 6, 7, <40:46>, 1, "читает", 0, "null")@7@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:18>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:25>, 1, "какую", 0, "null") (5, 4, 5, <26:31>, 1, "книгу", 0, "null") (6, 5, 6, <32:39>, 1, "студент", 0, "null") (7, 6, 7, <40:46>, 1, "читает", 0, "null")@3@-1@127@127@-1@128@-1@-1@-1@-1@-1@-1@409@745@-1@-1@-1@-1@-1@-1@-1@542424@251622@-1@-1@19915176@-1@-1@-1@@@ +198@0@198@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:13>, 1, "знает", 0, "null") (4, 3, 4, <15:19>, 1, "куда", 0, "null") (5, 4, 5, <20:24>, 1, "идет", 0, "null") (6, 5, 6, <25:32>, 1, "студент", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:7>, 1, "не", 0, "null") (3, 2, 3, <8:13>, 1, "знает", 0, "null") (4, 3, 4, <15:19>, 1, "куда", 0, "null") (5, 4, 5, <20:24>, 1, "идет", 0, "null") (6, 5, 6, <25:32>, 1, "студент", 0, "null")@4@-1@321@321@-1@325@-1@-1@-1@-1@-1@-1@3864@1548@-1@-1@-1@-1@-1@-1@-1@555061@257093@-1@-1@92765728@-1@-1@-1@@@ +199@0@199@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +200@0@200@10@(1, 0, 1, <2:9>, 1, "Fronted", 0, "null") (2, 1, 2, <10:18>, 1, "question", 0, "null") (3, 2, 3, <19:24>, 1, "about", 0, "null") (4, 3, 4, <25:32>, 1, "subject", 0, "null") (5, 4, 5, <34:40>, 1, "object", 0, "null") (6, 5, 6, <42:44>, 1, "or", 0, "null") (7, 6, 7, <45:52>, 1, "adjunct", 0, "null") (8, 7, 8, <53:55>, 1, "of", 0, "null") (9, 8, 9, <56:64>, 1, "embedded", 0, "null") (10, 9, 10, <65:71>, 1, "clause", 0, "null")@10@(1, 0, 1, <2:9>, 1, "Fronted", 0, "null") (2, 1, 2, <10:18>, 1, "question", 0, "null") (3, 2, 3, <19:24>, 1, "about", 0, "null") (4, 3, 4, <25:32>, 1, "subject", 0, "null") (5, 4, 5, <34:40>, 1, "object", 0, "null") (6, 5, 6, <42:44>, 1, "or", 0, "null") (7, 6, 7, <45:52>, 1, "adjunct", 0, "null") (8, 7, 8, <53:55>, 1, "of", 0, "null") (9, 8, 9, <56:64>, 1, "embedded", 0, "null") (10, 9, 10, <65:71>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@556262@257133@-1@-1@6288@-1@-1@-1@@post-reduction lexical gap@ +201@0@201@4@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:27>, 1, "идет", 0, "null")@4@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:27>, 1, "идет", 0, "null")@0@-1@16@16@-1@17@-1@-1@-1@-1@-1@-1@345@141@-1@-1@-1@-1@-1@-1@-1@557333@257631@-1@-1@7549172@-1@-1@-1@@@ +202@0@202@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:28>, 1, "книгу", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:28>, 1, "книгу", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null")@0@-1@216@216@-1@221@-1@-1@-1@-1@-1@-1@368@752@-1@-1@-1@-1@-1@-1@-1@561096@258768@-1@-1@18580148@-1@-1@-1@@@ +203@0@203@5@(1, 0, 1, <1:4>, 1, "Что", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:29>, 1, "читает", 0, "null") (5, 4, 5, <30:37>, 1, "студент", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Что", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:29>, 1, "читает", 0, "null") (5, 4, 5, <30:37>, 1, "студент", 0, "null")@0@-1@253@253@-1@256@-1@-1@-1@-1@-1@-1@3467@707@-1@-1@-1@-1@-1@-1@-1@569518@262964@-1@-1@83428664@-1@-1@-1@@@ +204@0@204@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "купил", 0, "null") (6, 5, 6, <37:42>, 1, "книгу", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "купил", 0, "null") (6, 5, 6, <37:42>, 1, "книгу", 0, "null")@0@-1@69@69@-1@73@-1@-1@-1@-1@-1@-1@1217@357@-1@-1@-1@-1@-1@-1@-1@574195@264566@-1@-1@26867296@-1@-1@-1@@@ +205@0@205@8@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:21>, 1, "что", 0, "null") (5, 4, 5, <22:29>, 1, "студент", 0, "null") (6, 5, 6, <30:35>, 1, "купил", 0, "null") (7, 6, 7, <36:39>, 1, "эту", 0, "null") (8, 7, 8, <40:45>, 1, "книгу", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:21>, 1, "что", 0, "null") (5, 4, 5, <22:29>, 1, "студент", 0, "null") (6, 5, 6, <30:35>, 1, "купил", 0, "null") (7, 6, 7, <36:39>, 1, "эту", 0, "null") (8, 7, 8, <40:45>, 1, "книгу", 0, "null")@4@-1@1427@1427@-1@1454@-1@-1@-1@-1@-1@-1@7545@2216@-1@-1@-1@-1@-1@-1@-1@591353@274562@-1@-1@205309608@-1@-1@-1@@@ +206@0@206@7@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "купил", 0, "null") (6, 5, 6, <32:35>, 1, "эту", 0, "null") (7, 6, 7, <36:41>, 1, "книгу", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "купил", 0, "null") (6, 5, 6, <32:35>, 1, "эту", 0, "null") (7, 6, 7, <36:41>, 1, "книгу", 0, "null")@4@-1@1328@1328@-1@1360@-1@-1@-1@-1@-1@-1@8009@2359@-1@-1@-1@-1@-1@-1@-1@612899@285210@-1@-1@214104976@-1@-1@-1@@@ +207@0@207@5@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "лежит", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "лежит", 0, "null")@0@-1@19@19@-1@19@-1@-1@-1@-1@-1@-1@650@125@-1@-1@-1@-1@-1@-1@-1@616192@286045@-1@-1@12428696@-1@-1@-1@@@ +208@0@208@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:6>, 1, "я", 0, "null") (3, 2, 3, <7:16>, 1, "спрашиваю", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "лежит", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:6>, 1, "я", 0, "null") (3, 2, 3, <7:16>, 1, "спрашиваю", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "лежит", 0, "null")@0@-1@19@19@-1@19@-1@-1@-1@-1@-1@-1@650@124@-1@-1@-1@-1@-1@-1@-1@617598@286838@-1@-1@12315168@-1@-1@-1@@@ +209@0@209@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "лежит", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "лежит", 0, "null")@3@-1@84@84@-1@84@-1@-1@-1@-1@-1@-1@650@487@-1@-1@-1@-1@-1@-1@-1@620009@288032@-1@-1@18534024@-1@-1@-1@@@ +210@0@210@4@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:22>, 1, "идет", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:22>, 1, "идет", 0, "null")@1@-1@29@29@-1@29@-1@-1@-1@-1@-1@-1@345@292@-1@-1@-1@-1@-1@-1@-1@622379@288707@-1@-1@9537984@-1@-1@-1@@@ +211@0@211@5@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:32>, 1, "читает", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:16>, 1, "думает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:32>, 1, "читает", 0, "null")@1@-1@489@489@-1@497@-1@-1@-1@-1@-1@-1@570@1150@-1@-1@-1@-1@-1@-1@-1@627646@290461@-1@-1@28882336@-1@-1@-1@@@ +212@0@212@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:5>, 1, "в", 0, "null") (3, 2, 3, <6:11>, 1, "какой", 0, "null") (4, 3, 4, <12:17>, 1, "город", 0, "null") (5, 4, 5, <19:23>, 1, "Иван", 0, "null") (6, 5, 6, <24:34>, 1, "спрашивает", 0, "null") (7, 6, 7, <36:43>, 1, "приехал", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:5>, 1, "в", 0, "null") (3, 2, 3, <6:11>, 1, "какой", 0, "null") (4, 3, 4, <12:17>, 1, "город", 0, "null") (5, 4, 5, <19:23>, 1, "Иван", 0, "null") (6, 5, 6, <24:34>, 1, "спрашивает", 0, "null") (7, 6, 7, <36:43>, 1, "приехал", 0, "null")@0@-1@27@27@-1@27@-1@-1@-1@-1@-1@-1@644@229@-1@-1@-1@-1@-1@-1@-1@630591@291377@-1@-1@14040220@-1@-1@-1@@@ +213@0@213@8@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:5>, 1, "и", 0, "null") (3, 2, 3, <6:7>, 1, "в", 0, "null") (4, 3, 4, <8:13>, 1, "какой", 0, "null") (5, 4, 5, <14:19>, 1, "город", 0, "null") (6, 5, 6, <20:22>, 1, "ты", 0, "null") (7, 6, 7, <23:34>, 1, "спрашиваешь", 0, "null") (8, 7, 8, <36:43>, 1, "приехал", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:5>, 1, "и", 0, "null") (3, 2, 3, <6:7>, 1, "в", 0, "null") (4, 3, 4, <8:13>, 1, "какой", 0, "null") (5, 4, 5, <14:19>, 1, "город", 0, "null") (6, 5, 6, <20:22>, 1, "ты", 0, "null") (7, 6, 7, <23:34>, 1, "спрашиваешь", 0, "null") (8, 7, 8, <36:43>, 1, "приехал", 0, "null")@0@-1@28@28@-1@29@-1@-1@-1@-1@-1@-1@662@237@-1@-1@-1@-1@-1@-1@-1@632859@292310@-1@-1@14234204@-1@-1@-1@@@ +214@0@214@5@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "знает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "лежит", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "знает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:31>, 1, "лежит", 0, "null")@3@-1@121@121@-1@122@-1@-1@-1@-1@-1@-1@1247@590@-1@-1@-1@-1@-1@-1@-1@636552@294219@-1@-1@29960896@-1@-1@-1@@@ +215@0@215@4@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "знает", 0, "null") (4, 3, 4, <18:22>, 1, "идет", 0, "null")@4@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "знает", 0, "null") (4, 3, 4, <18:22>, 1, "идет", 0, "null")@1@-1@49@49@-1@49@-1@-1@-1@-1@-1@-1@660@420@-1@-1@-1@-1@-1@-1@-1@639921@295346@-1@-1@16503656@-1@-1@-1@@@ +216@0@216@5@(1, 0, 1, <1:4>, 1, "Что", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "знает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:32>, 1, "читает", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Что", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "знает", 0, "null") (4, 3, 4, <18:25>, 1, "студент", 0, "null") (5, 4, 5, <26:32>, 1, "читает", 0, "null")@1@-1@531@531@-1@544@-1@-1@-1@-1@-1@-1@1083@1272@-1@-1@-1@-1@-1@-1@-1@647460@297748@-1@-1@39395608@-1@-1@-1@@@ +217@0@217@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +218@0@218@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +219@0@219@5@(1, 0, 1, <2:9>, 1, "Fronted", 0, "null") (2, 1, 2, <10:18>, 1, "question", 0, "null") (3, 2, 3, <19:23>, 1, "from", 0, "null") (4, 3, 4, <24:28>, 1, "that", 0, "null") (5, 4, 5, <29:35>, 1, "clause", 0, "null")@5@(1, 0, 1, <2:9>, 1, "Fronted", 0, "null") (2, 1, 2, <10:18>, 1, "question", 0, "null") (3, 2, 3, <19:23>, 1, "from", 0, "null") (4, 3, 4, <24:28>, 1, "that", 0, "null") (5, 4, 5, <29:35>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@648242@297759@-1@-1@3180@-1@-1@-1@@post-reduction lexical gap@ +220@0@220@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:30>, 1, "идет", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:30>, 1, "идет", 0, "null")@0@-1@28@28@-1@28@-1@-1@-1@-1@-1@-1@421@250@-1@-1@-1@-1@-1@-1@-1@649724@298446@-1@-1@10163056@-1@-1@-1@@@ +221@0@221@7@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:19>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:23>, 1, "что", 0, "null") (5, 4, 5, <24:31>, 1, "студент", 0, "null") (6, 5, 6, <32:37>, 1, "купил", 0, "null") (7, 6, 7, <38:43>, 1, "книгу", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:19>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:23>, 1, "что", 0, "null") (5, 4, 5, <24:31>, 1, "студент", 0, "null") (6, 5, 6, <32:37>, 1, "купил", 0, "null") (7, 6, 7, <38:43>, 1, "книгу", 0, "null")@0@-1@522@522@-1@544@-1@-1@-1@-1@-1@-1@6002@1036@-1@-1@-1@-1@-1@-1@-1@661811@305604@-1@-1@137608076@-1@-1@-1@@@ +222@0@222@6@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:19>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:23>, 1, "что", 0, "null") (5, 4, 5, <24:31>, 1, "студент", 0, "null") (6, 5, 6, <32:37>, 1, "лежит", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:19>, 1, "спрашивает", 0, "null") (4, 3, 4, <20:23>, 1, "что", 0, "null") (5, 4, 5, <24:31>, 1, "студент", 0, "null") (6, 5, 6, <32:37>, 1, "лежит", 0, "null")@0@-1@18@18@-1@18@-1@-1@-1@-1@-1@-1@598@111@-1@-1@-1@-1@-1@-1@-1@663085@306332@-1@-1@11222796@-1@-1@-1@@@ +223@0@223@7@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:35>, 1, "студент", 0, "null") (7, 6, 7, <36:41>, 1, "лежит", 0, "null")@7@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:35>, 1, "студент", 0, "null") (7, 6, 7, <36:41>, 1, "лежит", 0, "null")@6@-1@267@267@-1@268@-1@-1@-1@-1@-1@-1@2302@1109@-1@-1@-1@-1@-1@-1@-1@670068@309860@-1@-1@55295112@-1@-1@-1@@@ +224@0@224@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:22>, 1, "что", 0, "null") (5, 4, 5, <23:30>, 1, "студент", 0, "null") (6, 5, 6, <31:36>, 1, "лежит", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:22>, 1, "что", 0, "null") (5, 4, 5, <23:30>, 1, "студент", 0, "null") (6, 5, 6, <31:36>, 1, "лежит", 0, "null")@3@-1@80@80@-1@80@-1@-1@-1@-1@-1@-1@552@448@-1@-1@-1@-1@-1@-1@-1@674530@310967@-1@-1@16574056@-1@-1@-1@@@ +225@0@225@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:32>, 1, "читает", 0, "null") (6, 5, 6, <33:38>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:32>, 1, "читает", 0, "null") (6, 5, 6, <33:38>, 1, "книгу", 0, "null")@0@-1@746@746@-1@762@-1@-1@-1@-1@-1@-1@6133@1892@-1@-1@-1@-1@-1@-1@-1@691720@319046@-1@-1@161307152@-1@-1@-1@@@ +226@0@226@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +227@0@227@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +228@0@228@11@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:18>, 1, "fronted", 0, "null") (3, 2, 3, <19:28>, 1, "questions", 0, "null") (4, 3, 4, <29:34>, 1, "about", 0, "null") (5, 4, 5, <35:42>, 1, "subject", 0, "null") (6, 5, 6, <44:50>, 1, "object", 0, "null") (7, 6, 7, <52:54>, 1, "or", 0, "null") (8, 7, 8, <55:62>, 1, "adjunct", 0, "null") (9, 8, 9, <63:65>, 1, "of", 0, "null") (10, 9, 10, <66:74>, 1, "embedded", 0, "null") (11, 10, 11, <75:81>, 1, "clause", 0, "null")@11@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:18>, 1, "fronted", 0, "null") (3, 2, 3, <19:28>, 1, "questions", 0, "null") (4, 3, 4, <29:34>, 1, "about", 0, "null") (5, 4, 5, <35:42>, 1, "subject", 0, "null") (6, 5, 6, <44:50>, 1, "object", 0, "null") (7, 6, 7, <52:54>, 1, "or", 0, "null") (8, 7, 8, <55:62>, 1, "adjunct", 0, "null") (9, 8, 9, <63:65>, 1, "of", 0, "null") (10, 9, 10, <66:74>, 1, "embedded", 0, "null") (11, 10, 11, <75:81>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@691720@319046@-1@-1@7004@-1@-1@-1@@post-reduction lexical gap@ +229@0@229@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:28>, 1, "видит", 0, "null") (5, 4, 5, <29:32>, 1, "что", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:28>, 1, "видит", 0, "null") (5, 4, 5, <29:32>, 1, "что", 0, "null")@1@-1@2514@2514@-1@2553@-1@-1@-1@-1@-1@-1@15727@3940@-1@-1@-1@-1@-1@-1@-1@731743@338749@-1@-1@402603168@-1@-1@-1@@@ +230@0@230@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:26>, 1, "что", 0, "null") (5, 4, 5, <27:32>, 1, "видит", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:26>, 1, "что", 0, "null") (5, 4, 5, <27:32>, 1, "видит", 0, "null")@1@-1@637@637@-1@643@-1@-1@-1@-1@-1@-1@421@1737@-1@-1@-1@-1@-1@-1@-1@739852@340954@-1@-1@34542288@-1@-1@-1@@@ +231@0@231@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:25>, 1, "спрашивает", 0, "null") (5, 4, 5, <27:32>, 1, "видит", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:25>, 1, "спрашивает", 0, "null") (5, 4, 5, <27:32>, 1, "видит", 0, "null")@0@-1@2031@2031@-1@2050@-1@-1@-1@-1@-1@-1@428@3697@-1@-1@-1@-1@-1@-1@-1@754748@345117@-1@-1@66158684@-1@-1@-1@@@ +232@0@232@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:26>, 1, "спрашивает", 0, "null") (5, 4, 5, <28:32>, 1, "идет", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "куда", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:26>, 1, "спрашивает", 0, "null") (5, 4, 5, <28:32>, 1, "идет", 0, "null")@0@-1@27@27@-1@27@-1@-1@-1@-1@-1@-1@508@219@-1@-1@-1@-1@-1@-1@-1@756388@345871@-1@-1@11401224@-1@-1@-1@@@ +233@0@233@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "купил", 0, "null") (6, 5, 6, <37:42>, 1, "книгу", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "купил", 0, "null") (6, 5, 6, <37:42>, 1, "книгу", 0, "null")@0@-1@65@65@-1@65@-1@-1@-1@-1@-1@-1@1217@357@-1@-1@-1@-1@-1@-1@-1@761065@347473@-1@-1@26867296@-1@-1@-1@@@ +234@0@234@7@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "купил", 0, "null") (6, 5, 6, <37:42>, 1, "какую", 0, "null") (7, 6, 7, <43:48>, 1, "книгу", 0, "null")@7@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:36>, 1, "купил", 0, "null") (6, 5, 6, <37:42>, 1, "какую", 0, "null") (7, 6, 7, <43:48>, 1, "книгу", 0, "null")@4@-1@500@500@-1@510@-1@-1@-1@-1@-1@-1@1224@1321@-1@-1@-1@-1@-1@-1@-1@768037@350148@-1@-1@49928384@-1@-1@-1@@@ +235@0@235@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:34>, 1, "что", 0, "null") (6, 5, 6, <35:40>, 1, "купил", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:30>, 1, "студент", 0, "null") (5, 4, 5, <31:34>, 1, "что", 0, "null") (6, 5, 6, <35:40>, 1, "купил", 0, "null")@4@-1@427@427@-1@434@-1@-1@-1@-1@-1@-1@663@1292@-1@-1@-1@-1@-1@-1@-1@774868@352271@-1@-1@35085760@-1@-1@-1@@@ +236@0@236@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <9:12>, 1, "что", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:29>, 1, "спрашивает", 0, "null") (6, 5, 6, <31:36>, 1, "купил", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <9:12>, 1, "что", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:29>, 1, "спрашивает", 0, "null") (6, 5, 6, <31:36>, 1, "купил", 0, "null")@0@-1@109@109@-1@110@-1@-1@-1@-1@-1@-1@437@559@-1@-1@-1@-1@-1@-1@-1@779737@353321@-1@-1@15847040@-1@-1@-1@@@ +237@0@237@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:25>, 1, "спрашивает", 0, "null") (5, 4, 5, <27:30>, 1, "что", 0, "null") (6, 5, 6, <31:36>, 1, "купил", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <10:14>, 1, "Иван", 0, "null") (4, 3, 4, <15:25>, 1, "спрашивает", 0, "null") (5, 4, 5, <27:30>, 1, "что", 0, "null") (6, 5, 6, <31:36>, 1, "купил", 0, "null")@4@-1@212@212@-1@214@-1@-1@-1@-1@-1@-1@430@1009@-1@-1@-1@-1@-1@-1@-1@784354@354787@-1@-1@23541424@-1@-1@-1@@@ +238@0@238@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:26>, 1, "кто", 0, "null") (5, 4, 5, <27:30>, 1, "что", 0, "null") (6, 5, 6, <31:36>, 1, "купил", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:26>, 1, "кто", 0, "null") (5, 4, 5, <27:30>, 1, "что", 0, "null") (6, 5, 6, <31:36>, 1, "купил", 0, "null")@8@-1@147@147@-1@148@-1@-1@-1@-1@-1@-1@584@757@-1@-1@-1@-1@-1@-1@-1@788686@356294@-1@-1@23928624@-1@-1@-1@@@ +239@0@239@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:26>, 1, "что", 0, "null") (5, 4, 5, <27:32>, 1, "видел", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:21>, 1, "спрашивает", 0, "null") (4, 3, 4, <23:26>, 1, "что", 0, "null") (5, 4, 5, <27:32>, 1, "видел", 0, "null")@1@-1@587@587@-1@595@-1@-1@-1@-1@-1@-1@421@1739@-1@-1@-1@-1@-1@-1@-1@798819@358552@-1@-1@34451128@-1@-1@-1@@@ +240@0@240@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <21:26>, 1, "какую", 0, "null") (5, 4, 5, <27:32>, 1, "книгу", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <21:26>, 1, "какую", 0, "null") (5, 4, 5, <27:32>, 1, "книгу", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null")@2@-1@192@192@-1@194@-1@-1@-1@-1@-1@-1@384@1045@-1@-1@-1@-1@-1@-1@-1@803189@360018@-1@-1@24379240@-1@-1@-1@@@ +241@0@241@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <21:26>, 1, "какую", 0, "null") (5, 4, 5, <27:33>, 1, "читает", 0, "null") (6, 5, 6, <34:39>, 1, "книгу", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <21:26>, 1, "какую", 0, "null") (5, 4, 5, <27:33>, 1, "читает", 0, "null") (6, 5, 6, <34:39>, 1, "книгу", 0, "null")@1@-1@64@64@-1@65@-1@-1@-1@-1@-1@-1@545@521@-1@-1@-1@-1@-1@-1@-1@806116@361130@-1@-1@17444408@-1@-1@-1@@@ +242@0@242@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:22>, 1, "какую", 0, "null") (4, 3, 4, <23:28>, 1, "книгу", 0, "null") (5, 4, 5, <29:36>, 1, "студент", 0, "null") (6, 5, 6, <37:43>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:22>, 1, "какую", 0, "null") (4, 3, 4, <23:28>, 1, "книгу", 0, "null") (5, 4, 5, <29:36>, 1, "студент", 0, "null") (6, 5, 6, <37:43>, 1, "читает", 0, "null")@3@-1@228@228@-1@229@-1@-1@-1@-1@-1@-1@398@784@-1@-1@-1@-1@-1@-1@-1@809231@362348@-1@-1@21047120@-1@-1@-1@@@ +243@0@243@6@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:28>, 1, "спрашивает", 0, "null") (5, 4, 5, <30:37>, 1, "студент", 0, "null") (6, 5, 6, <38:44>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:28>, 1, "спрашивает", 0, "null") (5, 4, 5, <30:37>, 1, "студент", 0, "null") (6, 5, 6, <38:44>, 1, "читает", 0, "null")@0@-1@23@23@-1@24@-1@-1@-1@-1@-1@-1@526@167@-1@-1@-1@-1@-1@-1@-1@812755@363106@-1@-1@11045480@-1@-1@-1@@@ +244@0@244@6@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:28>, 1, "спрашивает", 0, "null") (5, 4, 5, <30:36>, 1, "читает", 0, "null") (6, 5, 6, <37:44>, 1, "студент", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <13:17>, 1, "Иван", 0, "null") (4, 3, 4, <18:28>, 1, "спрашивает", 0, "null") (5, 4, 5, <30:36>, 1, "читает", 0, "null") (6, 5, 6, <37:44>, 1, "студент", 0, "null")@0@-1@177@177@-1@177@-1@-1@-1@-1@-1@-1@2793@570@-1@-1@-1@-1@-1@-1@-1@819694@366492@-1@-1@67031920@-1@-1@-1@@@ +245@0@245@6@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <12:22>, 1, "спрашивает", 0, "null") (4, 3, 4, <24:31>, 1, "студент", 0, "null") (5, 4, 5, <32:38>, 1, "читает", 0, "null") (6, 5, 6, <39:44>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <7:11>, 1, "Иван", 0, "null") (3, 2, 3, <12:22>, 1, "спрашивает", 0, "null") (4, 3, 4, <24:31>, 1, "студент", 0, "null") (5, 4, 5, <32:38>, 1, "читает", 0, "null") (6, 5, 6, <39:44>, 1, "книгу", 0, "null")@0@-1@61@61@-1@61@-1@-1@-1@-1@-1@-1@1061@331@-1@-1@-1@-1@-1@-1@-1@823770@367911@-1@-1@23986880@-1@-1@-1@@@ +246@0@246@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "какую", 0, "null") (3, 2, 3, <10:15>, 1, "книгу", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:28>, 1, "думает", 0, "null") (6, 5, 6, <30:36>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "какую", 0, "null") (3, 2, 3, <10:15>, 1, "книгу", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:28>, 1, "думает", 0, "null") (6, 5, 6, <30:36>, 1, "читает", 0, "null")@1@-1@154@154@-1@155@-1@-1@-1@-1@-1@-1@384@784@-1@-1@-1@-1@-1@-1@-1@827428@369098@-1@-1@18908552@-1@-1@-1@@@ +247@0@247@7@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <9:12>, 1, "что", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "знает", 0, "null") (6, 5, 6, <26:29>, 1, "что", 0, "null") (7, 6, 7, <30:36>, 1, "читает", 0, "null")@7@(1, 0, 1, <1:4>, 1, "Где", 0, "null") (2, 1, 2, <5:8>, 1, "кто", 0, "null") (3, 2, 3, <9:12>, 1, "что", 0, "null") (4, 3, 4, <14:18>, 1, "Иван", 0, "null") (5, 4, 5, <19:24>, 1, "знает", 0, "null") (6, 5, 6, <26:29>, 1, "что", 0, "null") (7, 6, 7, <30:36>, 1, "читает", 0, "null")@4@-1@666@666@-1@672@-1@-1@-1@-1@-1@-1@915@1893@-1@-1@-1@-1@-1@-1@-1@836492@371981@-1@-1@45995144@-1@-1@-1@@@ +248@0@248@6@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:7>, 1, "кто", 0, "null") (3, 2, 3, <8:11>, 1, "что", 0, "null") (4, 3, 4, <13:17>, 1, "Иван", 0, "null") (5, 4, 5, <18:23>, 1, "знает", 0, "null") (6, 5, 6, <25:31>, 1, "читает", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:7>, 1, "кто", 0, "null") (3, 2, 3, <8:11>, 1, "что", 0, "null") (4, 3, 4, <13:17>, 1, "Иван", 0, "null") (5, 4, 5, <18:23>, 1, "знает", 0, "null") (6, 5, 6, <25:31>, 1, "читает", 0, "null")@4@-1@410@410@-1@414@-1@-1@-1@-1@-1@-1@822@1614@-1@-1@-1@-1@-1@-1@-1@845447@374492@-1@-1@39565200@-1@-1@-1@@@ +249@0@249@6@(1, 0, 1, <1:6>, 1, "Какую", 0, "null") (2, 1, 2, <7:10>, 1, "кто", 0, "null") (3, 2, 3, <12:16>, 1, "Иван", 0, "null") (4, 3, 4, <17:23>, 1, "думает", 0, "null") (5, 4, 5, <25:30>, 1, "купил", 0, "null") (6, 5, 6, <31:36>, 1, "книгу", 0, "null")@6@(1, 0, 1, <1:6>, 1, "Какую", 0, "null") (2, 1, 2, <7:10>, 1, "кто", 0, "null") (3, 2, 3, <12:16>, 1, "Иван", 0, "null") (4, 3, 4, <17:23>, 1, "думает", 0, "null") (5, 4, 5, <25:30>, 1, "купил", 0, "null") (6, 5, 6, <31:36>, 1, "книгу", 0, "null")@0@-1@957@957@-1@1008@-1@-1@-1@-1@-1@-1@4703@2225@-1@-1@-1@-1@-1@-1@-1@861843@381479@-1@-1@136715668@-1@-1@-1@@@ +250@0@250@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:22>, 1, "что", 0, "null") (5, 4, 5, <23:28>, 1, "видел", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:22>, 1, "что", 0, "null") (5, 4, 5, <23:28>, 1, "видел", 0, "null")@0@-1@524@524@-1@527@-1@-1@-1@-1@-1@-1@375@1164@-1@-1@-1@-1@-1@-1@-1@867611@383050@-1@-1@25411132@-1@-1@-1@@@ +251@0@251@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:24>, 1, "видел", 0, "null") (5, 4, 5, <25:28>, 1, "что", 0, "null")@5@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:24>, 1, "видел", 0, "null") (5, 4, 5, <25:28>, 1, "что", 0, "null")@0@-1@2776@2776@-1@2816@-1@-1@-1@-1@-1@-1@21964@3412@-1@-1@-1@-1@-1@-1@-1@915985@408458@-1@-1@527919872@-1@-1@-1@@@ +252@0@252@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:24>, 1, "купил", 0, "null") (5, 4, 5, <25:30>, 1, "какую", 0, "null") (6, 5, 6, <31:36>, 1, "книгу", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:24>, 1, "купил", 0, "null") (5, 4, 5, <25:30>, 1, "какую", 0, "null") (6, 5, 6, <31:36>, 1, "книгу", 0, "null")@0@-1@300@300@-1@301@-1@-1@-1@-1@-1@-1@4703@736@-1@-1@-1@-1@-1@-1@-1@926111@413916@-1@-1@110812168@-1@-1@-1@@@ +253@0@253@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:33>, 1, "видел", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:33>, 1, "видел", 0, "null")@2@-1@6593@6593@-1@6692@-1@-1@-1@-1@-1@-1@1659@6884@-1@-1@-1@-1@-1@-1@-1@958411@422509@-1@-1@138469160@-1@-1@-1@@@ +254@0@254@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:31>, 1, "видел", 0, "null")@5@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:31>, 1, "видел", 0, "null")@1@-1@553@553@-1@562@-1@-1@-1@-1@-1@-1@421@1739@-1@-1@-1@-1@-1@-1@-1@966848@424721@-1@-1@34451128@-1@-1@-1@@@ +255@0@255@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +256@0@256@5@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:20>, 1, "questions", 0, "null") (3, 2, 3, <21:24>, 1, "and", 0, "null") (4, 3, 4, <25:29>, 1, "that", 0, "null") (5, 4, 5, <30:36>, 1, "clause", 0, "null")@5@(1, 0, 1, <2:10>, 1, "Multiple", 0, "null") (2, 1, 2, <11:20>, 1, "questions", 0, "null") (3, 2, 3, <21:24>, 1, "and", 0, "null") (4, 3, 4, <25:29>, 1, "that", 0, "null") (5, 4, 5, <30:36>, 1, "clause", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@967090@424731@-1@-1@3220@-1@-1@-1@@post-reduction lexical gap@ +257@0@257@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:7>, 1, "что", 0, "null") (3, 2, 3, <9:13>, 1, "Иван", 0, "null") (4, 3, 4, <14:24>, 1, "спрашивает", 0, "null") (5, 4, 5, <26:29>, 1, "что", 0, "null") (6, 5, 6, <30:35>, 1, "видел", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:7>, 1, "что", 0, "null") (3, 2, 3, <9:13>, 1, "Иван", 0, "null") (4, 3, 4, <14:24>, 1, "спрашивает", 0, "null") (5, 4, 5, <26:29>, 1, "что", 0, "null") (6, 5, 6, <30:35>, 1, "видел", 0, "null")@0@-1@926@926@-1@937@-1@-1@-1@-1@-1@-1@504@2323@-1@-1@-1@-1@-1@-1@-1@976661@427618@-1@-1@44649552@-1@-1@-1@@@ +258@0@258@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "какую", 0, "null") (3, 2, 3, <10:15>, 1, "книгу", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:28>, 1, "думает", 0, "null") (6, 5, 6, <30:33>, 1, "что", 0, "null") (7, 6, 7, <34:40>, 1, "читает", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "какую", 0, "null") (3, 2, 3, <10:15>, 1, "книгу", 0, "null") (4, 3, 4, <17:21>, 1, "Иван", 0, "null") (5, 4, 5, <22:28>, 1, "думает", 0, "null") (6, 5, 6, <30:33>, 1, "что", 0, "null") (7, 6, 7, <34:40>, 1, "читает", 0, "null")@1@-1@84@84@-1@84@-1@-1@-1@-1@-1@-1@414@487@-1@-1@-1@-1@-1@-1@-1@979517@428542@-1@-1@14640904@-1@-1@-1@@@ +259@0@259@8@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:10>, 1, "какую", 0, "null") (3, 2, 3, <11:16>, 1, "книгу", 0, "null") (4, 3, 4, <18:22>, 1, "Иван", 0, "null") (5, 4, 5, <23:28>, 1, "точно", 0, "null") (6, 5, 6, <29:34>, 1, "знает", 0, "null") (7, 6, 7, <36:39>, 1, "что", 0, "null") (8, 7, 8, <40:46>, 1, "читает", 0, "null")@8@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <5:10>, 1, "какую", 0, "null") (3, 2, 3, <11:16>, 1, "книгу", 0, "null") (4, 3, 4, <18:22>, 1, "Иван", 0, "null") (5, 4, 5, <23:28>, 1, "точно", 0, "null") (6, 5, 6, <29:34>, 1, "знает", 0, "null") (7, 6, 7, <36:39>, 1, "что", 0, "null") (8, 7, 8, <40:46>, 1, "читает", 0, "null")@2@-1@1367@1367@-1@1392@-1@-1@-1@-1@-1@-1@1698@2994@-1@-1@-1@-1@-1@-1@-1@995543@433289@-1@-1@74987344@-1@-1@-1@@@ +260@0@260@8@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:34>, 1, "читает", 0, "null") (7, 6, 7, <35:40>, 1, "какую", 0, "null") (8, 7, 8, <41:46>, 1, "книгу", 0, "null")@8@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:34>, 1, "читает", 0, "null") (7, 6, 7, <35:40>, 1, "какую", 0, "null") (8, 7, 8, <41:46>, 1, "книгу", 0, "null")@0@-1@2485@2485@-1@2569@-1@-1@-1@-1@-1@-1@18031@3968@-1@-1@-1@-1@-1@-1@-1@1039723@455362@-1@-1@417807552@-1@-1@-1@@@ +261@0@261@7@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:7>, 1, "что", 0, "null") (3, 2, 3, <8:12>, 1, "Иван", 0, "null") (4, 3, 4, <13:23>, 1, "спрашивает", 0, "null") (5, 4, 5, <25:28>, 1, "что", 0, "null") (6, 5, 6, <29:31>, 1, "мы", 0, "null") (7, 6, 7, <32:38>, 1, "видели", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:7>, 1, "что", 0, "null") (3, 2, 3, <8:12>, 1, "Иван", 0, "null") (4, 3, 4, <13:23>, 1, "спрашивает", 0, "null") (5, 4, 5, <25:28>, 1, "что", 0, "null") (6, 5, 6, <29:31>, 1, "мы", 0, "null") (7, 6, 7, <32:38>, 1, "видели", 0, "null")@0@-1@277@277@-1@288@-1@-1@-1@-1@-1@-1@527@986@-1@-1@-1@-1@-1@-1@-1@1043891@456920@-1@-1@23382272@-1@-1@-1@@@ +262@0@262@8@(1, 0, 1, <0:3>, 1, "Как", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:19>, 1, "спрашивает", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null") (7, 6, 7, <40:43>, 1, "эту", 0, "null") (8, 7, 8, <44:49>, 1, "книгу", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Как", 0, "null") (2, 1, 2, <4:8>, 1, "Иван", 0, "null") (3, 2, 3, <9:19>, 1, "спрашивает", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:32>, 1, "студент", 0, "null") (6, 5, 6, <33:39>, 1, "читает", 0, "null") (7, 6, 7, <40:43>, 1, "эту", 0, "null") (8, 7, 8, <44:49>, 1, "книгу", 0, "null")@0@-1@528@528@-1@532@-1@-1@-1@-1@-1@-1@5983@960@-1@-1@-1@-1@-1@-1@-1@1055616@464012@-1@-1@136687628@-1@-1@-1@@@ +263@0@263@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:22>, 1, "что", 0, "null") (5, 4, 5, <23:26>, 1, "что", 0, "null") (6, 5, 6, <27:32>, 1, "видел", 0, "null")@6@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:17>, 1, "думает", 0, "null") (4, 3, 4, <19:22>, 1, "что", 0, "null") (5, 4, 5, <23:26>, 1, "что", 0, "null") (6, 5, 6, <27:32>, 1, "видел", 0, "null")@0@-1@19@19@-1@19@-1@-1@-1@-1@-1@-1@388@224@-1@-1@-1@-1@-1@-1@-1@1057262@464661@-1@-1@8910040@-1@-1@-1@@@ +264@0@264@7@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:31>, 1, "что", 0, "null") (7, 6, 7, <32:37>, 1, "видел", 0, "null")@7@(1, 0, 1, <1:4>, 1, "Кто", 0, "null") (2, 1, 2, <6:10>, 1, "Иван", 0, "null") (3, 2, 3, <11:16>, 1, "точно", 0, "null") (4, 3, 4, <17:22>, 1, "знает", 0, "null") (5, 4, 5, <24:27>, 1, "что", 0, "null") (6, 5, 6, <28:31>, 1, "что", 0, "null") (7, 6, 7, <32:37>, 1, "видел", 0, "null")@0@-1@309@309@-1@316@-1@-1@-1@-1@-1@-1@1672@1594@-1@-1@-1@-1@-1@-1@-1@1066760@467998@-1@-1@52440208@-1@-1@-1@@@ +265@0@265@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:29>, 1, "что", 0, "null") (6, 5, 6, <30:35>, 1, "видел", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:20>, 1, "спрашивает", 0, "null") (4, 3, 4, <22:25>, 1, "что", 0, "null") (5, 4, 5, <26:29>, 1, "что", 0, "null") (6, 5, 6, <30:35>, 1, "видел", 0, "null")@0@-1@88@88@-1@92@-1@-1@-1@-1@-1@-1@434@673@-1@-1@-1@-1@-1@-1@-1@1069872@469150@-1@-1@17051888@-1@-1@-1@@@ +266@0@266@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +267@0@267@14@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:15>, 1, "both", 0, "null") (3, 2, 3, <16:18>, 1, "to", 0, "null") (4, 3, 4, <19:22>, 1, "the", 0, "null") (5, 4, 5, <23:30>, 1, "subject", 0, "null") (6, 5, 6, <31:33>, 1, "of", 0, "null") (7, 6, 7, <34:40>, 1, "matrix", 0, "null") (8, 7, 8, <41:44>, 1, "and", 0, "null") (9, 8, 9, <45:49>, 1, "subj", 0, "null") (10, 9, 10, <50:53>, 1, "obj", 0, "null") (11, 10, 11, <54:57>, 1, "adj", 0, "null") (12, 11, 12, <58:60>, 1, "of", 0, "null") (13, 12, 13, <61:69>, 1, "embedded", 0, "null") (14, 13, 14, <70:76>, 1, "clause", 0, "null")@14@(1, 0, 1, <2:10>, 1, "Question", 0, "null") (2, 1, 2, <11:15>, 1, "both", 0, "null") (3, 2, 3, <16:18>, 1, "to", 0, "null") (4, 3, 4, <19:22>, 1, "the", 0, "null") (5, 4, 5, <23:30>, 1, "subject", 0, "null") (6, 5, 6, <31:33>, 1, "of", 0, "null") (7, 6, 7, <34:40>, 1, "matrix", 0, "null") (8, 7, 8, <41:44>, 1, "and", 0, "null") (9, 8, 9, <45:49>, 1, "subj", 0, "null") (10, 9, 10, <50:53>, 1, "obj", 0, "null") (11, 10, 11, <54:57>, 1, "adj", 0, "null") (12, 11, 12, <58:60>, 1, "of", 0, "null") (13, 12, 13, <61:69>, 1, "embedded", 0, "null") (14, 13, 14, <70:76>, 1, "clause", 0, "null")@0@-1@0@0@-1@3@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1069872@469150@-1@-1@8796@-1@-1@-1@@post-reduction lexical gap@ +268@0@268@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "где", 0, "null") (4, 3, 4, <20:22>, 1, "мы", 0, "null") (5, 4, 5, <23:26>, 1, "что", 0, "null") (6, 5, 6, <27:33>, 1, "видели", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "где", 0, "null") (4, 3, 4, <20:22>, 1, "мы", 0, "null") (5, 4, 5, <23:26>, 1, "что", 0, "null") (6, 5, 6, <27:33>, 1, "видели", 0, "null")@4@-1@322@322@-1@330@-1@-1@-1@-1@-1@-1@550@1288@-1@-1@-1@-1@-1@-1@-1@1074626@471027@-1@-1@27844200@-1@-1@-1@@@ +269@0@269@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "где", 0, "null") (4, 3, 4, <20:22>, 1, "мы", 0, "null") (5, 4, 5, <23:29>, 1, "видели", 0, "null") (6, 5, 6, <30:35>, 1, "какие", 0, "null") (7, 6, 7, <36:41>, 1, "книги", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "где", 0, "null") (4, 3, 4, <20:22>, 1, "мы", 0, "null") (5, 4, 5, <23:29>, 1, "видели", 0, "null") (6, 5, 6, <30:35>, 1, "какие", 0, "null") (7, 6, 7, <36:41>, 1, "книги", 0, "null")@4@-1@3456@3456@-1@3518@-1@-1@-1@-1@-1@-1@17798@3913@-1@-1@-1@-1@-1@-1@-1@1117367@492831@-1@-1@419201064@-1@-1@-1@@@ +270@0@270@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "где", 0, "null") (4, 3, 4, <20:22>, 1, "мы", 0, "null") (5, 4, 5, <23:29>, 1, "видели", 0, "null") (6, 5, 6, <30:33>, 1, "эти", 0, "null") (7, 6, 7, <34:39>, 1, "книги", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "где", 0, "null") (4, 3, 4, <20:22>, 1, "мы", 0, "null") (5, 4, 5, <23:29>, 1, "видели", 0, "null") (6, 5, 6, <30:33>, 1, "эти", 0, "null") (7, 6, 7, <34:39>, 1, "книги", 0, "null")@3@-1@3313@3313@-1@3353@-1@-1@-1@-1@-1@-1@17796@3636@-1@-1@-1@-1@-1@-1@-1@1159554@514365@-1@-1@414401328@-1@-1@-1@@@ +271@0@271@8@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "что", 0, "null") (4, 3, 4, <20:23>, 1, "где", 0, "null") (5, 4, 5, <24:26>, 1, "мы", 0, "null") (6, 5, 6, <27:33>, 1, "видели", 0, "null") (7, 6, 7, <34:37>, 1, "эти", 0, "null") (8, 7, 8, <38:43>, 1, "книги", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <16:19>, 1, "что", 0, "null") (4, 3, 4, <20:23>, 1, "где", 0, "null") (5, 4, 5, <24:26>, 1, "мы", 0, "null") (6, 5, 6, <27:33>, 1, "видели", 0, "null") (7, 6, 7, <34:37>, 1, "эти", 0, "null") (8, 7, 8, <38:43>, 1, "книги", 0, "null")@0@-1@443@443@-1@449@-1@-1@-1@-1@-1@-1@6265@1155@-1@-1@-1@-1@-1@-1@-1@1174662@521900@-1@-1@136293392@-1@-1@-1@@@ +272@0@272@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <15:20>, 1, "какие", 0, "null") (4, 3, 4, <21:26>, 1, "книги", 0, "null") (5, 4, 5, <27:29>, 1, "мы", 0, "null") (6, 5, 6, <30:33>, 1, "где", 0, "null") (7, 6, 7, <34:40>, 1, "видели", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <15:20>, 1, "какие", 0, "null") (4, 3, 4, <21:26>, 1, "книги", 0, "null") (5, 4, 5, <27:29>, 1, "мы", 0, "null") (6, 5, 6, <30:33>, 1, "где", 0, "null") (7, 6, 7, <34:40>, 1, "видели", 0, "null")@6@-1@352@352@-1@359@-1@-1@-1@-1@-1@-1@370@1258@-1@-1@-1@-1@-1@-1@-1@1179347@523607@-1@-1@26306872@-1@-1@-1@@@ +273@0@273@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <15:18>, 1, "эти", 0, "null") (4, 3, 4, <19:24>, 1, "книги", 0, "null") (5, 4, 5, <25:27>, 1, "мы", 0, "null") (6, 5, 6, <28:31>, 1, "где", 0, "null") (7, 6, 7, <32:38>, 1, "видели", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <15:18>, 1, "эти", 0, "null") (4, 3, 4, <19:24>, 1, "книги", 0, "null") (5, 4, 5, <25:27>, 1, "мы", 0, "null") (6, 5, 6, <28:31>, 1, "где", 0, "null") (7, 6, 7, <32:38>, 1, "видели", 0, "null")@1@-1@70@70@-1@71@-1@-1@-1@-1@-1@-1@366@561@-1@-1@-1@-1@-1@-1@-1@1183906@524650@-1@-1@13571376@-1@-1@-1@@@ +274@0@274@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <15:20>, 1, "книги", 0, "null") (4, 3, 4, <21:23>, 1, "мы", 0, "null") (5, 4, 5, <24:27>, 1, "где", 0, "null") (6, 5, 6, <28:34>, 1, "видели", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:14>, 1, "спрашивает", 0, "null") (3, 2, 3, <15:20>, 1, "книги", 0, "null") (4, 3, 4, <21:23>, 1, "мы", 0, "null") (5, 4, 5, <24:27>, 1, "где", 0, "null") (6, 5, 6, <28:34>, 1, "видели", 0, "null")@2@-1@227@227@-1@229@-1@-1@-1@-1@-1@-1@338@983@-1@-1@-1@-1@-1@-1@-1@1187895@526038@-1@-1@20385432@-1@-1@-1@@@ +275@0@275@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:18>, 1, "мы", 0, "null") (5, 4, 5, <19:22>, 1, "что", 0, "null") (6, 5, 6, <23:29>, 1, "видели", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:18>, 1, "мы", 0, "null") (5, 4, 5, <19:22>, 1, "что", 0, "null") (6, 5, 6, <23:29>, 1, "видели", 0, "null")@0@-1@25@25@-1@26@-1@-1@-1@-1@-1@-1@420@245@-1@-1@-1@-1@-1@-1@-1@1190193@526753@-1@-1@9667744@-1@-1@-1@@@ +276@0@276@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:18>, 1, "мы", 0, "null") (5, 4, 5, <19:25>, 1, "видели", 0, "null") (6, 5, 6, <26:31>, 1, "какие", 0, "null") (7, 6, 7, <32:37>, 1, "книги", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:18>, 1, "мы", 0, "null") (5, 4, 5, <19:25>, 1, "видели", 0, "null") (6, 5, 6, <26:31>, 1, "какие", 0, "null") (7, 6, 7, <32:37>, 1, "книги", 0, "null")@0@-1@432@432@-1@438@-1@-1@-1@-1@-1@-1@4978@962@-1@-1@-1@-1@-1@-1@-1@1203971@532745@-1@-1@110816320@-1@-1@-1@@@ +277@0@277@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:18>, 1, "мы", 0, "null") (5, 4, 5, <19:25>, 1, "видели", 0, "null") (6, 5, 6, <26:29>, 1, "эти", 0, "null") (7, 6, 7, <30:35>, 1, "книги", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "где", 0, "null") (4, 3, 4, <16:18>, 1, "мы", 0, "null") (5, 4, 5, <19:25>, 1, "видели", 0, "null") (6, 5, 6, <26:29>, 1, "эти", 0, "null") (7, 6, 7, <30:35>, 1, "книги", 0, "null")@0@-1@490@490@-1@520@-1@-1@-1@-1@-1@-1@4976@1092@-1@-1@-1@-1@-1@-1@-1@1218213@538866@-1@-1@112893528@-1@-1@-1@@@ +278@0@278@8@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "что", 0, "null") (4, 3, 4, <16:19>, 1, "где", 0, "null") (5, 4, 5, <20:22>, 1, "мы", 0, "null") (6, 5, 6, <23:29>, 1, "видели", 0, "null") (7, 6, 7, <30:33>, 1, "эти", 0, "null") (8, 7, 8, <34:39>, 1, "книги", 0, "null")@8@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <12:15>, 1, "что", 0, "null") (4, 3, 4, <16:19>, 1, "где", 0, "null") (5, 4, 5, <20:22>, 1, "мы", 0, "null") (6, 5, 6, <23:29>, 1, "видели", 0, "null") (7, 6, 7, <30:33>, 1, "эти", 0, "null") (8, 7, 8, <34:39>, 1, "книги", 0, "null")@0@-1@78@78@-1@79@-1@-1@-1@-1@-1@-1@2014@423@-1@-1@-1@-1@-1@-1@-1@1223299@541364@-1@-1@38258828@-1@-1@-1@@@ +279@0@279@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <11:16>, 1, "какие", 0, "null") (4, 3, 4, <17:22>, 1, "книги", 0, "null") (5, 4, 5, <23:25>, 1, "мы", 0, "null") (6, 5, 6, <26:29>, 1, "где", 0, "null") (7, 6, 7, <30:36>, 1, "видели", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <11:16>, 1, "какие", 0, "null") (4, 3, 4, <17:22>, 1, "книги", 0, "null") (5, 4, 5, <23:25>, 1, "мы", 0, "null") (6, 5, 6, <26:29>, 1, "где", 0, "null") (7, 6, 7, <30:36>, 1, "видели", 0, "null")@0@-1@39@39@-1@39@-1@-1@-1@-1@-1@-1@324@396@-1@-1@-1@-1@-1@-1@-1@1225435@542139@-1@-1@9536700@-1@-1@-1@@@ +280@0@280@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <11:14>, 1, "эти", 0, "null") (4, 3, 4, <15:20>, 1, "книги", 0, "null") (5, 4, 5, <21:23>, 1, "мы", 0, "null") (6, 5, 6, <24:27>, 1, "где", 0, "null") (7, 6, 7, <28:34>, 1, "видели", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <11:14>, 1, "эти", 0, "null") (4, 3, 4, <15:20>, 1, "книги", 0, "null") (5, 4, 5, <21:23>, 1, "мы", 0, "null") (6, 5, 6, <24:27>, 1, "где", 0, "null") (7, 6, 7, <28:34>, 1, "видели", 0, "null")@0@-1@34@34@-1@35@-1@-1@-1@-1@-1@-1@320@377@-1@-1@-1@-1@-1@-1@-1@1227288@542890@-1@-1@9338088@-1@-1@-1@@@ +281@0@281@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <11:16>, 1, "книги", 0, "null") (4, 3, 4, <17:19>, 1, "мы", 0, "null") (5, 4, 5, <20:23>, 1, "где", 0, "null") (6, 5, 6, <24:30>, 1, "видели", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:10>, 1, "думает", 0, "null") (3, 2, 3, <11:16>, 1, "книги", 0, "null") (4, 3, 4, <17:19>, 1, "мы", 0, "null") (5, 4, 5, <20:23>, 1, "где", 0, "null") (6, 5, 6, <24:30>, 1, "видели", 0, "null")@0@-1@34@34@-1@34@-1@-1@-1@-1@-1@-1@292@367@-1@-1@-1@-1@-1@-1@-1@1229077@543602@-1@-1@8815592@-1@-1@-1@@@ +282@0@282@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "знает", 0, "null") (3, 2, 3, <11:14>, 1, "где", 0, "null") (4, 3, 4, <15:17>, 1, "мы", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:28>, 1, "видели", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "знает", 0, "null") (3, 2, 3, <11:14>, 1, "где", 0, "null") (4, 3, 4, <15:17>, 1, "мы", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:28>, 1, "видели", 0, "null")@4@-1@310@310@-1@313@-1@-1@-1@-1@-1@-1@918@1347@-1@-1@-1@-1@-1@-1@-1@1234699@545913@-1@-1@34640200@-1@-1@-1@@@ +283@0@283@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "знает", 0, "null") (3, 2, 3, <11:14>, 1, "что", 0, "null") (4, 3, 4, <15:18>, 1, "где", 0, "null") (5, 4, 5, <19:21>, 1, "мы", 0, "null") (6, 5, 6, <22:25>, 1, "что", 0, "null") (7, 6, 7, <26:32>, 1, "видели", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:9>, 1, "знает", 0, "null") (3, 2, 3, <11:14>, 1, "что", 0, "null") (4, 3, 4, <15:18>, 1, "где", 0, "null") (5, 4, 5, <19:21>, 1, "мы", 0, "null") (6, 5, 6, <22:25>, 1, "что", 0, "null") (7, 6, 7, <26:32>, 1, "видели", 0, "null")@0@-1@47@47@-1@49@-1@-1@-1@-1@-1@-1@677@400@-1@-1@-1@-1@-1@-1@-1@1238838@547068@-1@-1@16042704@-1@-1@-1@@@ +284@0@284@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +285@0@285@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +286@0@286@7@(1, 0, 1, <2:8>, 1, "Second", 0, "null") (2, 1, 2, <9:17>, 1, "position", 0, "null") (3, 2, 3, <18:26>, 1, "question", 0, "null") (4, 3, 4, <27:33>, 1, "clitic", 0, "null") (5, 4, 5, <34:36>, 1, "in", 0, "null") (6, 5, 6, <37:45>, 1, "embedded", 0, "null") (7, 6, 7, <46:55>, 1, "questions", 0, "null")@7@(1, 0, 1, <2:8>, 1, "Second", 0, "null") (2, 1, 2, <9:17>, 1, "position", 0, "null") (3, 2, 3, <18:26>, 1, "question", 0, "null") (4, 3, 4, <27:33>, 1, "clitic", 0, "null") (5, 4, 5, <34:36>, 1, "in", 0, "null") (6, 5, 6, <37:45>, 1, "embedded", 0, "null") (7, 6, 7, <46:55>, 1, "questions", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1238838@547068@-1@-1@4492@-1@-1@-1@@post-reduction lexical gap@ +287@0@287@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:21>, 1, "видит", 0, "null") (4, 3, 4, <22:24>, 1, "ли", 0, "null") (5, 4, 5, <25:29>, 1, "Иван", 0, "null") (6, 5, 6, <30:34>, 1, "Машу", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:21>, 1, "видит", 0, "null") (4, 3, 4, <22:24>, 1, "ли", 0, "null") (5, 4, 5, <25:29>, 1, "Иван", 0, "null") (6, 5, 6, <30:34>, 1, "Машу", 0, "null")@0@-1@1310@1310@-1@1317@-1@-1@-1@-1@-1@-1@13536@2039@-1@-1@-1@-1@-1@-1@-1@1270273@562671@-1@-1@317215048@-1@-1@-1@@@ +288@0@288@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:19>, 1, "что", 0, "null") (4, 3, 4, <20:25>, 1, "видит", 0, "null") (5, 4, 5, <26:28>, 1, "ли", 0, "null") (6, 5, 6, <29:33>, 1, "Иван", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:19>, 1, "что", 0, "null") (4, 3, 4, <20:25>, 1, "видит", 0, "null") (5, 4, 5, <26:28>, 1, "ли", 0, "null") (6, 5, 6, <29:33>, 1, "Иван", 0, "null")@0@-1@744@744@-1@751@-1@-1@-1@-1@-1@-1@8429@1339@-1@-1@-1@-1@-1@-1@-1@1289909@572472@-1@-1@198530640@-1@-1@-1@@@ +289@0@289@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:18>, 1, "ли", 0, "null") (4, 3, 4, <19:24>, 1, "видит", 0, "null") (5, 4, 5, <25:29>, 1, "Иван", 0, "null") (6, 5, 6, <30:34>, 1, "Машу", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:18>, 1, "ли", 0, "null") (4, 3, 4, <19:24>, 1, "видит", 0, "null") (5, 4, 5, <25:29>, 1, "Иван", 0, "null") (6, 5, 6, <30:34>, 1, "Машу", 0, "null")@0@-1@123@123@-1@125@-1@-1@-1@-1@-1@-1@2534@396@-1@-1@-1@-1@-1@-1@-1@1294921@575442@-1@-1@51233888@-1@-1@-1@@@ +290@0@290@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:19>, 1, "что", 0, "null") (4, 3, 4, <20:25>, 1, "видит", 0, "null") (5, 4, 5, <26:28>, 1, "ли", 0, "null") (6, 5, 6, <29:33>, 1, "Иван", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:19>, 1, "что", 0, "null") (4, 3, 4, <20:25>, 1, "видит", 0, "null") (5, 4, 5, <26:28>, 1, "ли", 0, "null") (6, 5, 6, <29:33>, 1, "Иван", 0, "null")@0@-1@775@775@-1@799@-1@-1@-1@-1@-1@-1@8429@1339@-1@-1@-1@-1@-1@-1@-1@1314557@585243@-1@-1@198530640@-1@-1@-1@@@ +291@0@291@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:18>, 1, "ли", 0, "null") (4, 3, 4, <19:24>, 1, "видит", 0, "null") (5, 4, 5, <25:29>, 1, "Иван", 0, "null") (6, 5, 6, <30:34>, 1, "Машу", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:18>, 1, "ли", 0, "null") (4, 3, 4, <19:24>, 1, "видит", 0, "null") (5, 4, 5, <25:29>, 1, "Иван", 0, "null") (6, 5, 6, <30:34>, 1, "Машу", 0, "null")@0@-1@135@135@-1@136@-1@-1@-1@-1@-1@-1@2534@396@-1@-1@-1@-1@-1@-1@-1@1319569@588213@-1@-1@51233888@-1@-1@-1@@@ +292@0@292@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:10>, 1, "думаешь", 0, "null") (3, 2, 3, <12:17>, 1, "видит", 0, "null") (4, 3, 4, <18:20>, 1, "ли", 0, "null") (5, 4, 5, <21:25>, 1, "Иван", 0, "null") (6, 5, 6, <26:30>, 1, "Машу", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:10>, 1, "думаешь", 0, "null") (3, 2, 3, <12:17>, 1, "видит", 0, "null") (4, 3, 4, <18:20>, 1, "ли", 0, "null") (5, 4, 5, <21:25>, 1, "Иван", 0, "null") (6, 5, 6, <26:30>, 1, "Машу", 0, "null")@0@-1@2414@2414@-1@2479@-1@-1@-1@-1@-1@-1@19773@2984@-1@-1@-1@-1@-1@-1@-1@1364045@610998@-1@-1@465681856@-1@-1@-1@@@ +293@0@293@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:6>, 1, "ли", 0, "null") (3, 2, 3, <7:11>, 1, "идет", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Кто", 0, "null") (2, 1, 2, <4:6>, 1, "ли", 0, "null") (3, 2, 3, <7:11>, 1, "идет", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@10@-1@-1@-1@-1@-1@-1@-1@1364094@611026@-1@-1@341676@-1@-1@-1@@@ +294@0@294@4@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:6>, 1, "ли", 0, "null") (3, 2, 3, <7:11>, 1, "Иван", 0, "null") (4, 3, 4, <12:17>, 1, "видит", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Что", 0, "null") (2, 1, 2, <4:6>, 1, "ли", 0, "null") (3, 2, 3, <7:11>, 1, "Иван", 0, "null") (4, 3, 4, <12:17>, 1, "видит", 0, "null")@0@-1@11@11@-1@11@-1@-1@-1@-1@-1@-1@42@145@-1@-1@-1@-1@-1@-1@-1@1364630@611244@-1@-1@2458480@-1@-1@-1@@@ +295@0@295@8@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:5>, 1, "не", 0, "null") (3, 2, 3, <6:17>, 1, "спрашиваешь", 0, "null") (4, 3, 4, <19:25>, 1, "читает", 0, "null") (5, 4, 5, <26:28>, 1, "ли", 0, "null") (6, 5, 6, <29:33>, 1, "Иван", 0, "null") (7, 6, 7, <34:37>, 1, "эту", 0, "null") (8, 7, 8, <38:43>, 1, "книгу", 0, "null")@8@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:5>, 1, "не", 0, "null") (3, 2, 3, <6:17>, 1, "спрашиваешь", 0, "null") (4, 3, 4, <19:25>, 1, "читает", 0, "null") (5, 4, 5, <26:28>, 1, "ли", 0, "null") (6, 5, 6, <29:33>, 1, "Иван", 0, "null") (7, 6, 7, <34:37>, 1, "эту", 0, "null") (8, 7, 8, <38:43>, 1, "книгу", 0, "null")@0@-1@106@106@-1@108@-1@-1@-1@-1@-1@-1@2610@384@-1@-1@-1@-1@-1@-1@-1@1371079@614254@-1@-1@59111740@-1@-1@-1@@@ +296@0@296@7@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:22>, 1, "читает", 0, "null") (4, 3, 4, <23:25>, 1, "ли", 0, "null") (5, 4, 5, <26:30>, 1, "Иван", 0, "null") (6, 5, 6, <31:34>, 1, "эту", 0, "null") (7, 6, 7, <35:40>, 1, "книгу", 0, "null")@7@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:14>, 1, "спрашиваешь", 0, "null") (3, 2, 3, <16:22>, 1, "читает", 0, "null") (4, 3, 4, <23:25>, 1, "ли", 0, "null") (5, 4, 5, <26:30>, 1, "Иван", 0, "null") (6, 5, 6, <31:34>, 1, "эту", 0, "null") (7, 6, 7, <35:40>, 1, "книгу", 0, "null")@0@-1@135@135@-1@137@-1@-1@-1@-1@-1@-1@2662@406@-1@-1@-1@-1@-1@-1@-1@1377656@617341@-1@-1@60599728@-1@-1@-1@@@ +297@0@297@7@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <13:15>, 1, "ты", 0, "null") (4, 3, 4, <16:27>, 1, "спрашиваешь", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null") (6, 5, 6, <36:38>, 1, "ли", 0, "null") (7, 6, 7, <39:43>, 1, "Иван", 0, "null")@7@(1, 0, 1, <0:5>, 1, "Какую", 0, "null") (2, 1, 2, <6:11>, 1, "книгу", 0, "null") (3, 2, 3, <13:15>, 1, "ты", 0, "null") (4, 3, 4, <16:27>, 1, "спрашиваешь", 0, "null") (5, 4, 5, <29:35>, 1, "читает", 0, "null") (6, 5, 6, <36:38>, 1, "ли", 0, "null") (7, 6, 7, <39:43>, 1, "Иван", 0, "null")@0@-1@138@138@-1@139@-1@-1@-1@-1@-1@-1@2808@427@-1@-1@-1@-1@-1@-1@-1@1384632@620596@-1@-1@64226424@-1@-1@-1@@@ +298@0@298@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:9>, 1, "знаешь", 0, "null") (3, 2, 3, <11:16>, 1, "видит", 0, "null") (4, 3, 4, <17:19>, 1, "ли", 0, "null") (5, 4, 5, <20:24>, 1, "Иван", 0, "null") (6, 5, 6, <25:29>, 1, "Машу", 0, "null")@6@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:9>, 1, "знаешь", 0, "null") (3, 2, 3, <11:16>, 1, "видит", 0, "null") (4, 3, 4, <17:19>, 1, "ли", 0, "null") (5, 4, 5, <20:24>, 1, "Иван", 0, "null") (6, 5, 6, <25:29>, 1, "Машу", 0, "null")@0@-1@5001@5001@-1@5123@-1@-1@-1@-1@-1@-1@32625@4920@-1@-1@-1@-1@-1@-1@-1@1459288@658178@-1@-1@770791288@-1@-1@-1@@@ +299@0@299@7@(1, 0, 1, <0:6>, 1, "Знаешь", 0, "null") (2, 1, 2, <7:9>, 1, "ли", 0, "null") (3, 2, 3, <10:12>, 1, "ты", 0, "null") (4, 3, 4, <14:19>, 1, "видит", 0, "null") (5, 4, 5, <20:22>, 1, "ли", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:32>, 1, "Машу", 0, "null")@7@(1, 0, 1, <0:6>, 1, "Знаешь", 0, "null") (2, 1, 2, <7:9>, 1, "ли", 0, "null") (3, 2, 3, <10:12>, 1, "ты", 0, "null") (4, 3, 4, <14:19>, 1, "видит", 0, "null") (5, 4, 5, <20:22>, 1, "ли", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:32>, 1, "Машу", 0, "null")@0@-1@72@72@-1@72@-1@-1@-1@-1@-1@-1@1869@288@-1@-1@-1@-1@-1@-1@-1@1463519@660365@-1@-1@36855224@-1@-1@-1@@@ +300@0@300@7@(1, 0, 1, <0:7>, 1, "Думаешь", 0, "null") (2, 1, 2, <8:10>, 1, "ли", 0, "null") (3, 2, 3, <11:13>, 1, "ты", 0, "null") (4, 3, 4, <15:20>, 1, "видит", 0, "null") (5, 4, 5, <21:23>, 1, "ли", 0, "null") (6, 5, 6, <24:28>, 1, "Иван", 0, "null") (7, 6, 7, <29:33>, 1, "Машу", 0, "null")@7@(1, 0, 1, <0:7>, 1, "Думаешь", 0, "null") (2, 1, 2, <8:10>, 1, "ли", 0, "null") (3, 2, 3, <11:13>, 1, "ты", 0, "null") (4, 3, 4, <15:20>, 1, "видит", 0, "null") (5, 4, 5, <21:23>, 1, "ли", 0, "null") (6, 5, 6, <24:28>, 1, "Иван", 0, "null") (7, 6, 7, <29:33>, 1, "Машу", 0, "null")@0@-1@52@52@-1@52@-1@-1@-1@-1@-1@-1@1406@217@-1@-1@-1@-1@-1@-1@-1@1466654@662013@-1@-1@27435712@-1@-1@-1@@@ +301@0@301@7@(1, 0, 1, <0:11>, 1, "Спрашиваешь", 0, "null") (2, 1, 2, <12:14>, 1, "ли", 0, "null") (3, 2, 3, <15:17>, 1, "ты", 0, "null") (4, 3, 4, <19:24>, 1, "видит", 0, "null") (5, 4, 5, <25:27>, 1, "ли", 0, "null") (6, 5, 6, <28:32>, 1, "Иван", 0, "null") (7, 6, 7, <33:37>, 1, "Машу", 0, "null")@7@(1, 0, 1, <0:11>, 1, "Спрашиваешь", 0, "null") (2, 1, 2, <12:14>, 1, "ли", 0, "null") (3, 2, 3, <15:17>, 1, "ты", 0, "null") (4, 3, 4, <19:24>, 1, "видит", 0, "null") (5, 4, 5, <25:27>, 1, "ли", 0, "null") (6, 5, 6, <28:32>, 1, "Иван", 0, "null") (7, 6, 7, <33:37>, 1, "Машу", 0, "null")@0@-1@38@38@-1@38@-1@-1@-1@-1@-1@-1@1154@175@-1@-1@-1@-1@-1@-1@-1@1469243@663367@-1@-1@21649148@-1@-1@-1@@@ +302@0@302@7@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:5>, 1, "не", 0, "null") (3, 2, 3, <6:12>, 1, "знаешь", 0, "null") (4, 3, 4, <14:19>, 1, "видит", 0, "null") (5, 4, 5, <20:22>, 1, "ли", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:32>, 1, "Машу", 0, "null")@7@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:5>, 1, "не", 0, "null") (3, 2, 3, <6:12>, 1, "знаешь", 0, "null") (4, 3, 4, <14:19>, 1, "видит", 0, "null") (5, 4, 5, <20:22>, 1, "ли", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:32>, 1, "Машу", 0, "null")@0@-1@4115@4115@-1@4228@-1@-1@-1@-1@-1@-1@35348@5214@-1@-1@-1@-1@-1@-1@-1@1550118@704013@-1@-1@835745820@-1@-1@-1@@@ +303@0@303@7@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:9>, 1, "знаешь", 0, "null") (3, 2, 3, <11:14>, 1, "что", 0, "null") (4, 3, 4, <15:20>, 1, "видит", 0, "null") (5, 4, 5, <21:23>, 1, "ли", 0, "null") (6, 5, 6, <24:28>, 1, "Иван", 0, "null") (7, 6, 7, <29:33>, 1, "Машу", 0, "null")@7@(1, 0, 1, <0:2>, 1, "Ты", 0, "null") (2, 1, 2, <3:9>, 1, "знаешь", 0, "null") (3, 2, 3, <11:14>, 1, "что", 0, "null") (4, 3, 4, <15:20>, 1, "видит", 0, "null") (5, 4, 5, <21:23>, 1, "ли", 0, "null") (6, 5, 6, <24:28>, 1, "Иван", 0, "null") (7, 6, 7, <29:33>, 1, "Машу", 0, "null")@0@-1@2408@2408@-1@2466@-1@-1@-1@-1@-1@-1@15160@2359@-1@-1@-1@-1@-1@-1@-1@1585166@721575@-1@-1@364680152@-1@-1@-1@@@ +304@0@304@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +305@0@305@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +306@0@306@3@(1, 0, 1, <2:13>, 1, "Infinitival", 0, "null") (2, 1, 2, <14:22>, 1, "embedded", 0, "null") (3, 2, 3, <23:32>, 1, "questions", 0, "null")@3@(1, 0, 1, <2:13>, 1, "Infinitival", 0, "null") (2, 1, 2, <14:22>, 1, "embedded", 0, "null") (3, 2, 3, <23:32>, 1, "questions", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1585166@721575@-1@-1@2060@-1@-1@-1@@post-reduction lexical gap@ +307@0@307@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:31>, 1, "эту", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:31>, 1, "эту", 0, "null") (6, 5, 6, <32:37>, 1, "книгу", 0, "null")@4@-1@1169@1169@-1@1181@-1@-1@-1@-1@-1@-1@7884@2392@-1@-1@-1@-1@-1@-1@-1@1607012@731878@-1@-1@193394272@-1@-1@-1@@@ +308@0@308@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:33>, 1, "какую", 0, "null") (6, 5, 6, <34:39>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:33>, 1, "какую", 0, "null") (6, 5, 6, <34:39>, 1, "книгу", 0, "null")@5@-1@1378@1378@-1@1392@-1@-1@-1@-1@-1@-1@7885@2676@-1@-1@-1@-1@-1@-1@-1@1631740@742510@-1@-1@198280128@-1@-1@-1@@@ +309@0@309@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:31>, 1, "читать", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:24>, 1, "что", 0, "null") (5, 4, 5, <25:31>, 1, "читать", 0, "null")@8@-1@859@859@-1@873@-1@-1@-1@-1@-1@-1@768@1864@-1@-1@-1@-1@-1@-1@-1@1642735@745219@-1@-1@41614272@-1@-1@-1@@@ +310@0@310@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:31>, 1, "что", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:31>, 1, "что", 0, "null")@5@-1@3492@3492@-1@3559@-1@-1@-1@-1@-1@-1@7876@4227@-1@-1@-1@-1@-1@-1@-1@1675258@757572@-1@-1@223625224@-1@-1@-1@@@ +311@0@311@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:33>, 1, "книгу", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:15>, 1, "спрашивает", 0, "null") (3, 2, 3, <17:20>, 1, "как", 0, "null") (4, 3, 4, <21:27>, 1, "читать", 0, "null") (5, 4, 5, <28:33>, 1, "книгу", 0, "null")@4@-1@2884@2884@-1@2984@-1@-1@-1@-1@-1@-1@7878@3874@-1@-1@-1@-1@-1@-1@-1@1706350@769395@-1@-1@214912136@-1@-1@-1@@@ +312@0@312@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "как", 0, "null") (4, 3, 4, <17:23>, 1, "читать", 0, "null") (5, 4, 5, <24:27>, 1, "эту", 0, "null") (6, 5, 6, <28:33>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:11>, 1, "думает", 0, "null") (3, 2, 3, <13:16>, 1, "как", 0, "null") (4, 3, 4, <17:23>, 1, "читать", 0, "null") (5, 4, 5, <24:27>, 1, "эту", 0, "null") (6, 5, 6, <28:33>, 1, "книгу", 0, "null")@1@-1@343@343@-1@347@-1@-1@-1@-1@-1@-1@3267@1001@-1@-1@-1@-1@-1@-1@-1@1720943@773731@-1@-1@80516216@-1@-1@-1@@@ +313@0@313@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "как", 0, "null") (4, 3, 4, <16:22>, 1, "читать", 0, "null") (5, 4, 5, <23:26>, 1, "эту", 0, "null") (6, 5, 6, <27:32>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "знает", 0, "null") (3, 2, 3, <12:15>, 1, "как", 0, "null") (4, 3, 4, <16:22>, 1, "читать", 0, "null") (5, 4, 5, <23:26>, 1, "эту", 0, "null") (6, 5, 6, <27:32>, 1, "книгу", 0, "null")@5@-1@1960@1960@-1@1999@-1@-1@-1@-1@-1@-1@10694@3255@-1@-1@-1@-1@-1@-1@-1@1754092@787731@-1@-1@264904672@-1@-1@-1@@@ +314@0@314@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +315@0@315@1@(1, 0, 1, <2:14>, 1, "Coordination", 0, "null")@1@(1, 0, 1, <2:14>, 1, "Coordination", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1756826@787779@-1@-1@804@-1@-1@-1@@post-reduction lexical gap@ +316@0@316@6@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:5>, 1, "и", 0, "null") (3, 2, 3, <6:11>, 1, "когда", 0, "null") (4, 3, 4, <12:16>, 1, "Иван", 0, "null") (5, 4, 5, <17:22>, 1, "купил", 0, "null") (6, 5, 6, <23:28>, 1, "книгу", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Где", 0, "null") (2, 1, 2, <4:5>, 1, "и", 0, "null") (3, 2, 3, <6:11>, 1, "когда", 0, "null") (4, 3, 4, <12:16>, 1, "Иван", 0, "null") (5, 4, 5, <17:22>, 1, "купил", 0, "null") (6, 5, 6, <23:28>, 1, "книгу", 0, "null")@2@-1@35@35@-1@35@-1@-1@-1@-1@-1@-1@682@289@-1@-1@-1@-1@-1@-1@-1@1758718@788776@-1@-1@15607664@-1@-1@-1@@@ +317@0@317@5@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:6>, 1, "и", 0, "null") (3, 2, 3, <7:10>, 1, "что", 0, "null") (4, 3, 4, <11:15>, 1, "Иван", 0, "null") (5, 4, 5, <16:21>, 1, "видит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:6>, 1, "и", 0, "null") (3, 2, 3, <7:10>, 1, "что", 0, "null") (4, 3, 4, <11:15>, 1, "Иван", 0, "null") (5, 4, 5, <16:21>, 1, "видит", 0, "null")@1@-1@18@18@-1@18@-1@-1@-1@-1@-1@-1@61@214@-1@-1@-1@-1@-1@-1@-1@1760192@789101@-1@-1@3538248@-1@-1@-1@@@ +318@0@318@4@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <9:13>, 1, "Иван", 0, "null") (4, 3, 4, <14:19>, 1, "видит", 0, "null")@4@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:8>, 1, "что", 0, "null") (3, 2, 3, <9:13>, 1, "Иван", 0, "null") (4, 3, 4, <14:19>, 1, "видит", 0, "null")@0@-1@16@16@-1@16@-1@-1@-1@-1@-1@-1@43@198@-1@-1@-1@-1@-1@-1@-1@1761096@789381@-1@-1@3013528@-1@-1@-1@@@ +319@0@319@5@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:6>, 1, "и", 0, "null") (3, 2, 3, <7:11>, 1, "чему", 0, "null") (4, 3, 4, <12:16>, 1, "Иван", 0, "null") (5, 4, 5, <17:22>, 1, "видит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:6>, 1, "и", 0, "null") (3, 2, 3, <7:11>, 1, "чему", 0, "null") (4, 3, 4, <12:16>, 1, "Иван", 0, "null") (5, 4, 5, <17:22>, 1, "видит", 0, "null")@0@-1@11@11@-1@11@-1@-1@-1@-1@-1@-1@47@146@-1@-1@-1@-1@-1@-1@-1@1761675@789605@-1@-1@2529072@-1@-1@-1@@@ +320@0@320@5@(1, 0, 1, <0:4>, 1, "Кому", 0, "null") (2, 1, 2, <5:6>, 1, "и", 0, "null") (3, 2, 3, <7:11>, 1, "чему", 0, "null") (4, 3, 4, <12:16>, 1, "Иван", 0, "null") (5, 4, 5, <17:22>, 1, "видит", 0, "null")@5@(1, 0, 1, <0:4>, 1, "Кому", 0, "null") (2, 1, 2, <5:6>, 1, "и", 0, "null") (3, 2, 3, <7:11>, 1, "чему", 0, "null") (4, 3, 4, <12:16>, 1, "Иван", 0, "null") (5, 4, 5, <17:22>, 1, "видит", 0, "null")@0@-1@12@12@-1@13@-1@-1@-1@-1@-1@-1@56@148@-1@-1@-1@-1@-1@-1@-1@1762342@789840@-1@-1@2682524@-1@-1@-1@@@ +321@0@321@7@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:26>, 1, "Иван", 0, "null") (7, 6, 7, <27:33>, 1, "слышит", 0, "null")@7@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:26>, 1, "Иван", 0, "null") (7, 6, 7, <27:33>, 1, "слышит", 0, "null")@1@-1@52@52@-1@52@-1@-1@-1@-1@-1@-1@1087@355@-1@-1@-1@-1@-1@-1@-1@1764985@791342@-1@-1@22760904@-1@-1@-1@@@ +322@0@322@7@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:22>, 1, "чему", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:34>, 1, "слышит", 0, "null")@7@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:22>, 1, "чему", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:34>, 1, "слышит", 0, "null")@0@-1@44@44@-1@44@-1@-1@-1@-1@-1@-1@1082@299@-1@-1@-1@-1@-1@-1@-1@1767763@792796@-1@-1@21896288@-1@-1@-1@@@ +323@0@323@7@(1, 0, 1, <0:4>, 1, "Кому", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:22>, 1, "чему", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:34>, 1, "слышит", 0, "null")@7@(1, 0, 1, <0:4>, 1, "Кому", 0, "null") (2, 1, 2, <5:9>, 1, "Иван", 0, "null") (3, 2, 3, <10:15>, 1, "видит", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:22>, 1, "чему", 0, "null") (6, 5, 6, <23:27>, 1, "Иван", 0, "null") (7, 6, 7, <28:34>, 1, "слышит", 0, "null")@0@-1@44@44@-1@44@-1@-1@-1@-1@-1@-1@1014@288@-1@-1@-1@-1@-1@-1@-1@1770151@794157@-1@-1@20555888@-1@-1@-1@@@ +324@0@324@7@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:29>, 1, "слышала", 0, "null") (7, 6, 7, <30:34>, 1, "Маша", 0, "null")@7@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:29>, 1, "слышала", 0, "null") (7, 6, 7, <30:34>, 1, "Маша", 0, "null")@1@-1@88@88@-1@90@-1@-1@-1@-1@-1@-1@2146@455@-1@-1@-1@-1@-1@-1@-1@1774784@796822@-1@-1@41153512@-1@-1@-1@@@ +325@0@325@6@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:28>, 1, "слышит", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видит", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:28>, 1, "слышит", 0, "null")@1@-1@49@49@-1@49@-1@-1@-1@-1@-1@-1@1206@336@-1@-1@-1@-1@-1@-1@-1@1777994@798429@-1@-1@24188992@-1@-1@-1@@@ +326@0@326@6@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видел", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:29>, 1, "слышала", 0, "null")@6@(1, 0, 1, <0:4>, 1, "Кого", 0, "null") (2, 1, 2, <5:10>, 1, "видел", 0, "null") (3, 2, 3, <11:15>, 1, "Иван", 0, "null") (4, 3, 4, <16:17>, 1, "и", 0, "null") (5, 4, 5, <18:21>, 1, "что", 0, "null") (6, 5, 6, <22:29>, 1, "слышала", 0, "null")@1@-1@47@47@-1@47@-1@-1@-1@-1@-1@-1@1206@336@-1@-1@-1@-1@-1@-1@-1@1781188@800034@-1@-1@24188440@-1@-1@-1@@@ +327@0@327@5@(1, 0, 1, <0:4>, 1, "Иван", 0, "null") (2, 1, 2, <5:10>, 1, "лежит", 0, "null") (3, 2, 3, <11:12>, 1, "и", 0, "null") (4, 3, 4, <13:19>, 1, "читает", 0, "null") (5, 4, 5, <20:25>, 1, "книгу", 0, "null")@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh-dev-rus/preference b/tests/regression/home/gold/wh-dev-rus/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-dev-rus/relations b/tests/regression/home/gold/wh-dev-rus/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh-dev-rus/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh-dev-rus/result b/tests/regression/home/gold/wh-dev-rus/result new file mode 100644 index 000000000..26dbe40fd --- /dev/null +++ b/tests/regression/home/gold/wh-dev-rus/result @@ -0,0 +1,308 @@ +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(160 subj-head 0.000000 0 2 (158 bare-np 0.000000 0 1 (157 nom1-lex 0.000000 0 1 (3 Иван 0.000000 0 1 ("Иван")))) (159 3sg-pres-suffix2 0.000000 1 2 (4 леж 0.000000 1 2 ("лежит"))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("лежит"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_lie_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(194 head-subj 0.000000 0 2 (191 3sg-pres-suffix2 0.000000 0 1 (3 леж 0.000000 0 1 ("Лежит"))) (193 bare-np 0.000000 1 2 (192 nom1-lex 0.000000 1 2 (4 Иван 0.000000 1 2 ("Иван")))))@@("S" ("VP" ("VP" ("Лежит"))) ("NP" ("N" ("N" ("Иван")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_lie_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(644 subj-head 0.000000 0 3 (639 bare-np 0.000000 0 1 (638 nom1-lex 0.000000 0 1 (4 Иван 0.000000 0 1 ("Иван")))) (643 head-comp 0.000000 1 3 (640 3sg-pres-suffix1 0.000000 1 2 (5 чита 0.000000 1 2 ("читает"))) (642 bare-np 0.000000 2 3 (641 sg-acc2-suffix1 0.000000 2 3 (6 книг 0.000000 2 3 ("книгу"))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(846 head-subj 0.000000 0 3 (843 head-comp 0.000000 0 2 (840 3sg-pres-suffix1 0.000000 0 1 (4 чита 0.000000 0 1 ("Читает"))) (842 bare-np 0.000000 1 2 (841 sg-acc2-suffix1 0.000000 1 2 (5 книг 0.000000 1 2 ("книгу"))))) (845 bare-np 0.000000 2 3 (844 nom1-lex 0.000000 2 3 (6 Иван 0.000000 2 3 ("Иван")))))@@("S" ("VP" ("V" ("V" ("Читает"))) ("NP" ("N" ("N" ("книгу"))))) ("NP" ("N" ("N" ("Иван")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(579 head-comp 0.000000 0 3 (576 head-subj 0.000000 0 2 (573 3sg-pres-suffix1 0.000000 0 1 (4 чита 0.000000 0 1 ("Читает"))) (575 bare-np 0.000000 1 2 (574 nom1-lex 0.000000 1 2 (5 Иван 0.000000 1 2 ("Иван"))))) (578 bare-np 0.000000 2 3 (577 sg-acc2-suffix1 0.000000 2 3 (6 книг 0.000000 2 3 ("книгу")))))@@("S" ("V" ("V" ("V" ("Читает"))) ("NP" ("N" ("N" ("Иван"))))) ("NP" ("N" ("N" ("книгу")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(281 comp-head 0.000000 0 3 (276 bare-np 0.000000 0 1 (275 sg-acc2-suffix1 0.000000 0 1 (4 книг 0.000000 0 1 ("Книгу")))) (280 subj-head 0.000000 1 3 (278 bare-np 0.000000 1 2 (277 nom1-lex 0.000000 1 2 (5 Иван 0.000000 1 2 ("Иван")))) (279 3sg-pres-suffix1 0.000000 2 3 (6 чита 0.000000 2 3 ("читает")))))@@("S" ("NP" ("N" ("N" ("Книгу")))) ("V" ("NP" ("N" ("N" ("Иван")))) ("V" ("V" ("читает")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(831 comp-head 0.000000 0 3 (826 bare-np 0.000000 0 1 (825 sg-acc2-suffix1 0.000000 0 1 (4 книг 0.000000 0 1 ("Книгу")))) (830 head-subj 0.000000 1 3 (827 3sg-pres-suffix1 0.000000 1 2 (5 чита 0.000000 1 2 ("читает"))) (829 bare-np 0.000000 2 3 (828 nom1-lex 0.000000 2 3 (6 Иван 0.000000 2 3 ("Иван"))))))@@("S" ("NP" ("N" ("N" ("Книгу")))) ("V" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(328 subj-head 0.000000 0 3 (323 bare-np 0.000000 0 1 (322 nom1-lex 0.000000 0 1 (4 Иван 0.000000 0 1 ("Иван")))) (327 comp-head 0.000000 1 3 (325 bare-np 0.000000 1 2 (324 sg-acc2-suffix1 0.000000 1 2 (5 книг 0.000000 1 2 ("книгу")))) (326 3sg-pres-suffix1 0.000000 2 3 (6 чита 0.000000 2 3 ("читает")))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("NP" ("N" ("N" ("книгу")))) ("V" ("V" ("читает")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h10 BODY: h11 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +14@0@-1@-1@-1@-1@-1@-1@-1@-1@(141 wh-ques 0.000000 0 2 (3 кто 0.000000 0 1 ("Кто")) (140 ex-subj 0.000000 1 2 (139 3sg-pres-suffix1 0.000000 1 2 (4 ид 0.000000 1 2 ("идет")))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("VP" ("идет")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +20@0@-1@-1@-1@-1@-1@-1@-1@-1@(151 wh-ques 0.000000 0 2 (3 что_1 0.000000 0 1 ("Что")) (150 ex-subj 0.000000 1 2 (149 3sg-pres-suffix2 0.000000 1 2 (5 леж 0.000000 1 2 ("лежит")))))@@("S" ("NP" ("Что")) ("S" ("VP" ("VP" ("лежит")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_lie_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +23@0@-1@-1@-1@-1@-1@-1@-1@-1@(1147 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (1146 ex-subj 0.000000 1 3 (1145 head-comp 0.000000 1 3 (1142 3sg-pres-suffix2 0.000000 1 2 (7 вид_1 0.000000 1 2 ("видит"))) (1144 bare-np 0.000000 2 3 (1143 nom-acc5-lex 0.000000 2 3 (8 сон 0.000000 2 3 ("сон")))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("сон")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dream_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +24@0@-1@-1@-1@-1@-1@-1@-1@-1@(430 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (429 ex-subj 0.000000 1 3 (428 comp-head 0.000000 1 3 (426 bare-np 0.000000 1 2 (425 nom-acc5-lex 0.000000 1 2 (5 сон 0.000000 1 2 ("сон")))) (427 3sg-pres-suffix2 0.000000 2 3 (8 вид_1 0.000000 2 3 ("видит"))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("NP" ("N" ("N" ("сон")))) ("V" ("V" ("видит"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_dream_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +25@0@-1@-1@-1@-1@-1@-1@-1@-1@(1022 in-situ-ques 0.000000 0 3 (1021 head-comp 0.000000 0 3 (1018 head-subj 0.000000 0 2 (1017 3sg-pres-suffix2 0.000000 0 1 (6 вид_1 0.000000 0 1 ("Видит"))) (7 кто 0.000000 1 2 ("кто"))) (1020 bare-np 0.000000 2 3 (1019 nom-acc5-lex 0.000000 2 3 (8 сон 0.000000 2 3 ("сон"))))))@@("S" ("S" ("V" ("V" ("V" ("Видит"))) ("NP" ("кто"))) ("NP" ("N" ("N" ("сон"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: masc ] ] [ "_person_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_dream_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h7 qeq h5 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +26@0@-1@-1@-1@-1@-1@-1@-1@-1@(1729 in-situ-ques 0.000000 0 3 (1728 head-subj 0.000000 0 3 (1727 head-comp 0.000000 0 2 (1724 3sg-pres-suffix2 0.000000 0 1 (6 вид_1 0.000000 0 1 ("Видит"))) (1726 bare-np 0.000000 1 2 (1725 nom-acc5-lex 0.000000 1 2 (7 сон 0.000000 1 2 ("сон"))))) (8 кто 0.000000 2 3 ("кто"))))@@("S" ("S" ("VP" ("V" ("V" ("Видит"))) ("NP" ("N" ("N" ("сон"))))) ("NP" ("кто"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_dream_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +27@0@-1@-1@-1@-1@-1@-1@-1@-1@(323 in-situ-ques 0.000000 0 3 (322 comp-head 0.000000 0 3 (319 bare-np 0.000000 0 1 (318 nom-acc5-lex 0.000000 0 1 (4 сон 0.000000 0 1 ("Сон")))) (321 subj-head 0.000000 1 3 (5 кто 0.000000 1 2 ("кто")) (320 3sg-pres-suffix2 0.000000 2 3 (8 вид_1 0.000000 2 3 ("видит"))))))@@("S" ("S" ("NP" ("N" ("N" ("Сон")))) ("V" ("NP" ("кто")) ("V" ("V" ("видит"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_dream_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +28@0@-1@-1@-1@-1@-1@-1@-1@-1@(1711 in-situ-ques 0.000000 0 3 (1710 comp-head 0.000000 0 3 (1707 bare-np 0.000000 0 1 (1706 nom-acc5-lex 0.000000 0 1 (4 сон 0.000000 0 1 ("Сон")))) (1709 head-subj 0.000000 1 3 (1708 3sg-pres-suffix2 0.000000 1 2 (7 вид_1 0.000000 1 2 ("видит"))) (8 кто 0.000000 2 3 ("кто")))))@@("S" ("S" ("NP" ("N" ("N" ("Сон")))) ("V" ("V" ("V" ("видит"))) ("NP" ("кто")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_dream_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ARG2: x5 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +29@0@-1@-1@-1@-1@-1@-1@-1@-1@(1075 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (1074 ex-subj 0.000000 1 3 (1073 head-comp 0.000000 1 3 (1070 3sg-pres-suffix2 0.000000 1 2 (7 вид_1 0.000000 1 2 ("видит"))) (1072 bare-np 0.000000 2 3 (1071 acc-gen1-suffix 0.000000 2 3 (8 Иван 0.000000 2 3 ("Ивана")))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("Ивана")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +31@0@-1@-1@-1@-1@-1@-1@-1@-1@(1755 wh-ques 0.000000 0 5 (6 кто 0.000000 0 1 ("Кто")) (1754 head-adj 0.000000 1 5 (1750 ex-subj 0.000000 1 3 (1749 head-comp 0.000000 1 3 (1746 3sg-pres-suffix2 0.000000 1 2 (9 вид_1 0.000000 1 2 ("видит"))) (1748 bare-np 0.000000 2 3 (1747 sg-acc2-suffix1 0.000000 2 3 (10 женщин 0.000000 2 3 ("женщину")))))) (1753 head-comp 0.000000 3 5 (11 в 0.000000 3 4 ("в")) (1752 bare-np 0.000000 4 5 (1751 prep1-suffix 0.000000 4 5 (12 книг 0.000000 4 5 ("книге")))))))@@("S" ("NP" ("Кто")) ("S" ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину")))))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +31@1@-1@-1@-1@-1@-1@-1@-1@-1@(1764 wh-ques 0.000000 0 5 (6 кто 0.000000 0 1 ("Кто")) (1763 ex-subj 0.000000 1 5 (1762 head-comp 0.000000 1 5 (1756 3sg-pres-suffix2 0.000000 1 2 (9 вид_1 0.000000 1 2 ("видит"))) (1761 bare-np 0.000000 2 5 (1760 head-adj 0.000000 2 5 (1757 sg-acc2-suffix1 0.000000 2 3 (10 женщин 0.000000 2 3 ("женщину"))) (1759 head-comp 0.000000 3 5 (11 в 0.000000 3 4 ("в")) (1758 bare-np 0.000000 4 5 (1751 prep1-suffix 0.000000 4 5 (12 книг 0.000000 4 5 ("книге"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("N" ("женщину"))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x8 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +34@0@-1@-1@-1@-1@-1@-1@-1@-1@(1399 wh-ques 0.000000 0 3 (4 что_1 0.000000 0 1 ("Что")) (1398 head-subj 0.000000 1 3 (1395 ex-comp 0.000000 1 2 (1394 3sg-pres-suffix2 0.000000 1 2 (8 вид_1 0.000000 1 2 ("видит")))) (1397 bare-np 0.000000 2 3 (1396 nom1-lex 0.000000 2 3 (9 Иван 0.000000 2 3 ("Иван"))))))@@("S" ("NP" ("Что")) ("S" ("VP" ("V" ("V" ("видит")))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +35@0@-1@-1@-1@-1@-1@-1@-1@-1@(1063 wh-ques 0.000000 0 3 (4 кого 0.000000 0 1 ("Кого")) (1062 head-subj 0.000000 1 3 (1059 ex-comp 0.000000 1 2 (1058 3sg-pres-suffix2 0.000000 1 2 (7 вид_1 0.000000 1 2 ("видит")))) (1061 bare-np 0.000000 2 3 (1060 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван"))))))@@("S" ("NP" ("Кого")) ("S" ("VP" ("V" ("V" ("видит")))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +39@0@-1@-1@-1@-1@-1@-1@-1@-1@(355 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (354 wh-ques 0.000000 1 3 (5 что_1 0.000000 1 2 ("что")) (353 ex-subj 0.000000 2 3 (352 ex-comp 0.000000 2 3 (351 3sg-pres-suffix2 0.000000 2 3 (9 вид_1 0.000000 2 3 ("видит")))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видит")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +40@0@-1@-1@-1@-1@-1@-1@-1@-1@(1063 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (1062 ex-subj 0.000000 1 3 (1061 head-comp 0.000000 1 3 (1060 3sg-pres-suffix2 0.000000 1 2 (7 вид_1 0.000000 1 2 ("видит"))) (8 что_1 0.000000 2 3 ("что")))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("что")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +41@0@-1@-1@-1@-1@-1@-1@-1@-1@(1315 wh-ques 0.000000 0 3 (4 что_1 0.000000 0 1 ("Что")) (1314 head-subj 0.000000 1 3 (1313 ex-comp 0.000000 1 2 (1312 3sg-pres-suffix2 0.000000 1 2 (8 вид_1 0.000000 1 2 ("видит")))) (9 кто 0.000000 2 3 ("кто"))))@@("S" ("NP" ("Что")) ("S" ("VP" ("V" ("V" ("видит")))) ("NP" ("кто"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ARG2: x5 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +42@0@-1@-1@-1@-1@-1@-1@-1@-1@(351 wh-ques 0.000000 0 3 (4 кого 0.000000 0 1 ("Кого")) (350 subj-head 0.000000 1 3 (5 что_1 0.000000 1 2 ("что")) (349 ex-comp 0.000000 2 3 (348 3sg-pres-suffix2 0.000000 2 3 (9 вид_1 0.000000 2 3 ("видит"))))))@@("S" ("NP" ("Кого")) ("S" ("NP" ("что")) ("VP" ("V" ("V" ("видит"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +47@0@-1@-1@-1@-1@-1@-1@-1@-1@(325 in-situ-ques 0.000000 0 3 (323 subj-head 0.000000 0 3 (322 bare-np 0.000000 0 1 (321 nom1-lex 0.000000 0 1 (4 Иван 0.000000 0 1 ("Иван")))) (314 head-adj 0.000000 1 3 (313 3sg-pres-suffix1 0.000000 1 2 (5 ид 0.000000 1 2 ("идет"))) (6 куда 0.000000 2 3 ("куда")))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("VP" ("идет"))) ("ADV" ("куда")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.090909)) +47@1@-1@-1@-1@-1@-1@-1@-1@-1@(356 in-situ-ques 0.000000 0 3 (355 head-adj 0.000000 0 3 (354 subj-head 0.000000 0 2 (352 bare-np 0.000000 0 1 (351 nom1-lex 0.000000 0 1 (4 Иван 0.000000 0 1 ("Иван")))) (353 3sg-pres-suffix1 0.000000 1 2 (5 ид 0.000000 1 2 ("идет")))) (6 куда 0.000000 2 3 ("куда"))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("идет")))) ("ADV" ("куда"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.090909)) +48@0@-1@-1@-1@-1@-1@-1@-1@-1@(327 wh-ques 0.000000 0 3 (4 куда 0.000000 0 1 ("Куда")) (326 head-subj 0.000000 1 3 (323 ex-adj-first 0.000000 1 2 (322 3sg-pres-suffix1 0.000000 1 2 (5 ид 0.000000 1 2 ("идет")))) (325 bare-np 0.000000 2 3 (324 nom1-lex 0.000000 2 3 (6 Иван 0.000000 2 3 ("Иван"))))))@@("S" ("ADV" ("Куда")) ("S" ("VP" ("VP" ("VP" ("идет")))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +49@0@-1@-1@-1@-1@-1@-1@-1@-1@(223 in-situ-ques 0.000000 0 3 (222 subj-head 0.000000 0 3 (219 bare-np 0.000000 0 1 (218 nom1-lex 0.000000 0 1 (4 Иван 0.000000 0 1 ("Иван")))) (221 adj-head 0.000000 1 3 (5 куда 0.000000 1 2 ("куда")) (220 3sg-pres-suffix1 0.000000 2 3 (6 ид 0.000000 2 3 ("идет"))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("куда")) ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +50@0@-1@-1@-1@-1@-1@-1@-1@-1@(297 in-situ-ques 0.000000 0 3 (296 head-adj 0.000000 0 3 (295 head-subj 0.000000 0 2 (292 3sg-pres-suffix1 0.000000 0 1 (4 ид 0.000000 0 1 ("Идет"))) (294 bare-np 0.000000 1 2 (293 nom1-lex 0.000000 1 2 (5 Иван 0.000000 1 2 ("Иван"))))) (6 куда 0.000000 2 3 ("куда"))))@@("S" ("S" ("S" ("VP" ("VP" ("Идет"))) ("NP" ("N" ("N" ("Иван"))))) ("ADV" ("куда"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +51@0@-1@-1@-1@-1@-1@-1@-1@-1@(321 in-situ-ques 0.000000 0 3 (319 head-subj 0.000000 0 3 (308 head-adj 0.000000 0 2 (307 3sg-pres-suffix1 0.000000 0 1 (4 ид 0.000000 0 1 ("Идет"))) (5 куда 0.000000 1 2 ("куда"))) (318 bare-np 0.000000 2 3 (317 nom1-lex 0.000000 2 3 (6 Иван 0.000000 2 3 ("Иван"))))))@@("S" ("S" ("VP" ("VP" ("VP" ("Идет"))) ("ADV" ("куда"))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.1)) +52@0@-1@-1@-1@-1@-1@-1@-1@-1@(506 in-situ-ques 0.000000 0 5 (504 subj-head 0.000000 0 5 (493 bare-np 0.000000 0 1 (492 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (499 adj-head 0.000000 1 5 (7 куда 0.000000 1 2 ("куда")) (498 head-adj 0.000000 2 5 (494 3sg-pres-suffix1 0.000000 2 3 (8 ид 0.000000 2 3 ("идет"))) (497 head-comp 0.000000 3 5 (9 в 0.000000 3 4 ("в")) (496 bare-np 0.000000 4 5 (495 prep1-suffix 0.000000 4 5 (10 книг 0.000000 4 5 ("книге")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("куда")) ("VP" ("VP" ("VP" ("идет"))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_book_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +52@1@-1@-1@-1@-1@-1@-1@-1@-1@(527 head-adj 0.000000 0 5 (523 in-situ-ques 0.000000 0 3 (522 subj-head 0.000000 0 3 (519 bare-np 0.000000 0 1 (518 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (521 adj-head 0.000000 1 3 (7 куда 0.000000 1 2 ("куда")) (520 3sg-pres-suffix1 0.000000 2 3 (8 ид 0.000000 2 3 ("идет")))))) (526 head-comp 0.000000 3 5 (9 в 0.000000 3 4 ("в")) (525 bare-np 0.000000 4 5 (524 prep1-suffix 0.000000 4 5 (10 книг 0.000000 4 5 ("книге"))))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("куда")) ("VP" ("VP" ("идет")))))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_book_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +53@0@-1@-1@-1@-1@-1@-1@-1@-1@(480 wh-ques 0.000000 0 5 (6 куда 0.000000 0 1 ("Куда")) (479 head-adj 0.000000 1 5 (475 subj-head 0.000000 1 3 (472 bare-np 0.000000 1 2 (471 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (474 ex-adj-first 0.000000 2 3 (473 3sg-pres-suffix1 0.000000 2 3 (8 ид 0.000000 2 3 ("идет"))))) (478 head-comp 0.000000 3 5 (9 в 0.000000 3 4 ("в")) (477 bare-np 0.000000 4 5 (476 prep1-suffix 0.000000 4 5 (10 книг 0.000000 4 5 ("книге")))))))@@("S" ("ADV" ("Куда")) ("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("VP" ("идет"))))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_book_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +53@1@-1@-1@-1@-1@-1@-1@-1@-1@(503 wh-ques 0.000000 0 5 (6 куда 0.000000 0 1 ("Куда")) (496 subj-head 0.000000 1 5 (494 bare-np 0.000000 1 2 (493 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (490 head-adj 0.000000 2 5 (489 ex-adj-first 0.000000 2 3 (488 3sg-pres-suffix1 0.000000 2 3 (8 ид 0.000000 2 3 ("идет")))) (485 head-comp 0.000000 3 5 (9 в 0.000000 3 4 ("в")) (484 bare-np 0.000000 4 5 (476 prep1-suffix 0.000000 4 5 (10 книг 0.000000 4 5 ("книге"))))))))@@("S" ("ADV" ("Куда")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("VP" ("VP" ("идет")))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_book_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +54@0@-1@-1@-1@-1@-1@-1@-1@-1@(398 wh-ques 0.000000 0 5 (6 куда 0.000000 0 1 ("Куда")) (397 subj-head 0.000000 1 5 (390 bare-np 0.000000 1 2 (389 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (396 adj-head 0.000000 2 5 (393 head-comp 0.000000 2 4 (8 в 0.000000 2 3 ("в")) (392 bare-np 0.000000 3 4 (391 prep1-suffix 0.000000 3 4 (9 книг 0.000000 3 4 ("книге"))))) (395 ex-adj-first 0.000000 4 5 (394 3sg-pres-suffix1 0.000000 4 5 (10 ид 0.000000 4 5 ("идет")))))))@@("S" ("ADV" ("Куда")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))) ("VP" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_book_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +54@1@-1@-1@-1@-1@-1@-1@-1@-1@(408 wh-ques 0.000000 0 5 (6 куда 0.000000 0 1 ("Куда")) (407 subj-head 0.000000 1 5 (404 bare-np 0.000000 1 4 (403 head-adj 0.000000 1 4 (399 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван"))) (402 head-comp 0.000000 2 4 (8 в 0.000000 2 3 ("в")) (401 bare-np 0.000000 3 4 (400 prep1-suffix 0.000000 3 4 (9 книг 0.000000 3 4 ("книге"))))))) (406 ex-adj-first 0.000000 4 5 (405 3sg-pres-suffix1 0.000000 4 5 (10 ид 0.000000 4 5 ("идет"))))))@@("S" ("ADV" ("Куда")) ("S" ("NP" ("N" ("N" ("N" ("Иван"))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))))) ("VP" ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_book_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +55@0@-1@-1@-1@-1@-1@-1@-1@-1@(2033 wh-ques 0.000000 0 4 (5 где 0.000000 0 1 ("Где")) (2032 subj-head 0.000000 1 4 (2026 bare-np 0.000000 1 2 (2025 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван")))) (2031 head-comp 0.000000 2 4 (2028 ex-adj-first 0.000000 2 3 (2027 sg-past-masc-suffix1 0.000000 2 3 (9 вид_1 0.000000 2 3 ("видел")))) (2030 bare-np 0.000000 3 4 (2029 sg-acc2-suffix1 0.000000 3 4 (10 Маш 0.000000 3 4 ("Машу")))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("видел")))) ("NP" ("N" ("N" ("Машу")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_Masha_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +55@1@-1@-1@-1@-1@-1@-1@-1@-1@(2040 wh-ques 0.000000 0 4 (5 где 0.000000 0 1 ("Где")) (2039 subj-head 0.000000 1 4 (2026 bare-np 0.000000 1 2 (2025 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван")))) (2038 ex-adj-first 0.000000 2 4 (2037 head-comp 0.000000 2 4 (2034 sg-past-masc-suffix1 0.000000 2 3 (9 вид_1 0.000000 2 3 ("видел"))) (2036 bare-np 0.000000 3 4 (2035 sg-acc2-suffix1 0.000000 3 4 (10 Маш 0.000000 3 4 ("Машу"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("видел"))) ("NP" ("N" ("N" ("Машу"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_Masha_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +56@0@-1@-1@-1@-1@-1@-1@-1@-1@(930 wh-ques 0.000000 0 4 (5 как_2 0.000000 0 1 ("Как")) (929 subj-head 0.000000 1 4 (923 bare-np 0.000000 1 2 (922 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (928 head-comp 0.000000 2 4 (925 ex-adj-first 0.000000 2 3 (924 3sg-pres-suffix1 0.000000 2 3 (8 пиш 0.000000 2 3 ("пишет")))) (927 bare-np 0.000000 3 4 (926 sg-acc2-suffix2 0.000000 3 4 (9 диссертаци 0.000000 3 4 ("диссертацию")))))))@@("S" ("ADV" ("Как")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("пишет")))) ("NP" ("N" ("N" ("диссертацию")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_write_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_dissertation_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +56@1@-1@-1@-1@-1@-1@-1@-1@-1@(937 wh-ques 0.000000 0 4 (5 как_2 0.000000 0 1 ("Как")) (936 subj-head 0.000000 1 4 (923 bare-np 0.000000 1 2 (922 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (935 ex-adj-first 0.000000 2 4 (934 head-comp 0.000000 2 4 (931 3sg-pres-suffix1 0.000000 2 3 (8 пиш 0.000000 2 3 ("пишет"))) (933 bare-np 0.000000 3 4 (932 sg-acc2-suffix2 0.000000 3 4 (9 диссертаци 0.000000 3 4 ("диссертацию"))))))))@@("S" ("ADV" ("Как")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("пишет"))) ("NP" ("N" ("N" ("диссертацию"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_write_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_dissertation_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +57@0@-1@-1@-1@-1@-1@-1@-1@-1@(1211 in-situ-ques 0.000000 0 4 (1210 subj-head 0.000000 0 4 (1204 bare-np 0.000000 0 1 (1203 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1209 adj-head 0.000000 1 4 (6 как_2 0.000000 1 2 ("как")) (1208 head-comp 0.000000 2 4 (1205 3sg-pres-suffix1 0.000000 2 3 (8 пиш 0.000000 2 3 ("пишет"))) (1207 bare-np 0.000000 3 4 (1206 sg-acc2-suffix2 0.000000 3 4 (9 диссертаци 0.000000 3 4 ("диссертацию"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("как")) ("VP" ("V" ("V" ("пишет"))) ("NP" ("N" ("N" ("диссертацию"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_write_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_dissertation_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +57@1@-1@-1@-1@-1@-1@-1@-1@-1@(1218 in-situ-ques 0.000000 0 4 (1217 subj-head 0.000000 0 4 (1204 bare-np 0.000000 0 1 (1203 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1216 head-comp 0.000000 1 4 (1213 adj-head 0.000000 1 3 (6 как_2 0.000000 1 2 ("как")) (1212 3sg-pres-suffix1 0.000000 2 3 (8 пиш 0.000000 2 3 ("пишет")))) (1215 bare-np 0.000000 3 4 (1214 sg-acc2-suffix2 0.000000 3 4 (9 диссертаци 0.000000 3 4 ("диссертацию")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("как")) ("V" ("V" ("пишет")))) ("NP" ("N" ("N" ("диссертацию")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_write_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_dissertation_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +58@0@-1@-1@-1@-1@-1@-1@-1@-1@(1085 in-situ-ques 0.000000 0 4 (1084 subj-head 0.000000 0 4 (1078 bare-np 0.000000 0 1 (1077 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1083 head-comp 0.000000 1 4 (1080 head-adj 0.000000 1 3 (1079 3sg-pres-suffix1 0.000000 1 2 (6 пиш 0.000000 1 2 ("пишет"))) (7 как_2 0.000000 2 3 ("как"))) (1082 bare-np 0.000000 3 4 (1081 sg-acc2-suffix2 0.000000 3 4 (9 диссертаци 0.000000 3 4 ("диссертацию")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("пишет"))) ("ADV" ("как"))) ("NP" ("N" ("N" ("диссертацию")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_write_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x8 RSTR: h16 BODY: h17 ] [ "_dissertation_n_rel"<-1:-1> LBL: h18 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h13 qeq h11 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +59@0@-1@-1@-1@-1@-1@-1@-1@-1@(1369 in-situ-ques 0.000000 0 4 (1368 head-adj 0.000000 0 4 (1367 subj-head 0.000000 0 3 (1362 bare-np 0.000000 0 1 (1361 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1366 head-comp 0.000000 1 3 (1363 3sg-pres-suffix1 0.000000 1 2 (6 пиш 0.000000 1 2 ("пишет"))) (1365 bare-np 0.000000 2 3 (1364 sg-acc2-suffix2 0.000000 2 3 (7 диссертаци 0.000000 2 3 ("диссертацию")))))) (8 как_2 0.000000 3 4 ("как"))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("пишет"))) ("NP" ("N" ("N" ("диссертацию")))))) ("ADV" ("как"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_write_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dissertation_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +59@1@-1@-1@-1@-1@-1@-1@-1@-1@(1378 in-situ-ques 0.000000 0 4 (1377 subj-head 0.000000 0 4 (1371 bare-np 0.000000 0 1 (1370 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1376 head-adj 0.000000 1 4 (1375 head-comp 0.000000 1 3 (1372 3sg-pres-suffix1 0.000000 1 2 (6 пиш 0.000000 1 2 ("пишет"))) (1374 bare-np 0.000000 2 3 (1373 sg-acc2-suffix2 0.000000 2 3 (7 диссертаци 0.000000 2 3 ("диссертацию"))))) (8 как_2 0.000000 3 4 ("как")))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("пишет"))) ("NP" ("N" ("N" ("диссертацию"))))) ("ADV" ("как")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_write_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dissertation_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +62@0@-1@-1@-1@-1@-1@-1@-1@-1@(417 wh-ques 0.000000 0 5 (414 bare-np 0.000000 0 4 (413 adj-head 0.000000 0 4 (411 head-comp 0.000000 0 3 (6 в 0.000000 0 1 ("В")) (410 head-spec 0.000000 1 3 (408 sg-acc-masc-inan-suffix2 0.000000 1 2 (8 как_1 0.000000 1 2 ("какой"))) (409 nom-acc5-lex 0.000000 2 3 (9 город 0.000000 2 3 ("город"))))) (412 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван"))))) (416 ex-subj 0.000000 4 5 (415 sg-past-masc-suffix3 0.000000 4 5 (11 приеха 0.000000 4 5 ("приехал")))))@@("S" ("NP" ("N" ("PP" ("P" ("В")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("город"))))) ("N" ("N" ("Иван"))))) ("S" ("VP" ("VP" ("приехал")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_in_p_rel"<-1:-1> LBL: h7 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] ] [ "_which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_город_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +62@1@-1@-1@-1@-1@-1@-1@-1@-1@(427 wh-ques 0.000000 0 5 (421 head-comp 0.000000 0 3 (6 в 0.000000 0 1 ("В")) (420 head-spec 0.000000 1 3 (418 sg-acc-masc-inan-suffix2 0.000000 1 2 (8 как_1 0.000000 1 2 ("какой"))) (419 nom-acc5-lex 0.000000 2 3 (9 город 0.000000 2 3 ("город"))))) (426 subj-head 0.000000 3 5 (423 bare-np 0.000000 3 4 (422 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван")))) (425 ex-adj-first 0.000000 4 5 (424 sg-past-masc-suffix3 0.000000 4 5 (11 приеха 0.000000 4 5 ("приехал"))))))@@("S" ("PP" ("P" ("В")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("город"))))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("VP" ("приехал"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_город_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h12 BODY: h13 ] [ "_Ivan_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +71@0@-1@-1@-1@-1@-1@-1@-1@-1@(383 wh-ques 0.000000 0 5 (380 bare-np 0.000000 0 4 (379 adj-head 0.000000 0 4 (377 head-comp 0.000000 0 3 (6 из 0.000000 0 1 ("Из")) (376 head-spec 0.000000 1 3 (374 sg-gen-masc-suffix 0.000000 1 2 (8 как_1 0.000000 1 2 ("какого"))) (375 gen5-suffix 0.000000 2 3 (9 город 0.000000 2 3 ("города"))))) (378 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван"))))) (382 ex-subj 0.000000 4 5 (381 sg-past-masc-suffix3 0.000000 4 5 (11 приеха 0.000000 4 5 ("приехал")))))@@("S" ("NP" ("N" ("PP" ("P" ("Из")) ("NP" ("D" ("D" ("какого"))) ("N" ("N" ("города"))))) ("N" ("N" ("Иван"))))) ("S" ("VP" ("VP" ("приехал")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_from_p_rel"<-1:-1> LBL: h7 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] ] [ "_which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_город_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +71@1@-1@-1@-1@-1@-1@-1@-1@-1@(393 wh-ques 0.000000 0 5 (387 head-comp 0.000000 0 3 (6 из 0.000000 0 1 ("Из")) (386 head-spec 0.000000 1 3 (384 sg-gen-masc-suffix 0.000000 1 2 (8 как_1 0.000000 1 2 ("какого"))) (385 gen5-suffix 0.000000 2 3 (9 город 0.000000 2 3 ("города"))))) (392 subj-head 0.000000 3 5 (389 bare-np 0.000000 3 4 (388 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван")))) (391 ex-adj-first 0.000000 4 5 (390 sg-past-masc-suffix3 0.000000 4 5 (11 приеха 0.000000 4 5 ("приехал"))))))@@("S" ("PP" ("P" ("Из")) ("NP" ("D" ("D" ("какого"))) ("N" ("N" ("города"))))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("VP" ("приехал"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_from_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_город_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h12 BODY: h13 ] [ "_Ivan_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +74@0@-1@-1@-1@-1@-1@-1@-1@-1@(2199 subj-head 0.000000 0 5 (2190 bare-np 0.000000 0 1 (2189 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2198 head-adj 0.000000 1 5 (2194 head-comp 0.000000 1 3 (2191 3sg-pres-suffix2 0.000000 1 2 (9 вид_1 0.000000 1 2 ("видит"))) (2193 bare-np 0.000000 2 3 (2192 sg-acc2-suffix1 0.000000 2 3 (10 женщин 0.000000 2 3 ("женщину"))))) (2197 head-comp 0.000000 3 5 (11 в 0.000000 3 4 ("в")) (2196 bare-np 0.000000 4 5 (2195 prep1-suffix 0.000000 4 5 (12 книг 0.000000 4 5 ("книге")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину"))))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +74@1@-1@-1@-1@-1@-1@-1@-1@-1@(2218 head-adj 0.000000 0 5 (2214 subj-head 0.000000 0 3 (2209 bare-np 0.000000 0 1 (2208 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2213 head-comp 0.000000 1 3 (2210 3sg-pres-suffix2 0.000000 1 2 (9 вид_1 0.000000 1 2 ("видит"))) (2212 bare-np 0.000000 2 3 (2211 sg-acc2-suffix1 0.000000 2 3 (10 женщин 0.000000 2 3 ("женщину")))))) (2217 head-comp 0.000000 3 5 (11 в 0.000000 3 4 ("в")) (2216 bare-np 0.000000 4 5 (2215 prep1-suffix 0.000000 4 5 (12 книг 0.000000 4 5 ("книге"))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину")))))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +74@2@-1@-1@-1@-1@-1@-1@-1@-1@(2207 subj-head 0.000000 0 5 (2190 bare-np 0.000000 0 1 (2189 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2206 head-comp 0.000000 1 5 (2200 3sg-pres-suffix2 0.000000 1 2 (9 вид_1 0.000000 1 2 ("видит"))) (2205 bare-np 0.000000 2 5 (2204 head-adj 0.000000 2 5 (2201 sg-acc2-suffix1 0.000000 2 3 (10 женщин 0.000000 2 3 ("женщину"))) (2203 head-comp 0.000000 3 5 (11 в 0.000000 3 4 ("в")) (2202 bare-np 0.000000 4 5 (2195 prep1-suffix 0.000000 4 5 (12 книг 0.000000 4 5 ("книге")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("N" ("женщину"))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x8 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +75@0@-1@-1@-1@-1@-1@-1@-1@-1@(2277 subj-head 0.000000 0 6 (2267 bare-np 0.000000 0 1 (2266 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (2276 head-adj 0.000000 1 6 (2271 head-comp 0.000000 1 3 (2268 3sg-pres-suffix2 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видит"))) (2270 bare-np 0.000000 2 3 (2269 sg-acc2-suffix1 0.000000 2 3 (11 женщин 0.000000 2 3 ("женщину"))))) (2275 head-comp 0.000000 3 6 (12 в 0.000000 3 4 ("в")) (2274 head-spec 0.000000 4 6 (2272 sg-prep-fem-suffix 0.000000 4 5 (13 эт 0.000000 4 5 ("этой"))) (2273 prep1-suffix 0.000000 5 6 (14 книг 0.000000 5 6 ("книге")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину"))))) ("PP" ("P" ("в")) ("NP" ("D" ("D" ("этой"))) ("N" ("N" ("книге")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +75@1@-1@-1@-1@-1@-1@-1@-1@-1@(2297 head-adj 0.000000 0 6 (2292 subj-head 0.000000 0 3 (2287 bare-np 0.000000 0 1 (2286 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (2291 head-comp 0.000000 1 3 (2288 3sg-pres-suffix2 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видит"))) (2290 bare-np 0.000000 2 3 (2289 sg-acc2-suffix1 0.000000 2 3 (11 женщин 0.000000 2 3 ("женщину")))))) (2296 head-comp 0.000000 3 6 (12 в 0.000000 3 4 ("в")) (2295 head-spec 0.000000 4 6 (2293 sg-prep-fem-suffix 0.000000 4 5 (13 эт 0.000000 4 5 ("этой"))) (2294 prep1-suffix 0.000000 5 6 (14 книг 0.000000 5 6 ("книге"))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину")))))) ("PP" ("P" ("в")) ("NP" ("D" ("D" ("этой"))) ("N" ("N" ("книге"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +75@2@-1@-1@-1@-1@-1@-1@-1@-1@(2285 subj-head 0.000000 0 6 (2267 bare-np 0.000000 0 1 (2266 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (2284 head-comp 0.000000 1 6 (2278 3sg-pres-suffix2 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видит"))) (2283 bare-np 0.000000 2 6 (2282 head-adj 0.000000 2 6 (2279 sg-acc2-suffix1 0.000000 2 3 (11 женщин 0.000000 2 3 ("женщину"))) (2281 head-comp 0.000000 3 6 (12 в 0.000000 3 4 ("в")) (2280 head-spec 0.000000 4 6 (2272 sg-prep-fem-suffix 0.000000 4 5 (13 эт 0.000000 4 5 ("этой"))) (2273 prep1-suffix 0.000000 5 6 (14 книг 0.000000 5 6 ("книге")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("N" ("женщину"))) ("PP" ("P" ("в")) ("NP" ("D" ("D" ("этой"))) ("N" ("N" ("книге")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x8 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +79@0@-1@-1@-1@-1@-1@-1@-1@-1@(2375 wh-ques 0.000000 0 6 (2369 bare-np 0.000000 0 4 (2368 adj-head 0.000000 0 4 (2366 head-comp 0.000000 0 3 (7 в 0.000000 0 1 ("В")) (2365 head-spec 0.000000 1 3 (2363 sg-prep-fem-suffix 0.000000 1 2 (9 как_1 0.000000 1 2 ("какой"))) (2364 prep1-suffix 0.000000 2 3 (10 книг 0.000000 2 3 ("книге"))))) (2367 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван"))))) (2374 ex-subj 0.000000 4 6 (2373 head-comp 0.000000 4 6 (2370 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит"))) (2372 bare-np 0.000000 5 6 (2371 sg-acc2-suffix1 0.000000 5 6 (15 женщин 0.000000 5 6 ("женщину")))))))@@("S" ("NP" ("N" ("PP" ("P" ("В")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("книге"))))) ("N" ("N" ("Иван"))))) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_in_p_rel"<-1:-1> LBL: h7 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_woman_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +79@1@-1@-1@-1@-1@-1@-1@-1@-1@(2395 wh-ques 0.000000 0 6 (2379 head-comp 0.000000 0 3 (7 в 0.000000 0 1 ("В")) (2378 head-spec 0.000000 1 3 (2376 sg-prep-fem-suffix 0.000000 1 2 (9 как_1 0.000000 1 2 ("какой"))) (2377 prep1-suffix 0.000000 2 3 (10 книг 0.000000 2 3 ("книге"))))) (2394 subj-head 0.000000 3 6 (2381 bare-np 0.000000 3 4 (2380 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))) (2393 ex-adj-first 0.000000 4 6 (2392 head-comp 0.000000 4 6 (2389 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит"))) (2391 bare-np 0.000000 5 6 (2390 sg-acc2-suffix1 0.000000 5 6 (15 женщин 0.000000 5 6 ("женщину"))))))))@@("S" ("PP" ("P" ("В")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("книге"))))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_book_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h12 BODY: h13 ] [ "_Ivan_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_woman_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +79@2@-1@-1@-1@-1@-1@-1@-1@-1@(2388 wh-ques 0.000000 0 6 (2379 head-comp 0.000000 0 3 (7 в 0.000000 0 1 ("В")) (2378 head-spec 0.000000 1 3 (2376 sg-prep-fem-suffix 0.000000 1 2 (9 как_1 0.000000 1 2 ("какой"))) (2377 prep1-suffix 0.000000 2 3 (10 книг 0.000000 2 3 ("книге"))))) (2387 subj-head 0.000000 3 6 (2381 bare-np 0.000000 3 4 (2380 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))) (2386 head-comp 0.000000 4 6 (2383 ex-adj-first 0.000000 4 5 (2382 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит")))) (2385 bare-np 0.000000 5 6 (2384 sg-acc2-suffix1 0.000000 5 6 (15 женщин 0.000000 5 6 ("женщину")))))))@@("S" ("PP" ("P" ("В")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("книге"))))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("видит")))) ("NP" ("N" ("N" ("женщину")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_book_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h12 BODY: h13 ] [ "_Ivan_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_woman_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +83@0@-1@-1@-1@-1@-1@-1@-1@-1@(2289 in-situ-ques 0.000000 0 6 (2288 subj-head 0.000000 0 6 (2278 bare-np 0.000000 0 1 (2277 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (2287 head-adj 0.000000 1 6 (2282 head-comp 0.000000 1 3 (2279 3sg-pres-suffix2 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видит"))) (2281 bare-np 0.000000 2 3 (2280 sg-acc2-suffix1 0.000000 2 3 (11 женщин 0.000000 2 3 ("женщину"))))) (2286 head-comp 0.000000 3 6 (12 в 0.000000 3 4 ("в")) (2285 head-spec 0.000000 4 6 (2283 sg-prep-fem-suffix 0.000000 4 5 (14 как_1 0.000000 4 5 ("какой"))) (2284 prep1-suffix 0.000000 5 6 (15 книг 0.000000 5 6 ("книге"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину"))))) ("PP" ("P" ("в")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("книге"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +83@1@-1@-1@-1@-1@-1@-1@-1@-1@(2309 in-situ-ques 0.000000 0 6 (2308 head-adj 0.000000 0 6 (2305 subj-head 0.000000 0 3 (2300 bare-np 0.000000 0 1 (2299 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (2304 head-comp 0.000000 1 3 (2301 3sg-pres-suffix2 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видит"))) (2303 bare-np 0.000000 2 3 (2302 sg-acc2-suffix1 0.000000 2 3 (11 женщин 0.000000 2 3 ("женщину")))))) (2307 head-comp 0.000000 3 6 (12 в 0.000000 3 4 ("в")) (2306 head-spec 0.000000 4 6 (2283 sg-prep-fem-suffix 0.000000 4 5 (14 как_1 0.000000 4 5 ("какой"))) (2284 prep1-suffix 0.000000 5 6 (15 книг 0.000000 5 6 ("книге")))))))@@("S" ("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину")))))) ("PP" ("P" ("в")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("книге")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +83@2@-1@-1@-1@-1@-1@-1@-1@-1@(2298 in-situ-ques 0.000000 0 6 (2297 subj-head 0.000000 0 6 (2278 bare-np 0.000000 0 1 (2277 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (2296 head-comp 0.000000 1 6 (2290 3sg-pres-suffix2 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видит"))) (2295 bare-np 0.000000 2 6 (2294 head-adj 0.000000 2 6 (2291 sg-acc2-suffix1 0.000000 2 3 (11 женщин 0.000000 2 3 ("женщину"))) (2293 head-comp 0.000000 3 6 (12 в 0.000000 3 4 ("в")) (2292 head-spec 0.000000 4 6 (2283 sg-prep-fem-suffix 0.000000 4 5 (14 как_1 0.000000 4 5 ("какой"))) (2284 prep1-suffix 0.000000 5 6 (15 книг 0.000000 5 6 ("книге"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("N" ("женщину"))) ("PP" ("P" ("в")) ("NP" ("D" ("D" ("какой"))) ("N" ("N" ("книге"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_woman_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x8 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +84@0@-1@-1@-1@-1@-1@-1@-1@-1@(3485 wh-ques 0.000000 0 6 (3473 sg-nom-masc-suffix2 0.000000 0 1 (8 как_1 0.000000 0 1 ("Какой"))) (3484 subj-head 0.000000 1 6 (3475 ex-det 0.000000 1 2 (3474 nom1-lex 0.000000 1 2 (9 человек 0.000000 1 2 ("человек")))) (3483 head-comp 0.000000 2 6 (3480 adj-head 0.000000 2 5 (3478 head-comp 0.000000 2 4 (10 в 0.000000 2 3 ("в")) (3477 bare-np 0.000000 3 4 (3476 prep1-suffix 0.000000 3 4 (11 книг 0.000000 3 4 ("книге"))))) (3479 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит")))) (3482 bare-np 0.000000 5 6 (3481 sg-acc2-suffix1 0.000000 5 6 (15 женщин 0.000000 5 6 ("женщину")))))))@@("S" ("D" ("D" ("Какой"))) ("S" ("NP" ("N" ("N" ("человек")))) ("VP" ("V" ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))) ("V" ("V" ("видит")))) ("NP" ("N" ("N" ("женщину")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_woman_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < i20 info-str i21 > ]@((:ascore . 0.0) (:probability . 0.25)) +84@1@-1@-1@-1@-1@-1@-1@-1@-1@(3506 wh-ques 0.000000 0 6 (3497 head-spec 0.000000 0 2 (3495 sg-nom-masc-suffix2 0.000000 0 1 (8 как_1 0.000000 0 1 ("Какой"))) (3496 nom1-lex 0.000000 1 2 (9 человек 0.000000 1 2 ("человек")))) (3505 adj-head 0.000000 2 6 (3499 head-comp 0.000000 2 4 (10 в 0.000000 2 3 ("в")) (3498 bare-np 0.000000 3 4 (3476 prep1-suffix 0.000000 3 4 (11 книг 0.000000 3 4 ("книге"))))) (3504 ex-subj 0.000000 4 6 (3503 head-comp 0.000000 4 6 (3500 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит"))) (3502 bare-np 0.000000 5 6 (3501 sg-acc2-suffix1 0.000000 5 6 (15 женщин 0.000000 5 6 ("женщину"))))))))@@("S" ("NP" ("D" ("D" ("Какой"))) ("N" ("N" ("человек")))) ("S" ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_woman_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 h16 qeq h18 > ICONS: < i19 info-str i20 > ]@((:ascore . 0.0) (:probability . 0.25)) +84@2@-1@-1@-1@-1@-1@-1@-1@-1@(3494 wh-ques 0.000000 0 6 (3473 sg-nom-masc-suffix2 0.000000 0 1 (8 как_1 0.000000 0 1 ("Какой"))) (3493 subj-head 0.000000 1 6 (3475 ex-det 0.000000 1 2 (3474 nom1-lex 0.000000 1 2 (9 человек 0.000000 1 2 ("человек")))) (3492 adj-head 0.000000 2 6 (3487 head-comp 0.000000 2 4 (10 в 0.000000 2 3 ("в")) (3486 bare-np 0.000000 3 4 (3476 prep1-suffix 0.000000 3 4 (11 книг 0.000000 3 4 ("книге"))))) (3491 head-comp 0.000000 4 6 (3488 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит"))) (3490 bare-np 0.000000 5 6 (3489 sg-acc2-suffix1 0.000000 5 6 (15 женщин 0.000000 5 6 ("женщину"))))))))@@("S" ("D" ("D" ("Какой"))) ("S" ("NP" ("N" ("N" ("человек")))) ("VP" ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))) ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_woman_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < i20 info-str i21 > ]@((:ascore . 0.0) (:probability . 0.25)) +84@3@-1@-1@-1@-1@-1@-1@-1@-1@(3517 wh-ques 0.000000 0 6 (3512 head-spec 0.000000 0 4 (3495 sg-nom-masc-suffix2 0.000000 0 1 (8 как_1 0.000000 0 1 ("Какой"))) (3511 head-adj 0.000000 1 4 (3507 nom1-lex 0.000000 1 2 (9 человек 0.000000 1 2 ("человек"))) (3510 head-comp 0.000000 2 4 (10 в 0.000000 2 3 ("в")) (3509 bare-np 0.000000 3 4 (3508 prep1-suffix 0.000000 3 4 (11 книг 0.000000 3 4 ("книге"))))))) (3516 ex-subj 0.000000 4 6 (3515 head-comp 0.000000 4 6 (3513 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит"))) (3514 bare-np 0.000000 5 6 (3501 sg-acc2-suffix1 0.000000 5 6 (15 женщин 0.000000 5 6 ("женщину")))))))@@("S" ("NP" ("D" ("D" ("Какой"))) ("N" ("N" ("N" ("человек"))) ("PP" ("P" ("в")) ("NP" ("N" ("N" ("книге"))))))) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("женщину")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h7 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_woman_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 h16 qeq h18 > ICONS: < i19 info-str i20 > ]@((:ascore . 0.0) (:probability . 0.25)) +90@0@-1@-1@-1@-1@-1@-1@-1@-1@(205 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (204 wh-ques 0.000000 1 3 (5 куда 0.000000 1 2 ("куда")) (203 ex-subj 0.000000 2 3 (202 ex-adj-first 0.000000 2 3 (201 3sg-pres-suffix1 0.000000 2 3 (6 ид 0.000000 2 3 ("идет")))))))@@("S" ("NP" ("Кто")) ("S" ("ADV" ("куда")) ("S" ("VP" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +90@1@-1@-1@-1@-1@-1@-1@-1@-1@(209 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (208 adj-head 0.000000 1 3 (5 куда 0.000000 1 2 ("куда")) (207 ex-subj 0.000000 2 3 (206 3sg-pres-suffix1 0.000000 2 3 (6 ид 0.000000 2 3 ("идет"))))))@@("S" ("NP" ("Кто")) ("S" ("ADV" ("куда")) ("S" ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +92@0@-1@-1@-1@-1@-1@-1@-1@-1@(200 wh-ques 0.000000 0 3 (4 куда 0.000000 0 1 ("Куда")) (199 wh-ques 0.000000 1 3 (5 кто 0.000000 1 2 ("кто")) (198 ex-subj 0.000000 2 3 (197 ex-adj-last 0.000000 2 3 (196 3sg-pres-suffix1 0.000000 2 3 (6 ид 0.000000 2 3 ("идет")))))))@@("S" ("ADV" ("Куда")) ("S" ("NP" ("кто")) ("S" ("VP" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +92@1@-1@-1@-1@-1@-1@-1@-1@-1@(204 wh-ques 0.000000 0 3 (4 куда 0.000000 0 1 ("Куда")) (203 subj-head 0.000000 1 3 (5 кто 0.000000 1 2 ("кто")) (202 ex-adj-first 0.000000 2 3 (201 3sg-pres-suffix1 0.000000 2 3 (6 ид 0.000000 2 3 ("идет"))))))@@("S" ("ADV" ("Куда")) ("S" ("NP" ("кто")) ("VP" ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +93@0@-1@-1@-1@-1@-1@-1@-1@-1@(264 in-situ-ques 0.000000 0 3 (263 head-adj 0.000000 0 3 (262 in-situ-ques 0.000000 0 2 (261 head-subj 0.000000 0 2 (260 3sg-pres-suffix1 0.000000 0 1 (4 ид 0.000000 0 1 ("Идет"))) (5 кто 0.000000 1 2 ("кто")))) (6 куда 0.000000 2 3 ("куда"))))@@("S" ("S" ("S" ("S" ("VP" ("VP" ("Идет"))) ("NP" ("кто")))) ("ADV" ("куда"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +93@1@-1@-1@-1@-1@-1@-1@-1@-1@(268 in-situ-ques 0.000000 0 3 (267 head-adj 0.000000 0 3 (266 head-subj 0.000000 0 2 (265 3sg-pres-suffix1 0.000000 0 1 (4 ид 0.000000 0 1 ("Идет"))) (5 кто 0.000000 1 2 ("кто"))) (6 куда 0.000000 2 3 ("куда"))))@@("S" ("S" ("S" ("VP" ("VP" ("Идет"))) ("NP" ("кто"))) ("ADV" ("куда"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +94@0@-1@-1@-1@-1@-1@-1@-1@-1@(314 wh-ques 0.000000 0 3 (4 куда 0.000000 0 1 ("Куда")) (313 head-subj 0.000000 1 3 (312 ex-adj-first 0.000000 1 2 (311 3sg-pres-suffix1 0.000000 1 2 (5 ид 0.000000 1 2 ("идет")))) (6 кто 0.000000 2 3 ("кто"))))@@("S" ("ADV" ("Куда")) ("S" ("VP" ("VP" ("VP" ("идет")))) ("NP" ("кто"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +95@0@-1@-1@-1@-1@-1@-1@-1@-1@(306 in-situ-ques 0.000000 0 3 (301 head-subj 0.000000 0 3 (300 head-adj 0.000000 0 2 (299 3sg-pres-suffix1 0.000000 0 1 (4 ид 0.000000 0 1 ("Идет"))) (5 куда 0.000000 1 2 ("куда"))) (6 кто 0.000000 2 3 ("кто"))))@@("S" ("S" ("VP" ("VP" ("VP" ("Идет"))) ("ADV" ("куда"))) ("NP" ("кто"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +96@0@-1@-1@-1@-1@-1@-1@-1@-1@(283 wh-ques 0.000000 0 3 (4 кто 0.000000 0 1 ("Кто")) (282 head-adj 0.000000 1 3 (281 ex-subj 0.000000 1 2 (280 3sg-pres-suffix1 0.000000 1 2 (5 ид 0.000000 1 2 ("идет")))) (6 куда 0.000000 2 3 ("куда"))))@@("S" ("NP" ("Кто")) ("S" ("S" ("VP" ("VP" ("идет")))) ("ADV" ("куда"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +97@0@-1@-1@-1@-1@-1@-1@-1@-1@(405 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (404 wh-ques 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (403 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (402 ex-adj-last 0.000000 3 5 (401 comp-head 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (400 ex-adj-first 0.000000 4 5 (399 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("кто")) ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_person_n_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h18 qeq h16 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.142857)) +97@1@-1@-1@-1@-1@-1@-1@-1@-1@(418 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (417 adj-head 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (416 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (415 ex-adj-first 0.000000 3 5 (414 comp-head 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (413 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил"))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("кто")) ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("купил"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_person_n_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h18 qeq h16 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.142857)) +97@2@-1@-1@-1@-1@-1@-1@-1@-1@(442 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (440 adj-head 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (438 wh-ques 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (432 wh-ques 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (431 ex-subj 0.000000 4 5 (430 ex-comp 0.000000 4 5 (429 ex-adj-last 0.000000 4 5 (428 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил"))))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("V" ("купил"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_person_n_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h18 qeq h16 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.142857)) +97@3@-1@-1@-1@-1@-1@-1@-1@-1@(427 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (426 wh-ques 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (425 wh-ques 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (424 wh-ques 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (423 ex-subj 0.000000 4 5 (422 ex-adj-last 0.000000 4 5 (421 ex-comp 0.000000 4 5 (420 ex-adj-last 0.000000 4 5 (419 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил")))))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("VP" ("V" ("V" ("V" ("купил")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_person_n_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h18 qeq h16 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.142857)) +97@4@-1@-1@-1@-1@-1@-1@-1@-1@(449 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (441 adj-head 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (439 wh-ques 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (437 wh-ques 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (436 ex-subj 0.000000 4 5 (435 ex-adj-last 0.000000 4 5 (434 ex-comp 0.000000 4 5 (433 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил"))))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("VP" ("V" ("V" ("купил"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_person_n_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h18 qeq h16 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.142857)) +97@5@-1@-1@-1@-1@-1@-1@-1@-1@(412 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (411 wh-ques 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (410 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (409 ex-adj-first 0.000000 3 5 (408 comp-head 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (407 ex-adj-first 0.000000 4 5 (406 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("кто")) ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_person_n_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h18 qeq h16 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.142857)) +97@6@-1@-1@-1@-1@-1@-1@-1@-1@(448 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (447 adj-head 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (446 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (445 comp-head 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (444 ex-adj-first 0.000000 4 5 (443 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил"))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("кто")) ("VP" ("NP" ("что")) ("V" ("V" ("V" ("купил"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "_person_n_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x3 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h18 qeq h16 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.142857)) +98@0@-1@-1@-1@-1@-1@-1@-1@-1@(1295 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (1294 wh-ques 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (1293 subj-head 0.000000 2 5 (1286 bare-np 0.000000 2 3 (1285 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван")))) (1292 ex-adj-last 0.000000 3 5 (1291 head-comp 0.000000 3 5 (1288 ex-adj-first 0.000000 3 4 (1287 sg-past-masc-suffix3 0.000000 3 4 (9 купи 0.000000 3 4 ("купил")))) (1290 bare-np 0.000000 4 5 (1289 sg-acc2-suffix1 0.000000 4 5 (10 книг 0.000000 4 5 ("книгу")))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("V" ("купил")))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_Ivan_n_rel"<-1:-1> LBL: h19 ARG0: x3 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x20 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x20 RSTR: h22 BODY: h23 ] [ "_book_n_rel"<-1:-1> LBL: h24 ARG0: x20 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h17 qeq h19 h22 qeq h24 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +98@1@-1@-1@-1@-1@-1@-1@-1@-1@(1312 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (1311 adj-head 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (1310 subj-head 0.000000 2 5 (1306 bare-np 0.000000 2 3 (1305 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван")))) (1309 ex-adj-first 0.000000 3 5 (1308 head-comp 0.000000 3 5 (1307 sg-past-masc-suffix3 0.000000 3 4 (9 купи 0.000000 3 4 ("купил"))) (1299 bare-np 0.000000 4 5 (1298 sg-acc2-suffix1 0.000000 4 5 (10 книг 0.000000 4 5 ("книгу")))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("купил"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_Ivan_n_rel"<-1:-1> LBL: h19 ARG0: x3 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x20 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x20 RSTR: h22 BODY: h23 ] [ "_book_n_rel"<-1:-1> LBL: h24 ARG0: x20 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h17 qeq h19 h22 qeq h24 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +98@2@-1@-1@-1@-1@-1@-1@-1@-1@(1304 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (1303 wh-ques 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (1302 subj-head 0.000000 2 5 (1286 bare-np 0.000000 2 3 (1285 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван")))) (1301 ex-adj-first 0.000000 3 5 (1300 head-comp 0.000000 3 5 (1297 ex-adj-first 0.000000 3 4 (1296 sg-past-masc-suffix3 0.000000 3 4 (9 купи 0.000000 3 4 ("купил")))) (1299 bare-np 0.000000 4 5 (1298 sg-acc2-suffix1 0.000000 4 5 (10 книг 0.000000 4 5 ("книгу")))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("V" ("купил")))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_Ivan_n_rel"<-1:-1> LBL: h19 ARG0: x3 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x20 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x20 RSTR: h22 BODY: h23 ] [ "_book_n_rel"<-1:-1> LBL: h24 ARG0: x20 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h17 qeq h19 h22 qeq h24 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +98@3@-1@-1@-1@-1@-1@-1@-1@-1@(1320 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (1319 adj-head 0.000000 1 5 (7 когда 0.000000 1 2 ("когда")) (1318 subj-head 0.000000 2 5 (1306 bare-np 0.000000 2 3 (1305 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван")))) (1317 head-comp 0.000000 3 5 (1314 ex-adj-first 0.000000 3 4 (1313 sg-past-masc-suffix3 0.000000 3 4 (9 купи 0.000000 3 4 ("купил")))) (1316 bare-np 0.000000 4 5 (1315 sg-acc2-suffix1 0.000000 4 5 (10 книг 0.000000 4 5 ("книгу"))))))))@@("S" ("ADV" ("Где")) ("S" ("ADV" ("когда")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("купил")))) ("NP" ("N" ("N" ("книгу"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_Ivan_n_rel"<-1:-1> LBL: h19 ARG0: x3 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x20 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x20 RSTR: h22 BODY: h23 ] [ "_book_n_rel"<-1:-1> LBL: h24 ARG0: x20 ] > HCONS: < h0 qeq h1 h8 qeq h6 h14 qeq h12 h17 qeq h19 h22 qeq h24 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +101@0@-1@-1@-1@-1@-1@-1@-1@-1@(354 wh-ques 0.000000 0 4 (5 сколько 0.000000 0 1 ("Сколько")) (353 comp-head 0.000000 1 4 (348 ex-det 0.000000 1 2 (347 pl-gen2-lex 0.000000 1 2 (6 книг 0.000000 1 2 ("книг")))) (352 subj-head 0.000000 2 4 (350 bare-np 0.000000 2 3 (349 nom1-lex 0.000000 2 3 (7 Иван 0.000000 2 3 ("Иван")))) (351 3sg-pres-suffix1 0.000000 3 4 (8 чита 0.000000 3 4 ("читает"))))))@@("S" ("D" ("Сколько")) ("S" ("NP" ("N" ("N" ("книг")))) ("V" ("NP" ("N" ("N" ("Иван")))) ("V" ("V" ("читает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_how-many_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h13 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.5)) +101@1@-1@-1@-1@-1@-1@-1@-1@-1@(362 wh-ques 0.000000 0 4 (356 head-spec 0.000000 0 2 (5 сколько 0.000000 0 1 ("Сколько")) (355 pl-gen2-lex 0.000000 1 2 (6 книг 0.000000 1 2 ("книг")))) (361 subj-head 0.000000 2 4 (358 bare-np 0.000000 2 3 (357 nom1-lex 0.000000 2 3 (7 Иван 0.000000 2 3 ("Иван")))) (360 ex-comp 0.000000 3 4 (359 3sg-pres-suffix1 0.000000 3 4 (8 чита 0.000000 3 4 ("читает"))))))@@("S" ("NP" ("D" ("Сколько")) ("N" ("N" ("книг")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("читает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_how-many_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +102@0@-1@-1@-1@-1@-1@-1@-1@-1@(384 wh-ques 0.000000 0 4 (5 сколько 0.000000 0 1 ("Сколько")) (383 subj-head 0.000000 1 4 (378 bare-np 0.000000 1 2 (377 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван")))) (382 comp-head 0.000000 2 4 (380 ex-det 0.000000 2 3 (379 pl-gen2-lex 0.000000 2 3 (7 книг 0.000000 2 3 ("книг")))) (381 3sg-pres-suffix1 0.000000 3 4 (8 чита 0.000000 3 4 ("читает"))))))@@("S" ("D" ("Сколько")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("NP" ("N" ("N" ("книг")))) ("V" ("V" ("читает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_how-many_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h9 BODY: h10 ] [ "_Ivan_n_rel"<-1:-1> LBL: h11 ARG0: x3 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h13 h9 qeq h11 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 1.0)) +104@0@-1@-1@-1@-1@-1@-1@-1@-1@(700 wh-ques 0.000000 0 4 (5 сколько 0.000000 0 1 ("Сколько")) (699 subj-head 0.000000 1 4 (694 bare-np 0.000000 1 2 (693 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван")))) (698 head-comp 0.000000 2 4 (695 3sg-pres-suffix1 0.000000 2 3 (7 чита 0.000000 2 3 ("читает"))) (697 ex-det 0.000000 3 4 (696 pl-gen2-lex 0.000000 3 4 (8 книг 0.000000 3 4 ("книг")))))))@@("S" ("D" ("Сколько")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книг")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_how-many_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h9 BODY: h10 ] [ "_Ivan_n_rel"<-1:-1> LBL: h11 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x5 ] > HCONS: < h0 qeq h1 h6 qeq h13 h9 qeq h11 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 1.0)) +105@0@-1@-1@-1@-1@-1@-1@-1@-1@(397 in-situ-ques 0.000000 0 4 (396 subj-head 0.000000 0 4 (391 bare-np 0.000000 0 1 (390 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (395 comp-head 0.000000 1 4 (393 head-spec 0.000000 1 3 (6 сколько 0.000000 1 2 ("сколько")) (392 pl-gen2-lex 0.000000 2 3 (7 книг 0.000000 2 3 ("книг")))) (394 3sg-pres-suffix1 0.000000 3 4 (8 чита 0.000000 3 4 ("читает"))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("NP" ("D" ("сколько")) ("N" ("N" ("книг")))) ("V" ("V" ("читает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_how-many_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h10 BODY: h11 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 1.0)) +106@0@-1@-1@-1@-1@-1@-1@-1@-1@(650 in-situ-ques 0.000000 0 4 (649 subj-head 0.000000 0 4 (644 bare-np 0.000000 0 1 (643 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (648 head-comp 0.000000 1 4 (645 3sg-pres-suffix1 0.000000 1 2 (6 чита 0.000000 1 2 ("читает"))) (647 head-spec 0.000000 2 4 (7 сколько 0.000000 2 3 ("сколько")) (646 pl-gen2-lex 0.000000 3 4 (8 книг 0.000000 3 4 ("книг")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("D" ("сколько")) ("N" ("N" ("книг")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_how-many_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 1.0)) +110@0@-1@-1@-1@-1@-1@-1@-1@-1@(234 wh-ques 0.000000 0 3 (231 head-spec 0.000000 0 2 (229 sg-nom-masc-suffix3 0.000000 0 1 (4 котор 0.000000 0 1 ("Который"))) (230 nom1-lex 0.000000 1 2 (5 человек 0.000000 1 2 ("человек")))) (233 ex-subj 0.000000 2 3 (232 sg-past-masc-suffix3 0.000000 2 3 (6 приеха 0.000000 2 3 ("приехал")))))@@("S" ("NP" ("D" ("D" ("Который"))) ("N" ("N" ("человек")))) ("S" ("VP" ("VP" ("приехал")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < i8 info-str i9 > ]@((:ascore . 0.0) (:probability . 0.5)) +110@1@-1@-1@-1@-1@-1@-1@-1@-1@(240 wh-ques 0.000000 0 3 (235 sg-nom-masc-suffix3 0.000000 0 1 (4 котор 0.000000 0 1 ("Который"))) (239 subj-head 0.000000 1 3 (237 ex-det 0.000000 1 2 (236 nom1-lex 0.000000 1 2 (5 человек 0.000000 1 2 ("человек")))) (238 sg-past-masc-suffix3 0.000000 2 3 (6 приеха 0.000000 2 3 ("приехал")))))@@("S" ("D" ("D" ("Который"))) ("S" ("NP" ("N" ("N" ("человек")))) ("VP" ("VP" ("приехал")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h8 > ICONS: < i9 info-str i10 > ]@((:ascore . 0.0) (:probability . 0.5)) +111@0@-1@-1@-1@-1@-1@-1@-1@-1@(259 wh-ques 0.000000 0 3 (256 head-spec 0.000000 0 2 (254 sg-nom-masc-suffix2 0.000000 0 1 (5 как_1 0.000000 0 1 ("Какой"))) (255 nom1-lex 0.000000 1 2 (6 человек 0.000000 1 2 ("человек")))) (258 ex-subj 0.000000 2 3 (257 sg-past-masc-suffix3 0.000000 2 3 (7 приеха 0.000000 2 3 ("приехал")))))@@("S" ("NP" ("D" ("D" ("Какой"))) ("N" ("N" ("человек")))) ("S" ("VP" ("VP" ("приехал")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < i8 info-str i9 > ]@((:ascore . 0.0) (:probability . 0.5)) +111@1@-1@-1@-1@-1@-1@-1@-1@-1@(265 wh-ques 0.000000 0 3 (260 sg-nom-masc-suffix2 0.000000 0 1 (5 как_1 0.000000 0 1 ("Какой"))) (264 subj-head 0.000000 1 3 (262 ex-det 0.000000 1 2 (261 nom1-lex 0.000000 1 2 (6 человек 0.000000 1 2 ("человек")))) (263 sg-past-masc-suffix3 0.000000 2 3 (7 приеха 0.000000 2 3 ("приехал")))))@@("S" ("D" ("D" ("Какой"))) ("S" ("NP" ("N" ("N" ("человек")))) ("VP" ("VP" ("приехал")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h8 > ICONS: < i9 info-str i10 > ]@((:ascore . 0.0) (:probability . 0.5)) +112@0@-1@-1@-1@-1@-1@-1@-1@-1@(279 wh-ques 0.000000 0 3 (274 sg-nom-masc-suffix2 0.000000 0 1 (5 как_1 0.000000 0 1 ("Какой"))) (278 head-subj 0.000000 1 3 (275 sg-past-masc-suffix3 0.000000 1 2 (6 приеха 0.000000 1 2 ("приехал"))) (277 ex-det 0.000000 2 3 (276 nom1-lex 0.000000 2 3 (7 человек 0.000000 2 3 ("человек"))))))@@("S" ("D" ("D" ("Какой"))) ("S" ("VP" ("VP" ("приехал"))) ("NP" ("N" ("N" ("человек"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_arrived_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_person_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] > HCONS: < h0 qeq h1 h5 qeq h8 > ICONS: < i9 info-str i10 > ]@((:ascore . 0.0) (:probability . 1.0)) +115@0@-1@-1@-1@-1@-1@-1@-1@-1@(357 wh-ques 0.000000 0 4 (349 sg-acc-fem-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какую"))) (356 comp-head 0.000000 1 4 (351 ex-det 0.000000 1 2 (350 sg-acc2-suffix1 0.000000 1 2 (7 книг 0.000000 1 2 ("книгу")))) (355 subj-head 0.000000 2 4 (353 bare-np 0.000000 2 3 (352 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван")))) (354 3sg-pres-suffix1 0.000000 3 4 (9 чита 0.000000 3 4 ("читает"))))))@@("S" ("D" ("D" ("Какую"))) ("S" ("NP" ("N" ("N" ("книгу")))) ("V" ("NP" ("N" ("N" ("Иван")))) ("V" ("V" ("читает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h13 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.5)) +115@1@-1@-1@-1@-1@-1@-1@-1@-1@(366 wh-ques 0.000000 0 4 (360 head-spec 0.000000 0 2 (358 sg-acc-fem-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какую"))) (359 sg-acc2-suffix1 0.000000 1 2 (7 книг 0.000000 1 2 ("книгу")))) (365 subj-head 0.000000 2 4 (362 bare-np 0.000000 2 3 (361 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван")))) (364 ex-comp 0.000000 3 4 (363 3sg-pres-suffix1 0.000000 3 4 (9 чита 0.000000 3 4 ("читает"))))))@@("S" ("NP" ("D" ("D" ("Какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("читает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +116@0@-1@-1@-1@-1@-1@-1@-1@-1@(703 wh-ques 0.000000 0 4 (695 sg-acc-fem-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какую"))) (702 subj-head 0.000000 1 4 (697 bare-np 0.000000 1 2 (696 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (701 head-comp 0.000000 2 4 (698 3sg-pres-suffix1 0.000000 2 3 (8 чита 0.000000 2 3 ("читает"))) (700 ex-det 0.000000 3 4 (699 sg-acc2-suffix1 0.000000 3 4 (9 книг 0.000000 3 4 ("книгу")))))))@@("S" ("D" ("D" ("Какую"))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h9 BODY: h10 ] [ "_Ivan_n_rel"<-1:-1> LBL: h11 ARG0: x3 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] [ "_book_n_rel"<-1:-1> LBL: h12 ARG0: x5 ] > HCONS: < h0 qeq h1 h6 qeq h13 h9 qeq h11 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 1.0)) +118@0@-1@-1@-1@-1@-1@-1@-1@-1@(1099 wh-ques 0.000000 0 4 (1091 sg-acc-fem-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какую"))) (1098 comp-head 0.000000 1 4 (1093 ex-det 0.000000 1 2 (1092 sg-acc2-suffix1 0.000000 1 2 (7 книг 0.000000 1 2 ("книгу")))) (1097 head-subj 0.000000 2 4 (1094 3sg-pres-suffix1 0.000000 2 3 (8 чита 0.000000 2 3 ("читает"))) (1096 bare-np 0.000000 3 4 (1095 nom1-lex 0.000000 3 4 (9 Иван 0.000000 3 4 ("Иван")))))))@@("S" ("D" ("D" ("Какую"))) ("S" ("NP" ("N" ("N" ("книгу")))) ("V" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("Иван")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h13 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.5)) +118@1@-1@-1@-1@-1@-1@-1@-1@-1@(1108 wh-ques 0.000000 0 4 (1102 head-spec 0.000000 0 2 (1100 sg-acc-fem-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какую"))) (1101 sg-acc2-suffix1 0.000000 1 2 (7 книг 0.000000 1 2 ("книгу")))) (1107 head-subj 0.000000 2 4 (1104 ex-comp 0.000000 2 3 (1103 3sg-pres-suffix1 0.000000 2 3 (8 чита 0.000000 2 3 ("читает")))) (1106 bare-np 0.000000 3 4 (1105 nom1-lex 0.000000 3 4 (9 Иван 0.000000 3 4 ("Иван"))))))@@("S" ("NP" ("D" ("D" ("Какую"))) ("N" ("N" ("книгу")))) ("S" ("VP" ("V" ("V" ("читает")))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +121@0@-1@-1@-1@-1@-1@-1@-1@-1@(1364 wh-ques 0.000000 0 4 (1356 pl-acc-inan-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какие"))) (1363 comp-head 0.000000 1 4 (1358 ex-det 0.000000 1 2 (1357 pl-nom2-suffix 0.000000 1 2 (7 книг 0.000000 1 2 ("книги")))) (1362 head-subj 0.000000 2 4 (1359 3sg-pres-suffix1 0.000000 2 3 (8 чита 0.000000 2 3 ("читает"))) (1361 bare-np 0.000000 3 4 (1360 nom1-lex 0.000000 3 4 (9 Иван 0.000000 3 4 ("Иван")))))))@@("S" ("D" ("D" ("Какие"))) ("S" ("NP" ("N" ("N" ("книги")))) ("V" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("Иван")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h13 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.5)) +121@1@-1@-1@-1@-1@-1@-1@-1@-1@(1373 wh-ques 0.000000 0 4 (1367 head-spec 0.000000 0 2 (1365 pl-acc-inan-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какие"))) (1366 pl-nom2-suffix 0.000000 1 2 (7 книг 0.000000 1 2 ("книги")))) (1372 head-subj 0.000000 2 4 (1369 ex-comp 0.000000 2 3 (1368 3sg-pres-suffix1 0.000000 2 3 (8 чита 0.000000 2 3 ("читает")))) (1371 bare-np 0.000000 3 4 (1370 nom1-lex 0.000000 3 4 (9 Иван 0.000000 3 4 ("Иван"))))))@@("S" ("NP" ("D" ("D" ("Какие"))) ("N" ("N" ("книги")))) ("S" ("VP" ("V" ("V" ("читает")))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h6 BODY: h7 ] [ "_book_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_read_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +124@0@-1@-1@-1@-1@-1@-1@-1@-1@(2238 wh-ques 0.000000 0 4 (2230 sg-acc-masc-inan-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какой"))) (2237 comp-head 0.000000 1 4 (2232 ex-det 0.000000 1 2 (2231 nom-acc5-lex 0.000000 1 2 (7 сон 0.000000 1 2 ("сон")))) (2236 head-subj 0.000000 2 4 (2233 3sg-pres-suffix2 0.000000 2 3 (10 вид_1 0.000000 2 3 ("видит"))) (2235 bare-np 0.000000 3 4 (2234 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))))))@@("S" ("D" ("D" ("Какой"))) ("S" ("NP" ("N" ("N" ("сон")))) ("V" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("Иван")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_dream_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h13 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.333333)) +124@1@-1@-1@-1@-1@-1@-1@-1@-1@(2255 wh-ques 0.000000 0 4 (2249 head-spec 0.000000 0 2 (2247 sg-acc-masc-inan-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какой"))) (2248 nom-acc5-lex 0.000000 1 2 (7 сон 0.000000 1 2 ("сон")))) (2254 head-subj 0.000000 2 4 (2251 ex-comp 0.000000 2 3 (2250 3sg-pres-suffix2 0.000000 2 3 (10 вид_1 0.000000 2 3 ("видит")))) (2253 bare-np 0.000000 3 4 (2252 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван"))))))@@("S" ("NP" ("D" ("D" ("Какой"))) ("N" ("N" ("сон")))) ("S" ("VP" ("V" ("V" ("видит")))) ("NP" ("N" ("N" ("Иван"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_dream_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.333333)) +124@2@-1@-1@-1@-1@-1@-1@-1@-1@(2246 wh-ques 0.000000 0 4 (2239 sg-nom-masc-suffix2 0.000000 0 1 (6 как_1 0.000000 0 1 ("Какой"))) (2245 comp-head 0.000000 1 4 (2241 bare-np 0.000000 1 2 (2240 nom-acc5-lex 0.000000 1 2 (7 сон 0.000000 1 2 ("сон")))) (2244 head-subj 0.000000 2 4 (2233 3sg-pres-suffix2 0.000000 2 3 (10 вид_1 0.000000 2 3 ("видит"))) (2243 ex-det 0.000000 3 4 (2242 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))))))@@("S" ("D" ("D" ("Какой"))) ("S" ("NP" ("N" ("N" ("сон")))) ("V" ("V" ("V" ("видит"))) ("NP" ("N" ("N" ("Иван")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "exist_q_rel"<-1:-1> LBL: h7 ARG0: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: masc ] RSTR: h9 BODY: h10 ] [ "_dream_n_rel"<-1:-1> LBL: h11 ARG0: x8 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h5 qeq h13 h9 qeq h11 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.333333)) +129@0@-1@-1@-1@-1@-1@-1@-1@-1@(939 subj-head 0.000000 0 5 (931 bare-np 0.000000 0 1 (930 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (938 head-comp 0.000000 1 5 (932 3sg-pres-suffix1 0.000000 1 2 (7 дума 0.000000 1 2 ("думает"))) (937 head-comp 0.000000 2 5 (9 что_2 0.000000 2 3 ("что")) (936 subj-head 0.000000 3 5 (934 bare-np 0.000000 3 4 (933 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (935 3sg-pres-suffix2 0.000000 4 5 (11 леж 0.000000 4 5 ("лежит")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_lie_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +130@0@-1@-1@-1@-1@-1@-1@-1@-1@(1038 subj-head 0.000000 0 4 (1031 bare-np 0.000000 0 1 (1030 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1037 head-comp 0.000000 1 4 (1032 3sg-pres-suffix1 0.000000 1 2 (6 дума 0.000000 1 2 ("думает"))) (1036 subj-head 0.000000 2 4 (1034 bare-np 0.000000 2 3 (1033 nom1-lex 0.000000 2 3 (7 студент 0.000000 2 3 ("студент")))) (1035 3sg-pres-suffix2 0.000000 3 4 (8 леж 0.000000 3 4 ("лежит"))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_lie_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +132@0@-1@-1@-1@-1@-1@-1@-1@-1@(7616 subj-head 0.000000 0 6 (7605 bare-np 0.000000 0 1 (7604 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (7615 head-comp 0.000000 1 6 (7606 3sg-pres-suffix1 0.000000 1 2 (8 дума 0.000000 1 2 ("думает"))) (7614 head-comp 0.000000 2 6 (10 что_2 0.000000 2 3 ("что")) (7613 subj-head 0.000000 3 6 (7608 bare-np 0.000000 3 4 (7607 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (7612 head-comp 0.000000 4 6 (7609 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (7611 bare-np 0.000000 5 6 (7610 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_read_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_book_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +133@0@-1@-1@-1@-1@-1@-1@-1@-1@(2163 head-comp 0.000000 0 6 (2154 head-subj 0.000000 0 2 (2151 3sg-pres-suffix1 0.000000 0 1 (7 дума 0.000000 0 1 ("Думает"))) (2153 bare-np 0.000000 1 2 (2152 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван"))))) (2162 head-comp 0.000000 2 6 (10 что_2 0.000000 2 3 ("что")) (2161 subj-head 0.000000 3 6 (2156 bare-np 0.000000 3 4 (2155 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (2160 head-comp 0.000000 4 6 (2157 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (2159 bare-np 0.000000 5 6 (2158 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу"))))))))@@("S" ("V" ("V" ("V" ("Думает"))) ("NP" ("N" ("N" ("Иван"))))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_read_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_book_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +135@0@-1@-1@-1@-1@-1@-1@-1@-1@(12225 subj-head 0.000000 0 6 (12214 bare-np 0.000000 0 1 (12213 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (12224 head-comp 0.000000 1 6 (12215 3sg-pres-suffix1 0.000000 1 2 (8 дума 0.000000 1 2 ("думает"))) (12223 head-comp 0.000000 2 6 (10 что_2 0.000000 2 3 ("что")) (12222 head-subj 0.000000 3 6 (12219 head-comp 0.000000 3 5 (12216 3sg-pres-suffix1 0.000000 3 4 (11 чита 0.000000 3 4 ("читает"))) (12218 bare-np 0.000000 4 5 (12217 sg-acc2-suffix1 0.000000 4 5 (12 книг 0.000000 4 5 ("книгу"))))) (12221 bare-np 0.000000 5 6 (12220 nom1-lex 0.000000 5 6 (13 студент 0.000000 5 6 ("студент"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))) ("NP" ("N" ("N" ("студент"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_book_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x11 RSTR: h18 BODY: h19 ] [ "_student_n_rel"<-1:-1> LBL: h20 ARG0: x11 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h14 qeq h16 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +136@0@-1@-1@-1@-1@-1@-1@-1@-1@(8602 subj-head 0.000000 0 6 (8591 bare-np 0.000000 0 1 (8590 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (8601 head-comp 0.000000 1 6 (8592 3sg-pres-suffix1 0.000000 1 2 (8 дума 0.000000 1 2 ("думает"))) (8600 head-comp 0.000000 2 6 (10 что_2 0.000000 2 3 ("что")) (8599 comp-head 0.000000 3 6 (8594 bare-np 0.000000 3 4 (8593 sg-acc2-suffix1 0.000000 3 4 (11 книг 0.000000 3 4 ("книгу")))) (8598 head-subj 0.000000 4 6 (8595 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (8597 bare-np 0.000000 5 6 (8596 nom1-lex 0.000000 5 6 (13 студент 0.000000 5 6 ("студент")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("книгу")))) ("V" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("студент")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_read_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_student_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +137@0@-1@-1@-1@-1@-1@-1@-1@-1@(6382 subj-head 0.000000 0 6 (6371 bare-np 0.000000 0 1 (6370 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (6381 comp-head 0.000000 1 6 (6379 head-comp 0.000000 1 5 (9 что_2 0.000000 1 2 ("что")) (6378 subj-head 0.000000 2 5 (6373 bare-np 0.000000 2 3 (6372 nom1-lex 0.000000 2 3 (10 студент 0.000000 2 3 ("студент")))) (6377 head-comp 0.000000 3 5 (6374 3sg-pres-suffix1 0.000000 3 4 (11 чита 0.000000 3 4 ("читает"))) (6376 bare-np 0.000000 4 5 (6375 sg-acc2-suffix1 0.000000 4 5 (12 книг 0.000000 4 5 ("книгу"))))))) (6380 3sg-pres-suffix1 0.000000 5 6 (13 дума 0.000000 5 6 ("думает")))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))) ("V" ("V" ("думает")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_student_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_read_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_book_n_rel"<-1:-1> LBL: h19 ARG0: x15 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h17 qeq h19 h20 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +139@0@-1@-1@-1@-1@-1@-1@-1@-1@(1384 subj-head 0.000000 0 5 (1376 bare-np 0.000000 0 1 (1375 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1383 head-comp 0.000000 1 5 (1377 3sg-pres-suffix1 0.000000 1 2 (7 зна_1 0.000000 1 2 ("знает"))) (1382 head-comp 0.000000 2 5 (10 что_2 0.000000 2 3 ("что")) (1381 subj-head 0.000000 3 5 (1379 bare-np 0.000000 3 4 (1378 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (1380 3sg-pres-suffix2 0.000000 4 5 (12 леж 0.000000 4 5 ("лежит")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_lie_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +140@0@-1@-1@-1@-1@-1@-1@-1@-1@(1571 subj-head 0.000000 0 4 (1564 bare-np 0.000000 0 1 (1563 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1570 head-comp 0.000000 1 4 (1565 3sg-pres-suffix1 0.000000 1 2 (6 зна_1 0.000000 1 2 ("знает"))) (1569 subj-head 0.000000 2 4 (1567 bare-np 0.000000 2 3 (1566 nom1-lex 0.000000 2 3 (8 студент 0.000000 2 3 ("студент")))) (1568 3sg-pres-suffix2 0.000000 3 4 (9 леж 0.000000 3 4 ("лежит"))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_student_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_lie_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +144@0@-1@-1@-1@-1@-1@-1@-1@-1@(868 subj-head 0.000000 0 4 (862 bare-np 0.000000 0 1 (861 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (867 head-comp 0.000000 1 4 (863 3sg-pres-suffix1 0.000000 1 2 (6 спрашива 0.000000 1 2 ("спрашивает"))) (866 wh-ques 0.000000 2 4 (7 кто 0.000000 2 3 ("кто")) (865 ex-subj 0.000000 3 4 (864 3sg-pres-suffix1 0.000000 3 4 (8 ид 0.000000 3 4 ("идет")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +144@1@-1@-1@-1@-1@-1@-1@-1@-1@(876 in-situ-ques 0.000000 0 4 (875 subj-head 0.000000 0 4 (870 bare-np 0.000000 0 1 (869 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (874 head-comp 0.000000 1 4 (871 3sg-pres-suffix1 0.000000 1 2 (6 спрашива 0.000000 1 2 ("спрашивает"))) (873 subj-head 0.000000 2 4 (7 кто 0.000000 2 3 ("кто")) (872 3sg-pres-suffix1 0.000000 3 4 (8 ид 0.000000 3 4 ("идет")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +146@0@-1@-1@-1@-1@-1@-1@-1@-1@(652 in-situ-ques 0.000000 0 4 (651 head-comp 0.000000 0 4 (648 head-subj 0.000000 0 2 (645 3sg-pres-suffix1 0.000000 0 1 (5 спрашива 0.000000 0 1 ("Спрашивает"))) (647 bare-np 0.000000 1 2 (646 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван"))))) (650 subj-head 0.000000 2 4 (7 кто 0.000000 2 3 ("кто")) (649 3sg-pres-suffix1 0.000000 3 4 (8 ид 0.000000 3 4 ("идет"))))))@@("S" ("S" ("V" ("V" ("V" ("Спрашивает"))) ("NP" ("N" ("N" ("Иван"))))) ("S" ("NP" ("кто")) ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +146@1@-1@-1@-1@-1@-1@-1@-1@-1@(660 head-comp 0.000000 0 4 (656 head-subj 0.000000 0 2 (653 3sg-pres-suffix1 0.000000 0 1 (5 спрашива 0.000000 0 1 ("Спрашивает"))) (655 bare-np 0.000000 1 2 (654 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван"))))) (659 wh-ques 0.000000 2 4 (7 кто 0.000000 2 3 ("кто")) (658 ex-subj 0.000000 3 4 (657 3sg-pres-suffix1 0.000000 3 4 (8 ид 0.000000 3 4 ("идет"))))))@@("S" ("V" ("V" ("V" ("Спрашивает"))) ("NP" ("N" ("N" ("Иван"))))) ("S" ("NP" ("кто")) ("S" ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: h4 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +147@0@-1@-1@-1@-1@-1@-1@-1@-1@(461 comp-head 0.000000 0 4 (456 wh-ques 0.000000 0 2 (5 кто 0.000000 0 1 ("Кто")) (455 ex-subj 0.000000 1 2 (454 3sg-pres-suffix1 0.000000 1 2 (6 ид 0.000000 1 2 ("идет"))))) (460 subj-head 0.000000 2 4 (458 bare-np 0.000000 2 3 (457 nom1-lex 0.000000 2 3 (7 Иван 0.000000 2 3 ("Иван")))) (459 3sg-pres-suffix1 0.000000 3 4 (8 спрашива 0.000000 3 4 ("спрашивает")))))@@("S" ("S" ("NP" ("Кто")) ("S" ("VP" ("VP" ("идет"))))) ("V" ("NP" ("N" ("N" ("Иван")))) ("V" ("V" ("спрашивает")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h12 BODY: h13 ] [ "_Ivan_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h12 qeq h14 h15 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +150@0@-1@-1@-1@-1@-1@-1@-1@-1@(1258 subj-head 0.000000 0 4 (1252 bare-np 0.000000 0 1 (1251 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1257 head-comp 0.000000 1 4 (1253 3sg-pres-suffix1 0.000000 1 2 (7 зна_2 0.000000 1 2 ("знает"))) (1256 wh-ques 0.000000 2 4 (8 кто 0.000000 2 3 ("кто")) (1255 ex-subj 0.000000 3 4 (1254 3sg-pres-suffix1 0.000000 3 4 (9 ид 0.000000 3 4 ("идет")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("кто")) ("S" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +150@1@-1@-1@-1@-1@-1@-1@-1@-1@(1266 in-situ-ques 0.000000 0 4 (1265 subj-head 0.000000 0 4 (1260 bare-np 0.000000 0 1 (1259 nom1-lex 0.000000 0 1 (5 Иван 0.000000 0 1 ("Иван")))) (1264 head-comp 0.000000 1 4 (1261 3sg-pres-suffix1 0.000000 1 2 (7 зна_2 0.000000 1 2 ("знает"))) (1263 subj-head 0.000000 2 4 (8 кто 0.000000 2 3 ("кто")) (1262 3sg-pres-suffix1 0.000000 3 4 (9 ид 0.000000 3 4 ("идет")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("кто")) ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +154@0@-1@-1@-1@-1@-1@-1@-1@-1@(1689 subj-head 0.000000 0 5 (1680 bare-np 0.000000 0 1 (1679 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1688 head-comp 0.000000 1 5 (1681 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1687 wh-ques 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (1686 ex-subj 0.000000 3 5 (1685 comp-head 0.000000 3 5 (1683 bare-np 0.000000 3 4 (1682 sg-acc2-suffix1 0.000000 3 4 (9 книг 0.000000 3 4 ("книгу")))) (1684 3sg-pres-suffix1 0.000000 4 5 (10 чита 0.000000 4 5 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("VP" ("NP" ("N" ("N" ("книгу")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +154@1@-1@-1@-1@-1@-1@-1@-1@-1@(1700 in-situ-ques 0.000000 0 5 (1699 subj-head 0.000000 0 5 (1691 bare-np 0.000000 0 1 (1690 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1698 head-comp 0.000000 1 5 (1692 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1697 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (1696 comp-head 0.000000 3 5 (1694 bare-np 0.000000 3 4 (1693 sg-acc2-suffix1 0.000000 3 4 (9 книг 0.000000 3 4 ("книгу")))) (1695 3sg-pres-suffix1 0.000000 4 5 (10 чита 0.000000 4 5 ("читает"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("NP" ("N" ("N" ("книгу")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +155@0@-1@-1@-1@-1@-1@-1@-1@-1@(4346 subj-head 0.000000 0 5 (4337 bare-np 0.000000 0 1 (4336 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (4345 head-comp 0.000000 1 5 (4338 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (4344 wh-ques 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (4343 ex-subj 0.000000 3 5 (4342 head-comp 0.000000 3 5 (4339 3sg-pres-suffix1 0.000000 3 4 (9 чита 0.000000 3 4 ("читает"))) (4341 bare-np 0.000000 4 5 (4340 sg-acc2-suffix1 0.000000 4 5 (10 книг 0.000000 4 5 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_read_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_book_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +155@1@-1@-1@-1@-1@-1@-1@-1@-1@(4357 in-situ-ques 0.000000 0 5 (4356 subj-head 0.000000 0 5 (4348 bare-np 0.000000 0 1 (4347 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (4355 head-comp 0.000000 1 5 (4349 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (4354 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (4353 head-comp 0.000000 3 5 (4350 3sg-pres-suffix1 0.000000 3 4 (9 чита 0.000000 3 4 ("читает"))) (4352 bare-np 0.000000 4 5 (4351 sg-acc2-suffix1 0.000000 4 5 (10 книг 0.000000 4 5 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_read_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_book_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +156@0@-1@-1@-1@-1@-1@-1@-1@-1@(1320 in-situ-ques 0.000000 0 5 (1319 subj-head 0.000000 0 5 (1311 bare-np 0.000000 0 1 (1310 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1318 head-comp 0.000000 1 5 (1312 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1317 comp-head 0.000000 2 5 (8 что_1 0.000000 2 3 ("что")) (1316 subj-head 0.000000 3 5 (1314 bare-np 0.000000 3 4 (1313 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (1315 3sg-pres-suffix1 0.000000 4 5 (11 чита 0.000000 4 5 ("читает"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("V" ("NP" ("N" ("N" ("студент")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +156@1@-1@-1@-1@-1@-1@-1@-1@-1@(1331 subj-head 0.000000 0 5 (1322 bare-np 0.000000 0 1 (1321 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1330 head-comp 0.000000 1 5 (1323 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1329 wh-ques 0.000000 2 5 (8 что_1 0.000000 2 3 ("что")) (1328 subj-head 0.000000 3 5 (1325 bare-np 0.000000 3 4 (1324 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (1327 ex-comp 0.000000 4 5 (1326 3sg-pres-suffix1 0.000000 4 5 (11 чита 0.000000 4 5 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +158@0@-1@-1@-1@-1@-1@-1@-1@-1@(1490 subj-head 0.000000 0 6 (1478 bare-np 0.000000 0 1 (1477 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (1489 head-comp 0.000000 1 6 (1479 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1488 wh-ques 0.000000 2 6 (1480 sg-acc-fem-suffix2 0.000000 2 3 (10 как_1 0.000000 2 3 ("какую"))) (1487 comp-head 0.000000 3 6 (1482 ex-det 0.000000 3 4 (1481 sg-acc2-suffix1 0.000000 3 4 (11 книг 0.000000 3 4 ("книгу")))) (1486 subj-head 0.000000 4 6 (1484 bare-np 0.000000 4 5 (1483 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1485 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какую"))) ("S" ("NP" ("N" ("N" ("книгу")))) ("V" ("NP" ("N" ("N" ("студент")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h21 h16 qeq h18 > ICONS: < i22 info-str i23 > ]@((:ascore . 0.0) (:probability . 0.333333)) +158@1@-1@-1@-1@-1@-1@-1@-1@-1@(1514 in-situ-ques 0.000000 0 6 (1513 subj-head 0.000000 0 6 (1503 bare-np 0.000000 0 1 (1502 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (1512 head-comp 0.000000 1 6 (1504 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1511 comp-head 0.000000 2 6 (1507 head-spec 0.000000 2 4 (1505 sg-acc-fem-suffix2 0.000000 2 3 (10 как_1 0.000000 2 3 ("какую"))) (1506 sg-acc2-suffix1 0.000000 3 4 (11 книг 0.000000 3 4 ("книгу")))) (1510 subj-head 0.000000 4 6 (1508 bare-np 0.000000 4 5 (1483 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1509 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("V" ("NP" ("N" ("N" ("студент")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < i21 info-str i22 > ]@((:ascore . 0.0) (:probability . 0.333333)) +158@2@-1@-1@-1@-1@-1@-1@-1@-1@(1501 subj-head 0.000000 0 6 (1478 bare-np 0.000000 0 1 (1477 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (1500 head-comp 0.000000 1 6 (1479 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1499 wh-ques 0.000000 2 6 (1493 head-spec 0.000000 2 4 (1491 sg-acc-fem-suffix2 0.000000 2 3 (10 как_1 0.000000 2 3 ("какую"))) (1492 sg-acc2-suffix1 0.000000 3 4 (11 книг 0.000000 3 4 ("книгу")))) (1498 subj-head 0.000000 4 6 (1495 bare-np 0.000000 4 5 (1494 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1497 ex-comp 0.000000 5 6 (1496 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < i21 info-str i22 > ]@((:ascore . 0.0) (:probability . 0.333333)) +159@0@-1@-1@-1@-1@-1@-1@-1@-1@(1535 subj-head 0.000000 0 6 (1523 bare-np 0.000000 0 1 (1522 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (1534 head-comp 0.000000 1 6 (1524 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1533 wh-ques 0.000000 2 6 (1525 sg-acc-fem-suffix2 0.000000 2 3 (10 как_1 0.000000 2 3 ("какую"))) (1532 subj-head 0.000000 3 6 (1527 bare-np 0.000000 3 4 (1526 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (1531 head-comp 0.000000 4 6 (1528 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (1530 ex-det 0.000000 5 6 (1529 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какую"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h15 BODY: h16 ] [ "_student_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_read_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ARG2: x10 ] [ "_book_n_rel"<-1:-1> LBL: h20 ARG0: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h18 h11 qeq h21 h15 qeq h17 > ICONS: < i22 info-str i23 > ]@((:ascore . 0.0) (:probability . 1.0)) +160@0@-1@-1@-1@-1@-1@-1@-1@-1@(11576 in-situ-ques 0.000000 0 5 (11575 subj-head 0.000000 0 5 (11567 bare-np 0.000000 0 1 (11566 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (11574 head-comp 0.000000 1 5 (11568 3sg-pres-suffix1 0.000000 1 2 (8 зна_2 0.000000 1 2 ("знает"))) (11573 comp-head 0.000000 2 5 (9 что_1 0.000000 2 3 ("что")) (11572 head-subj 0.000000 3 5 (11569 3sg-pres-suffix1 0.000000 3 4 (11 чита 0.000000 3 4 ("читает"))) (11571 bare-np 0.000000 4 5 (11570 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("что")) ("V" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("студент")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_read_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_student_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +160@1@-1@-1@-1@-1@-1@-1@-1@-1@(11587 subj-head 0.000000 0 5 (11578 bare-np 0.000000 0 1 (11577 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (11586 head-comp 0.000000 1 5 (11579 3sg-pres-suffix1 0.000000 1 2 (8 зна_2 0.000000 1 2 ("знает"))) (11585 wh-ques 0.000000 2 5 (9 что_1 0.000000 2 3 ("что")) (11584 head-subj 0.000000 3 5 (11581 ex-comp 0.000000 3 4 (11580 3sg-pres-suffix1 0.000000 3 4 (11 чита 0.000000 3 4 ("читает")))) (11583 bare-np 0.000000 4 5 (11582 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("читает")))) ("NP" ("N" ("N" ("студент"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_read_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x10 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_student_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +163@0@-1@-1@-1@-1@-1@-1@-1@-1@(1351 in-situ-ques 0.000000 0 5 (1350 subj-head 0.000000 0 5 (1344 bare-np 0.000000 0 1 (1343 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1349 head-comp 0.000000 1 5 (1345 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1348 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (1347 comp-head 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (1346 3sg-pres-suffix2 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видит"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("NP" ("что")) ("V" ("V" ("видит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_thing_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +163@1@-1@-1@-1@-1@-1@-1@-1@-1@(1361 subj-head 0.000000 0 5 (1353 bare-np 0.000000 0 1 (1352 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1360 head-comp 0.000000 1 5 (1354 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1359 wh-ques 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (1358 wh-ques 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (1357 ex-subj 0.000000 4 5 (1356 ex-comp 0.000000 4 5 (1355 3sg-pres-suffix2 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видит")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_thing_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +164@0@-1@-1@-1@-1@-1@-1@-1@-1@(1153 in-situ-ques 0.000000 0 5 (1152 subj-head 0.000000 0 5 (1146 bare-np 0.000000 0 1 (1145 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1151 head-comp 0.000000 1 5 (1147 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1150 comp-head 0.000000 2 5 (8 что_1 0.000000 2 3 ("что")) (1149 subj-head 0.000000 3 5 (10 кто 0.000000 3 4 ("кто")) (1148 3sg-pres-suffix2 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видит"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("V" ("NP" ("кто")) ("V" ("V" ("видит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_person_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +164@1@-1@-1@-1@-1@-1@-1@-1@-1@(1162 subj-head 0.000000 0 5 (1155 bare-np 0.000000 0 1 (1154 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1161 head-comp 0.000000 1 5 (1156 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1160 wh-ques 0.000000 2 5 (8 что_1 0.000000 2 3 ("что")) (1159 subj-head 0.000000 3 5 (10 кто 0.000000 3 4 ("кто")) (1158 ex-comp 0.000000 4 5 (1157 3sg-pres-suffix2 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видит"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("NP" ("кто")) ("VP" ("V" ("V" ("видит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_person_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +165@0@-1@-1@-1@-1@-1@-1@-1@-1@(9569 subj-head 0.000000 0 5 (9562 bare-np 0.000000 0 1 (9561 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (9568 head-comp 0.000000 1 5 (9563 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (9567 wh-ques 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (9566 ex-subj 0.000000 3 5 (9565 head-comp 0.000000 3 5 (9564 3sg-pres-suffix2 0.000000 3 4 (11 вид_1 0.000000 3 4 ("видит"))) (12 что_1 0.000000 4 5 ("что")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("что")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_see_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +165@1@-1@-1@-1@-1@-1@-1@-1@-1@(9578 in-situ-ques 0.000000 0 5 (9577 subj-head 0.000000 0 5 (9571 bare-np 0.000000 0 1 (9570 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (9576 head-comp 0.000000 1 5 (9572 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (9575 subj-head 0.000000 2 5 (8 кто 0.000000 2 3 ("кто")) (9574 head-comp 0.000000 3 5 (9573 3sg-pres-suffix2 0.000000 3 4 (11 вид_1 0.000000 3 4 ("видит"))) (12 что_1 0.000000 4 5 ("что")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("V" ("V" ("видит"))) ("NP" ("что")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_see_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +166@0@-1@-1@-1@-1@-1@-1@-1@-1@(13258 in-situ-ques 0.000000 0 5 (13257 subj-head 0.000000 0 5 (13251 bare-np 0.000000 0 1 (13250 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (13256 head-comp 0.000000 1 5 (13252 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (13255 comp-head 0.000000 2 5 (8 что_1 0.000000 2 3 ("что")) (13254 head-subj 0.000000 3 5 (13253 3sg-pres-suffix2 0.000000 3 4 (12 вид_1 0.000000 3 4 ("видит"))) (13 кто 0.000000 4 5 ("кто")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("V" ("V" ("V" ("видит"))) ("NP" ("кто")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_see_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ARG2: x10 ] [ "_person_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +166@1@-1@-1@-1@-1@-1@-1@-1@-1@(13267 subj-head 0.000000 0 5 (13260 bare-np 0.000000 0 1 (13259 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (13266 head-comp 0.000000 1 5 (13261 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (13265 wh-ques 0.000000 2 5 (8 что_1 0.000000 2 3 ("что")) (13264 head-subj 0.000000 3 5 (13263 ex-comp 0.000000 3 4 (13262 3sg-pres-suffix2 0.000000 3 4 (12 вид_1 0.000000 3 4 ("видит")))) (13 кто 0.000000 4 5 ("кто"))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видит")))) ("NP" ("кто"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_see_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ARG2: x10 ] [ "_person_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +168@0@-1@-1@-1@-1@-1@-1@-1@-1@(1741 in-situ-ques 0.000000 0 5 (1740 subj-head 0.000000 0 5 (1734 bare-np 0.000000 0 1 (1733 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1739 head-comp 0.000000 1 5 (1735 3sg-pres-suffix1 0.000000 1 2 (8 зна_2 0.000000 1 2 ("знает"))) (1738 subj-head 0.000000 2 5 (9 кто 0.000000 2 3 ("кто")) (1737 comp-head 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (1736 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("кто")) ("VP" ("NP" ("что")) ("V" ("V" ("видит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_thing_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +168@1@-1@-1@-1@-1@-1@-1@-1@-1@(1751 subj-head 0.000000 0 5 (1743 bare-np 0.000000 0 1 (1742 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1750 head-comp 0.000000 1 5 (1744 3sg-pres-suffix1 0.000000 1 2 (8 зна_2 0.000000 1 2 ("знает"))) (1749 wh-ques 0.000000 2 5 (9 кто 0.000000 2 3 ("кто")) (1748 wh-ques 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (1747 ex-subj 0.000000 4 5 (1746 ex-comp 0.000000 4 5 (1745 3sg-pres-suffix2 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видит")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_thing_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +185@0@-1@-1@-1@-1@-1@-1@-1@-1@(1565 in-situ-ques 0.000000 0 5 (1564 subj-head 0.000000 0 5 (1556 bare-np 0.000000 0 1 (1555 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1563 head-comp 0.000000 1 5 (1557 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1562 adj-head 0.000000 2 5 (8 где 0.000000 2 3 ("где")) (1561 subj-head 0.000000 3 5 (1559 bare-np 0.000000 3 4 (1558 nom1-lex 0.000000 3 4 (9 студент 0.000000 3 4 ("студент")))) (1560 3sg-pres-suffix2 0.000000 4 5 (10 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_lie_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +185@1@-1@-1@-1@-1@-1@-1@-1@-1@(1576 subj-head 0.000000 0 5 (1567 bare-np 0.000000 0 1 (1566 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (1575 head-comp 0.000000 1 5 (1568 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (1574 wh-ques 0.000000 2 5 (8 где 0.000000 2 3 ("где")) (1573 subj-head 0.000000 3 5 (1570 bare-np 0.000000 3 4 (1569 nom1-lex 0.000000 3 4 (9 студент 0.000000 3 4 ("студент")))) (1572 ex-adj-first 0.000000 4 5 (1571 3sg-pres-suffix2 0.000000 4 5 (10 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_lie_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +186@0@-1@-1@-1@-1@-1@-1@-1@-1@(11022 subj-head 0.000000 0 6 (11010 bare-np 0.000000 0 1 (11009 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (11021 head-comp 0.000000 1 6 (11011 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (11020 wh-ques 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (11019 subj-head 0.000000 3 6 (11013 bare-np 0.000000 3 4 (11012 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (11018 head-comp 0.000000 4 6 (11015 ex-adj-first 0.000000 4 5 (11014 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает")))) (11017 bare-np 0.000000 5 6 (11016 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("V" ("читает")))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +186@1@-1@-1@-1@-1@-1@-1@-1@-1@(11044 subj-head 0.000000 0 6 (11010 bare-np 0.000000 0 1 (11009 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (11043 head-comp 0.000000 1 6 (11011 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (11042 wh-ques 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (11041 subj-head 0.000000 3 6 (11013 bare-np 0.000000 3 4 (11012 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (11040 ex-adj-first 0.000000 4 6 (11039 head-comp 0.000000 4 6 (11036 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (11038 bare-np 0.000000 5 6 (11037 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +186@2@-1@-1@-1@-1@-1@-1@-1@-1@(11035 in-situ-ques 0.000000 0 6 (11034 subj-head 0.000000 0 6 (11024 bare-np 0.000000 0 1 (11023 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (11033 head-comp 0.000000 1 6 (11025 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (11032 adj-head 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (11031 subj-head 0.000000 3 6 (11027 bare-np 0.000000 3 4 (11026 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (11030 head-comp 0.000000 4 6 (11028 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (11029 bare-np 0.000000 5 6 (11016 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +187@0@-1@-1@-1@-1@-1@-1@-1@-1@(6124 in-situ-ques 0.000000 0 6 (6123 subj-head 0.000000 0 6 (6112 bare-np 0.000000 0 1 (6111 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (6122 head-comp 0.000000 1 6 (6114 head-adj 0.000000 1 3 (6113 3sg-pres-suffix1 0.000000 1 2 (8 дума 0.000000 1 2 ("думает"))) (9 как_2 0.000000 2 3 ("как"))) (6121 subj-head 0.000000 3 6 (6116 bare-np 0.000000 3 4 (6115 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (6120 head-comp 0.000000 4 6 (6117 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (6119 bare-np 0.000000 5 6 (6118 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("думает"))) ("ADV" ("как"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_read_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h20 h13 qeq h11 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +188@0@-1@-1@-1@-1@-1@-1@-1@-1@(2650 in-situ-ques 0.000000 0 5 (2649 subj-head 0.000000 0 5 (2641 bare-np 0.000000 0 1 (2640 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2648 head-comp 0.000000 1 5 (2643 head-adj 0.000000 1 3 (2642 3sg-pres-suffix1 0.000000 1 2 (7 зна_1 0.000000 1 2 ("знает"))) (9 где 0.000000 2 3 ("где"))) (2647 subj-head 0.000000 3 5 (2645 bare-np 0.000000 3 4 (2644 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2646 3sg-pres-suffix2 0.000000 4 5 (11 леж 0.000000 4 5 ("лежит")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("знает"))) ("ADV" ("где"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_lie_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h20 h13 qeq h11 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +188@1@-1@-1@-1@-1@-1@-1@-1@-1@(2670 subj-head 0.000000 0 5 (2661 bare-np 0.000000 0 1 (2660 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2669 head-comp 0.000000 1 5 (2662 3sg-pres-suffix1 0.000000 1 2 (8 зна_2 0.000000 1 2 ("знает"))) (2668 wh-ques 0.000000 2 5 (9 где 0.000000 2 3 ("где")) (2667 subj-head 0.000000 3 5 (2664 bare-np 0.000000 3 4 (2663 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2666 ex-adj-first 0.000000 4 5 (2665 3sg-pres-suffix2 0.000000 4 5 (11 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_lie_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +188@2@-1@-1@-1@-1@-1@-1@-1@-1@(2659 in-situ-ques 0.000000 0 5 (2658 subj-head 0.000000 0 5 (2641 bare-np 0.000000 0 1 (2640 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2657 head-comp 0.000000 1 5 (2651 3sg-pres-suffix1 0.000000 1 2 (8 зна_2 0.000000 1 2 ("знает"))) (2656 adj-head 0.000000 2 5 (9 где 0.000000 2 3 ("где")) (2655 subj-head 0.000000 3 5 (2653 bare-np 0.000000 3 4 (2652 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2654 3sg-pres-suffix2 0.000000 4 5 (11 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_lie_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +189@0@-1@-1@-1@-1@-1@-1@-1@-1@(16106 in-situ-ques 0.000000 0 6 (16105 subj-head 0.000000 0 6 (16094 bare-np 0.000000 0 1 (16093 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (16104 head-comp 0.000000 1 6 (16096 head-adj 0.000000 1 3 (16095 3sg-pres-suffix1 0.000000 1 2 (8 зна_1 0.000000 1 2 ("знает"))) (10 как_2 0.000000 2 3 ("как"))) (16103 subj-head 0.000000 3 6 (16098 bare-np 0.000000 3 4 (16097 nom1-lex 0.000000 3 4 (12 студент 0.000000 3 4 ("студент")))) (16102 head-comp 0.000000 4 6 (16099 3sg-pres-suffix1 0.000000 4 5 (13 чита 0.000000 4 5 ("читает"))) (16101 bare-np 0.000000 5 6 (16100 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("знает"))) ("ADV" ("как"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_read_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h20 h13 qeq h11 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +189@1@-1@-1@-1@-1@-1@-1@-1@-1@(16130 in-situ-ques 0.000000 0 6 (16129 subj-head 0.000000 0 6 (16094 bare-np 0.000000 0 1 (16093 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (16128 head-comp 0.000000 1 6 (16120 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (16127 adj-head 0.000000 2 6 (10 как_2 0.000000 2 3 ("как")) (16126 subj-head 0.000000 3 6 (16122 bare-np 0.000000 3 4 (16121 nom1-lex 0.000000 3 4 (12 студент 0.000000 3 4 ("студент")))) (16125 head-comp 0.000000 4 6 (16123 3sg-pres-suffix1 0.000000 4 5 (13 чита 0.000000 4 5 ("читает"))) (16124 bare-np 0.000000 5 6 (16100 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +189@2@-1@-1@-1@-1@-1@-1@-1@-1@(16119 subj-head 0.000000 0 6 (16108 bare-np 0.000000 0 1 (16107 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (16118 head-comp 0.000000 1 6 (16109 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (16117 wh-ques 0.000000 2 6 (10 как_2 0.000000 2 3 ("как")) (16116 subj-head 0.000000 3 6 (16111 bare-np 0.000000 3 4 (16110 nom1-lex 0.000000 3 4 (12 студент 0.000000 3 4 ("студент")))) (16115 head-comp 0.000000 4 6 (16113 ex-adj-first 0.000000 4 5 (16112 3sg-pres-suffix1 0.000000 4 5 (13 чита 0.000000 4 5 ("читает")))) (16114 bare-np 0.000000 5 6 (16100 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("V" ("читает")))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +189@3@-1@-1@-1@-1@-1@-1@-1@-1@(16139 subj-head 0.000000 0 6 (16108 bare-np 0.000000 0 1 (16107 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (16138 head-comp 0.000000 1 6 (16109 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (16137 wh-ques 0.000000 2 6 (10 как_2 0.000000 2 3 ("как")) (16136 subj-head 0.000000 3 6 (16111 bare-np 0.000000 3 4 (16110 nom1-lex 0.000000 3 4 (12 студент 0.000000 3 4 ("студент")))) (16135 ex-adj-first 0.000000 4 6 (16134 head-comp 0.000000 4 6 (16131 3sg-pres-suffix1 0.000000 4 5 (13 чита 0.000000 4 5 ("читает"))) (16133 bare-np 0.000000 5 6 (16132 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +192@0@-1@-1@-1@-1@-1@-1@-1@-1@(4234 in-situ-ques 0.000000 0 6 (4233 subj-head 0.000000 0 6 (4224 bare-np 0.000000 0 1 (4223 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (4232 head-comp 0.000000 1 6 (4226 adj-head-scop 0.000000 1 3 (8 не 0.000000 1 2 ("не")) (4225 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает")))) (4231 head-subj 0.000000 3 6 (4228 adj-head 0.000000 3 5 (10 куда 0.000000 3 4 ("куда")) (4227 3sg-pres-suffix1 0.000000 4 5 (11 ид 0.000000 4 5 ("идет")))) (4230 bare-np 0.000000 5 6 (4229 nom1-lex 0.000000 5 6 (12 студент 0.000000 5 6 ("студент"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("VP" ("ADV" ("куда")) ("VP" ("VP" ("идет")))) ("NP" ("N" ("N" ("студент"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "_go_v_rel"<-1:-1> LBL: h13 ARG0: e15 ARG1: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x21 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h13 h19 qeq h17 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +192@1@-1@-1@-1@-1@-1@-1@-1@-1@(4254 subj-head 0.000000 0 6 (4244 bare-np 0.000000 0 1 (4243 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (4253 head-comp 0.000000 1 6 (4246 adj-head-scop 0.000000 1 3 (8 не 0.000000 1 2 ("не")) (4245 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает")))) (4252 wh-ques 0.000000 3 6 (10 куда 0.000000 3 4 ("куда")) (4251 head-subj 0.000000 4 6 (4248 ex-adj-first 0.000000 4 5 (4247 3sg-pres-suffix1 0.000000 4 5 (11 ид 0.000000 4 5 ("идет")))) (4250 bare-np 0.000000 5 6 (4249 nom1-lex 0.000000 5 6 (12 студент 0.000000 5 6 ("студент"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("ADV" ("куда")) ("S" ("VP" ("VP" ("VP" ("идет")))) ("NP" ("N" ("N" ("студент"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "_go_v_rel"<-1:-1> LBL: h13 ARG0: e15 ARG1: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x21 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h13 h19 qeq h17 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +192@2@-1@-1@-1@-1@-1@-1@-1@-1@(4242 in-situ-ques 0.000000 0 6 (4241 subj-head 0.000000 0 6 (4224 bare-np 0.000000 0 1 (4223 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (4240 head-comp 0.000000 1 6 (4226 adj-head-scop 0.000000 1 3 (8 не 0.000000 1 2 ("не")) (4225 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает")))) (4239 adj-head 0.000000 3 6 (10 куда 0.000000 3 4 ("куда")) (4238 head-subj 0.000000 4 6 (4235 3sg-pres-suffix1 0.000000 4 5 (11 ид 0.000000 4 5 ("идет"))) (4237 bare-np 0.000000 5 6 (4236 nom1-lex 0.000000 5 6 (12 студент 0.000000 5 6 ("студент")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("ADV" ("куда")) ("S" ("VP" ("VP" ("идет"))) ("NP" ("N" ("N" ("студент")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "_go_v_rel"<-1:-1> LBL: h13 ARG0: e15 ARG1: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x21 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h13 h19 qeq h17 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +193@0@-1@-1@-1@-1@-1@-1@-1@-1@(689 comp-head 0.000000 0 6 (683 wh-ques 0.000000 0 3 (7 куда 0.000000 0 1 ("Куда")) (682 head-subj 0.000000 1 3 (679 ex-adj-first 0.000000 1 2 (678 3sg-pres-suffix1 0.000000 1 2 (8 ид 0.000000 1 2 ("идет")))) (681 bare-np 0.000000 2 3 (680 nom1-lex 0.000000 2 3 (9 студент 0.000000 2 3 ("студент")))))) (688 subj-head 0.000000 3 6 (685 bare-np 0.000000 3 4 (684 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван")))) (687 adj-head-scop 0.000000 4 6 (11 не 0.000000 4 5 ("не")) (686 3sg-pres-suffix1 0.000000 5 6 (12 спрашива 0.000000 5 6 ("спрашивает"))))))@@("S" ("S" ("ADV" ("Куда")) ("S" ("VP" ("VP" ("VP" ("идет")))) ("NP" ("N" ("N" ("студент")))))) ("V" ("NP" ("N" ("N" ("Иван")))) ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_go_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x12 RSTR: h14 BODY: h15 ] [ "_student_n_rel"<-1:-1> LBL: h16 ARG0: x12 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_Ivan_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e22 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h23 ] [ "_ask_v_rel"<-1:-1> LBL: h24 ARG0: e2 ARG1: x18 ARG2: h25 ] > HCONS: < h0 qeq h1 h10 qeq h8 h14 qeq h16 h19 qeq h21 h23 qeq h24 h25 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +194@0@-1@-1@-1@-1@-1@-1@-1@-1@(942 subj-head 0.000000 0 5 (935 bare-np 0.000000 0 1 (934 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (941 head-comp 0.000000 1 5 (937 adj-head-scop 0.000000 1 3 (7 не 0.000000 1 2 ("не")) (936 3sg-pres-suffix1 0.000000 2 3 (8 спрашива 0.000000 2 3 ("спрашивает")))) (940 wh-ques 0.000000 3 5 (9 кто 0.000000 3 4 ("кто")) (939 ex-subj 0.000000 4 5 (938 3sg-pres-suffix1 0.000000 4 5 (10 ид 0.000000 4 5 ("идет")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("NP" ("кто")) ("S" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "_person_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h18 h16 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +194@1@-1@-1@-1@-1@-1@-1@-1@-1@(951 in-situ-ques 0.000000 0 5 (950 subj-head 0.000000 0 5 (944 bare-np 0.000000 0 1 (943 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (949 head-comp 0.000000 1 5 (946 adj-head-scop 0.000000 1 3 (7 не 0.000000 1 2 ("не")) (945 3sg-pres-suffix1 0.000000 2 3 (8 спрашива 0.000000 2 3 ("спрашивает")))) (948 subj-head 0.000000 3 5 (9 кто 0.000000 3 4 ("кто")) (947 3sg-pres-suffix1 0.000000 4 5 (10 ид 0.000000 4 5 ("идет")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("NP" ("кто")) ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "_person_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h18 h16 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +195@0@-1@-1@-1@-1@-1@-1@-1@-1@(856 in-situ-ques 0.000000 0 5 (855 head-comp 0.000000 0 5 (852 head-subj 0.000000 0 3 (849 adj-head-scop 0.000000 0 2 (6 не 0.000000 0 1 ("Не")) (848 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает")))) (851 bare-np 0.000000 2 3 (850 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван"))))) (854 subj-head 0.000000 3 5 (9 кто 0.000000 3 4 ("кто")) (853 3sg-pres-suffix1 0.000000 4 5 (10 ид 0.000000 4 5 ("идет"))))))@@("S" ("S" ("V" ("V" ("ADV" ("Не")) ("V" ("V" ("спрашивает")))) ("NP" ("N" ("N" ("Иван"))))) ("S" ("NP" ("кто")) ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "neg_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h5 ] [ "_ask_v_rel"<-1:-1> LBL: h6 ARG0: e2 ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x7 ] [ "_person_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ] > HCONS: < h0 qeq h1 h5 qeq h6 h8 qeq h18 h10 qeq h12 h16 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +195@1@-1@-1@-1@-1@-1@-1@-1@-1@(865 head-comp 0.000000 0 5 (861 head-subj 0.000000 0 3 (858 adj-head-scop 0.000000 0 2 (6 не 0.000000 0 1 ("Не")) (857 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает")))) (860 bare-np 0.000000 2 3 (859 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван"))))) (864 wh-ques 0.000000 3 5 (9 кто 0.000000 3 4 ("кто")) (863 ex-subj 0.000000 4 5 (862 3sg-pres-suffix1 0.000000 4 5 (10 ид 0.000000 4 5 ("идет"))))))@@("S" ("V" ("V" ("ADV" ("Не")) ("V" ("V" ("спрашивает")))) ("NP" ("N" ("N" ("Иван"))))) ("S" ("NP" ("кто")) ("S" ("VP" ("VP" ("идет"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "neg_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h5 ] [ "_ask_v_rel"<-1:-1> LBL: h6 ARG0: e2 ARG1: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x7 ] [ "_person_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_go_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x14 ] > HCONS: < h0 qeq h1 h5 qeq h6 h8 qeq h18 h10 qeq h12 h16 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +196@0@-1@-1@-1@-1@-1@-1@-1@-1@(482 comp-head 0.000000 0 5 (476 wh-ques 0.000000 0 2 (6 кто 0.000000 0 1 ("Кто")) (475 ex-subj 0.000000 1 2 (474 3sg-pres-suffix1 0.000000 1 2 (7 ид 0.000000 1 2 ("идет"))))) (481 subj-head 0.000000 2 5 (478 bare-np 0.000000 2 3 (477 nom1-lex 0.000000 2 3 (8 Иван 0.000000 2 3 ("Иван")))) (480 adj-head-scop 0.000000 3 5 (9 не 0.000000 3 4 ("не")) (479 3sg-pres-suffix1 0.000000 4 5 (10 спрашива 0.000000 4 5 ("спрашивает"))))))@@("S" ("S" ("NP" ("Кто")) ("S" ("VP" ("VP" ("идет"))))) ("V" ("NP" ("N" ("N" ("Иван")))) ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_go_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x12 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h17 ] [ "_ask_v_rel"<-1:-1> LBL: h18 ARG0: e2 ARG1: x12 ARG2: h19 ] > HCONS: < h0 qeq h1 h7 qeq h4 h13 qeq h15 h17 qeq h18 h19 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +197@0@-1@-1@-1@-1@-1@-1@-1@-1@(1499 subj-head 0.000000 0 7 (1486 bare-np 0.000000 0 1 (1485 nom1-lex 0.000000 0 1 (8 Иван 0.000000 0 1 ("Иван")))) (1498 head-comp 0.000000 1 7 (1488 adj-head-scop 0.000000 1 3 (9 не 0.000000 1 2 ("не")) (1487 3sg-pres-suffix1 0.000000 2 3 (10 спрашива 0.000000 2 3 ("спрашивает")))) (1497 wh-ques 0.000000 3 7 (1489 sg-acc-fem-suffix2 0.000000 3 4 (12 как_1 0.000000 3 4 ("какую"))) (1496 comp-head 0.000000 4 7 (1491 ex-det 0.000000 4 5 (1490 sg-acc2-suffix1 0.000000 4 5 (13 книг 0.000000 4 5 ("книгу")))) (1495 subj-head 0.000000 5 7 (1493 bare-np 0.000000 5 6 (1492 nom1-lex 0.000000 5 6 (14 студент 0.000000 5 6 ("студент")))) (1494 3sg-pres-suffix1 0.000000 6 7 (15 чита 0.000000 6 7 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("D" ("D" ("какую"))) ("S" ("NP" ("N" ("N" ("книгу")))) ("V" ("NP" ("N" ("N" ("студент")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "_which_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h15 BODY: h16 ] [ "_book_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h20 BODY: h21 ] [ "_student_n_rel"<-1:-1> LBL: h22 ARG0: x19 ] [ "_read_v_rel"<-1:-1> LBL: h23 ARG0: e24 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x19 ARG2: x14 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h23 h15 qeq h25 h20 qeq h22 > ICONS: < i26 info-str i27 > ]@((:ascore . 0.0) (:probability . 0.333333)) +197@1@-1@-1@-1@-1@-1@-1@-1@-1@(1524 in-situ-ques 0.000000 0 7 (1523 subj-head 0.000000 0 7 (1512 bare-np 0.000000 0 1 (1511 nom1-lex 0.000000 0 1 (8 Иван 0.000000 0 1 ("Иван")))) (1522 head-comp 0.000000 1 7 (1514 adj-head-scop 0.000000 1 3 (9 не 0.000000 1 2 ("не")) (1513 3sg-pres-suffix1 0.000000 2 3 (10 спрашива 0.000000 2 3 ("спрашивает")))) (1521 comp-head 0.000000 3 7 (1517 head-spec 0.000000 3 5 (1515 sg-acc-fem-suffix2 0.000000 3 4 (12 как_1 0.000000 3 4 ("какую"))) (1516 sg-acc2-suffix1 0.000000 4 5 (13 книг 0.000000 4 5 ("книгу")))) (1520 subj-head 0.000000 5 7 (1518 bare-np 0.000000 5 6 (1492 nom1-lex 0.000000 5 6 (14 студент 0.000000 5 6 ("студент")))) (1519 3sg-pres-suffix1 0.000000 6 7 (15 чита 0.000000 6 7 ("читает"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("V" ("NP" ("N" ("N" ("студент")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "_which_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h15 BODY: h16 ] [ "_book_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h20 BODY: h21 ] [ "_student_n_rel"<-1:-1> LBL: h22 ARG0: x19 ] [ "_read_v_rel"<-1:-1> LBL: h23 ARG0: e24 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x19 ARG2: x14 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h23 h15 qeq h17 h20 qeq h22 > ICONS: < i25 info-str i26 > ]@((:ascore . 0.0) (:probability . 0.333333)) +197@2@-1@-1@-1@-1@-1@-1@-1@-1@(1510 subj-head 0.000000 0 7 (1486 bare-np 0.000000 0 1 (1485 nom1-lex 0.000000 0 1 (8 Иван 0.000000 0 1 ("Иван")))) (1509 head-comp 0.000000 1 7 (1488 adj-head-scop 0.000000 1 3 (9 не 0.000000 1 2 ("не")) (1487 3sg-pres-suffix1 0.000000 2 3 (10 спрашива 0.000000 2 3 ("спрашивает")))) (1508 wh-ques 0.000000 3 7 (1502 head-spec 0.000000 3 5 (1500 sg-acc-fem-suffix2 0.000000 3 4 (12 как_1 0.000000 3 4 ("какую"))) (1501 sg-acc2-suffix1 0.000000 4 5 (13 книг 0.000000 4 5 ("книгу")))) (1507 subj-head 0.000000 5 7 (1504 bare-np 0.000000 5 6 (1503 nom1-lex 0.000000 5 6 (14 студент 0.000000 5 6 ("студент")))) (1506 ex-comp 0.000000 6 7 (1505 3sg-pres-suffix1 0.000000 6 7 (15 чита 0.000000 6 7 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("спрашивает")))) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_ask_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "_which_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h15 BODY: h16 ] [ "_book_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h18 ARG0: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h20 BODY: h21 ] [ "_student_n_rel"<-1:-1> LBL: h22 ARG0: x19 ] [ "_read_v_rel"<-1:-1> LBL: h23 ARG0: e24 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x19 ARG2: x14 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h23 h15 qeq h17 h20 qeq h22 > ICONS: < i25 info-str i26 > ]@((:ascore . 0.0) (:probability . 0.333333)) +198@0@-1@-1@-1@-1@-1@-1@-1@-1@(5714 in-situ-ques 0.000000 0 6 (5713 subj-head 0.000000 0 6 (5704 bare-np 0.000000 0 1 (5703 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (5712 head-comp 0.000000 1 6 (5707 head-adj 0.000000 1 4 (5706 adj-head-scop 0.000000 1 3 (8 не 0.000000 1 2 ("не")) (5705 3sg-pres-suffix1 0.000000 2 3 (9 зна_1 0.000000 2 3 ("знает")))) (11 куда 0.000000 3 4 ("куда"))) (5711 head-subj 0.000000 4 6 (5708 3sg-pres-suffix1 0.000000 4 5 (12 ид 0.000000 4 5 ("идет"))) (5710 bare-np 0.000000 5 6 (5709 nom1-lex 0.000000 5 6 (13 студент 0.000000 5 6 ("студент"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("ADV" ("не")) ("V" ("V" ("знает")))) ("ADV" ("куда"))) ("S" ("VP" ("VP" ("идет"))) ("NP" ("N" ("N" ("студент"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_know_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] [ "_go_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x21 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h19 h17 qeq h15 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +198@1@-1@-1@-1@-1@-1@-1@-1@-1@(5730 in-situ-ques 0.000000 0 6 (5729 subj-head 0.000000 0 6 (5704 bare-np 0.000000 0 1 (5703 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (5728 head-comp 0.000000 1 6 (5716 adj-head-scop 0.000000 1 3 (8 не 0.000000 1 2 ("не")) (5715 3sg-pres-suffix1 0.000000 2 3 (10 зна_2 0.000000 2 3 ("знает")))) (5727 adj-head 0.000000 3 6 (11 куда 0.000000 3 4 ("куда")) (5726 head-subj 0.000000 4 6 (5723 3sg-pres-suffix1 0.000000 4 5 (12 ид 0.000000 4 5 ("идет"))) (5725 bare-np 0.000000 5 6 (5724 nom1-lex 0.000000 5 6 (13 студент 0.000000 5 6 ("студент")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("знает")))) ("S" ("ADV" ("куда")) ("S" ("VP" ("VP" ("идет"))) ("NP" ("N" ("N" ("студент")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_know_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "_go_v_rel"<-1:-1> LBL: h13 ARG0: e15 ARG1: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x21 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h13 h19 qeq h17 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +198@2@-1@-1@-1@-1@-1@-1@-1@-1@(5722 in-situ-ques 0.000000 0 6 (5721 subj-head 0.000000 0 6 (5704 bare-np 0.000000 0 1 (5703 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (5720 head-comp 0.000000 1 6 (5716 adj-head-scop 0.000000 1 3 (8 не 0.000000 1 2 ("не")) (5715 3sg-pres-suffix1 0.000000 2 3 (10 зна_2 0.000000 2 3 ("знает")))) (5719 head-subj 0.000000 3 6 (5718 adj-head 0.000000 3 5 (11 куда 0.000000 3 4 ("куда")) (5717 3sg-pres-suffix1 0.000000 4 5 (12 ид 0.000000 4 5 ("идет")))) (5710 bare-np 0.000000 5 6 (5709 nom1-lex 0.000000 5 6 (13 студент 0.000000 5 6 ("студент"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("знает")))) ("S" ("VP" ("ADV" ("куда")) ("VP" ("VP" ("идет")))) ("NP" ("N" ("N" ("студент"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_know_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "_go_v_rel"<-1:-1> LBL: h13 ARG0: e15 ARG1: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x21 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h13 h19 qeq h17 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +198@3@-1@-1@-1@-1@-1@-1@-1@-1@(5742 subj-head 0.000000 0 6 (5732 bare-np 0.000000 0 1 (5731 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (5741 head-comp 0.000000 1 6 (5734 adj-head-scop 0.000000 1 3 (8 не 0.000000 1 2 ("не")) (5733 3sg-pres-suffix1 0.000000 2 3 (10 зна_2 0.000000 2 3 ("знает")))) (5740 wh-ques 0.000000 3 6 (11 куда 0.000000 3 4 ("куда")) (5739 head-subj 0.000000 4 6 (5736 ex-adj-first 0.000000 4 5 (5735 3sg-pres-suffix1 0.000000 4 5 (12 ид 0.000000 4 5 ("идет")))) (5738 bare-np 0.000000 5 6 (5737 nom1-lex 0.000000 5 6 (13 студент 0.000000 5 6 ("студент"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("не")) ("V" ("V" ("знает")))) ("S" ("ADV" ("куда")) ("S" ("VP" ("VP" ("VP" ("идет")))) ("NP" ("N" ("N" ("студент"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h6 BODY: h7 ] [ "_Ivan_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "neg_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: h10 ] [ "_know_v_rel"<-1:-1> LBL: h11 ARG0: e2 ARG1: x5 ARG2: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "_go_v_rel"<-1:-1> LBL: h13 ARG0: e15 ARG1: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x21 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h11 h12 qeq h13 h19 qeq h17 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +205@0@-1@-1@-1@-1@-1@-1@-1@-1@(10361 wh-ques 0.000000 0 8 (9 где 0.000000 0 1 ("Где")) (10360 subj-head 0.000000 1 8 (10347 bare-np 0.000000 1 2 (10346 nom1-lex 0.000000 1 2 (10 Иван 0.000000 1 2 ("Иван")))) (10359 head-comp 0.000000 2 8 (10348 3sg-pres-suffix1 0.000000 2 3 (11 дума 0.000000 2 3 ("думает"))) (10358 head-comp 0.000000 3 8 (13 что_2 0.000000 3 4 ("что")) (10357 subj-head 0.000000 4 8 (10350 bare-np 0.000000 4 5 (10349 nom1-lex 0.000000 4 5 (14 студент 0.000000 4 5 ("студент")))) (10356 ex-adj-first 0.000000 5 8 (10355 head-comp 0.000000 5 8 (10351 sg-past-masc-suffix3 0.000000 5 6 (15 купи 0.000000 5 6 ("купил"))) (10354 head-spec 0.000000 6 8 (10352 sg-acc-fem-suffix1 0.000000 6 7 (16 эт 0.000000 6 7 ("эту"))) (10353 sg-acc2-suffix1 0.000000 7 8 (17 книг 0.000000 7 8 ("книгу")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +205@1@-1@-1@-1@-1@-1@-1@-1@-1@(10381 wh-ques 0.000000 0 8 (9 где 0.000000 0 1 ("Где")) (10380 subj-head 0.000000 1 8 (10347 bare-np 0.000000 1 2 (10346 nom1-lex 0.000000 1 2 (10 Иван 0.000000 1 2 ("Иван")))) (10379 head-comp 0.000000 2 8 (10374 ex-adj-first 0.000000 2 3 (10373 3sg-pres-suffix1 0.000000 2 3 (11 дума 0.000000 2 3 ("думает")))) (10378 head-comp 0.000000 3 8 (13 что_2 0.000000 3 4 ("что")) (10377 subj-head 0.000000 4 8 (10350 bare-np 0.000000 4 5 (10349 nom1-lex 0.000000 4 5 (14 студент 0.000000 4 5 ("студент")))) (10376 head-comp 0.000000 5 8 (10375 sg-past-masc-suffix3 0.000000 5 6 (15 купи 0.000000 5 6 ("купил"))) (10366 head-spec 0.000000 6 8 (10364 sg-acc-fem-suffix1 0.000000 6 7 (16 эт 0.000000 6 7 ("эту"))) (10365 sg-acc2-suffix1 0.000000 7 8 (17 книг 0.000000 7 8 ("книгу"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("думает")))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_buy_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +205@2@-1@-1@-1@-1@-1@-1@-1@-1@(10388 wh-ques 0.000000 0 8 (9 где 0.000000 0 1 ("Где")) (10387 subj-head 0.000000 1 8 (10347 bare-np 0.000000 1 2 (10346 nom1-lex 0.000000 1 2 (10 Иван 0.000000 1 2 ("Иван")))) (10386 ex-adj-first 0.000000 2 8 (10385 head-comp 0.000000 2 8 (10382 3sg-pres-suffix1 0.000000 2 3 (11 дума 0.000000 2 3 ("думает"))) (10384 head-comp 0.000000 3 8 (13 что_2 0.000000 3 4 ("что")) (10383 subj-head 0.000000 4 8 (10350 bare-np 0.000000 4 5 (10349 nom1-lex 0.000000 4 5 (14 студент 0.000000 4 5 ("студент")))) (10376 head-comp 0.000000 5 8 (10375 sg-past-masc-suffix3 0.000000 5 6 (15 купи 0.000000 5 6 ("купил"))) (10366 head-spec 0.000000 6 8 (10364 sg-acc-fem-suffix1 0.000000 6 7 (16 эт 0.000000 6 7 ("эту"))) (10365 sg-acc2-suffix1 0.000000 7 8 (17 книг 0.000000 7 8 ("книгу")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_buy_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +205@3@-1@-1@-1@-1@-1@-1@-1@-1@(10372 wh-ques 0.000000 0 8 (9 где 0.000000 0 1 ("Где")) (10371 subj-head 0.000000 1 8 (10347 bare-np 0.000000 1 2 (10346 nom1-lex 0.000000 1 2 (10 Иван 0.000000 1 2 ("Иван")))) (10370 head-comp 0.000000 2 8 (10348 3sg-pres-suffix1 0.000000 2 3 (11 дума 0.000000 2 3 ("думает"))) (10369 head-comp 0.000000 3 8 (13 что_2 0.000000 3 4 ("что")) (10368 subj-head 0.000000 4 8 (10350 bare-np 0.000000 4 5 (10349 nom1-lex 0.000000 4 5 (14 студент 0.000000 4 5 ("студент")))) (10367 head-comp 0.000000 5 8 (10363 ex-adj-first 0.000000 5 6 (10362 sg-past-masc-suffix3 0.000000 5 6 (15 купи 0.000000 5 6 ("купил")))) (10366 head-spec 0.000000 6 8 (10364 sg-acc-fem-suffix1 0.000000 6 7 (16 эт 0.000000 6 7 ("эту"))) (10365 sg-acc2-suffix1 0.000000 7 8 (17 книг 0.000000 7 8 ("книгу"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("V" ("купил")))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +206@0@-1@-1@-1@-1@-1@-1@-1@-1@(10930 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (10929 subj-head 0.000000 1 7 (10917 bare-np 0.000000 1 2 (10916 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (10928 head-comp 0.000000 2 7 (10919 ex-adj-first 0.000000 2 3 (10918 3sg-pres-suffix1 0.000000 2 3 (10 дума 0.000000 2 3 ("думает")))) (10927 subj-head 0.000000 3 7 (10921 bare-np 0.000000 3 4 (10920 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (10926 head-comp 0.000000 4 7 (10922 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил"))) (10925 head-spec 0.000000 5 7 (10923 sg-acc-fem-suffix1 0.000000 5 6 (13 эт 0.000000 5 6 ("эту"))) (10924 sg-acc2-suffix1 0.000000 6 7 (14 книг 0.000000 6 7 ("книгу")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("думает")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_buy_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +206@1@-1@-1@-1@-1@-1@-1@-1@-1@(10946 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (10945 subj-head 0.000000 1 7 (10917 bare-np 0.000000 1 2 (10916 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (10944 ex-adj-first 0.000000 2 7 (10943 head-comp 0.000000 2 7 (10939 3sg-pres-suffix1 0.000000 2 3 (10 дума 0.000000 2 3 ("думает"))) (10942 subj-head 0.000000 3 7 (10940 bare-np 0.000000 3 4 (10920 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (10941 head-comp 0.000000 4 7 (10922 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил"))) (10925 head-spec 0.000000 5 7 (10923 sg-acc-fem-suffix1 0.000000 5 6 (13 эт 0.000000 5 6 ("эту"))) (10924 sg-acc2-suffix1 0.000000 6 7 (14 книг 0.000000 6 7 ("книгу"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("думает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_buy_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +206@2@-1@-1@-1@-1@-1@-1@-1@-1@(10956 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (10955 subj-head 0.000000 1 7 (10917 bare-np 0.000000 1 2 (10916 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (10954 head-comp 0.000000 2 7 (10931 3sg-pres-suffix1 0.000000 2 3 (10 дума 0.000000 2 3 ("думает"))) (10953 subj-head 0.000000 3 7 (10921 bare-np 0.000000 3 4 (10920 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (10952 ex-adj-first 0.000000 4 7 (10951 head-comp 0.000000 4 7 (10947 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил"))) (10950 head-spec 0.000000 5 7 (10948 sg-acc-fem-suffix1 0.000000 5 6 (13 эт 0.000000 5 6 ("эту"))) (10949 sg-acc2-suffix1 0.000000 6 7 (14 книг 0.000000 6 7 ("книгу"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +206@3@-1@-1@-1@-1@-1@-1@-1@-1@(10938 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (10937 subj-head 0.000000 1 7 (10917 bare-np 0.000000 1 2 (10916 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (10936 head-comp 0.000000 2 7 (10931 3sg-pres-suffix1 0.000000 2 3 (10 дума 0.000000 2 3 ("думает"))) (10935 subj-head 0.000000 3 7 (10921 bare-np 0.000000 3 4 (10920 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (10934 head-comp 0.000000 4 7 (10933 ex-adj-first 0.000000 4 5 (10932 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил")))) (10925 head-spec 0.000000 5 7 (10923 sg-acc-fem-suffix1 0.000000 5 6 (13 эт 0.000000 5 6 ("эту"))) (10924 sg-acc2-suffix1 0.000000 6 7 (14 книг 0.000000 6 7 ("книгу")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("V" ("купил")))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +209@0@-1@-1@-1@-1@-1@-1@-1@-1@(1437 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (1436 subj-head 0.000000 1 5 (1428 bare-np 0.000000 1 2 (1427 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (1435 head-comp 0.000000 2 5 (1429 3sg-pres-suffix1 0.000000 2 3 (8 дума 0.000000 2 3 ("думает"))) (1434 subj-head 0.000000 3 5 (1431 bare-np 0.000000 3 4 (1430 nom1-lex 0.000000 3 4 (9 студент 0.000000 3 4 ("студент")))) (1433 ex-adj-first 0.000000 4 5 (1432 3sg-pres-suffix2 0.000000 4 5 (10 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_lie_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +209@1@-1@-1@-1@-1@-1@-1@-1@-1@(1452 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (1451 subj-head 0.000000 1 5 (1428 bare-np 0.000000 1 2 (1427 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (1450 ex-adj-first 0.000000 2 5 (1449 head-comp 0.000000 2 5 (1445 3sg-pres-suffix1 0.000000 2 3 (8 дума 0.000000 2 3 ("думает"))) (1448 subj-head 0.000000 3 5 (1446 bare-np 0.000000 3 4 (1430 nom1-lex 0.000000 3 4 (9 студент 0.000000 3 4 ("студент")))) (1447 3sg-pres-suffix2 0.000000 4 5 (10 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("думает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_lie_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +209@2@-1@-1@-1@-1@-1@-1@-1@-1@(1444 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (1443 subj-head 0.000000 1 5 (1428 bare-np 0.000000 1 2 (1427 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (1442 head-comp 0.000000 2 5 (1439 ex-adj-first 0.000000 2 3 (1438 3sg-pres-suffix1 0.000000 2 3 (8 дума 0.000000 2 3 ("думает")))) (1441 subj-head 0.000000 3 5 (1431 bare-np 0.000000 3 4 (1430 nom1-lex 0.000000 3 4 (9 студент 0.000000 3 4 ("студент")))) (1440 3sg-pres-suffix2 0.000000 4 5 (10 леж 0.000000 4 5 ("лежит")))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("думает")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_lie_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +210@0@-1@-1@-1@-1@-1@-1@-1@-1@(850 wh-ques 0.000000 0 4 (5 кто 0.000000 0 1 ("Кто")) (849 subj-head 0.000000 1 4 (844 bare-np 0.000000 1 2 (843 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван")))) (848 head-comp 0.000000 2 4 (845 3sg-pres-suffix1 0.000000 2 3 (7 дума 0.000000 2 3 ("думает"))) (847 ex-subj 0.000000 3 4 (846 3sg-pres-suffix1 0.000000 3 4 (8 ид 0.000000 3 4 ("идет")))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("S" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +211@0@-1@-1@-1@-1@-1@-1@-1@-1@(1989 wh-ques 0.000000 0 5 (6 что_1 0.000000 0 1 ("Что")) (1988 subj-head 0.000000 1 5 (1980 bare-np 0.000000 1 2 (1979 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1987 head-comp 0.000000 2 5 (1981 3sg-pres-suffix1 0.000000 2 3 (9 дума 0.000000 2 3 ("думает"))) (1986 subj-head 0.000000 3 5 (1983 bare-np 0.000000 3 4 (1982 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (1985 ex-comp 0.000000 4 5 (1984 3sg-pres-suffix1 0.000000 4 5 (11 чита 0.000000 4 5 ("читает"))))))))@@("S" ("NP" ("Что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +214@0@-1@-1@-1@-1@-1@-1@-1@-1@(2152 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (2151 subj-head 0.000000 1 5 (2143 bare-np 0.000000 1 2 (2142 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (2150 head-comp 0.000000 2 5 (2144 3sg-pres-suffix1 0.000000 2 3 (8 зна_1 0.000000 2 3 ("знает"))) (2149 subj-head 0.000000 3 5 (2146 bare-np 0.000000 3 4 (2145 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2148 ex-adj-first 0.000000 4 5 (2147 3sg-pres-suffix2 0.000000 4 5 (11 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_lie_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +214@1@-1@-1@-1@-1@-1@-1@-1@-1@(2167 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (2166 subj-head 0.000000 1 5 (2143 bare-np 0.000000 1 2 (2142 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (2165 ex-adj-first 0.000000 2 5 (2164 head-comp 0.000000 2 5 (2160 3sg-pres-suffix1 0.000000 2 3 (8 зна_1 0.000000 2 3 ("знает"))) (2163 subj-head 0.000000 3 5 (2161 bare-np 0.000000 3 4 (2145 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2162 3sg-pres-suffix2 0.000000 4 5 (11 леж 0.000000 4 5 ("лежит"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_lie_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +214@2@-1@-1@-1@-1@-1@-1@-1@-1@(2159 wh-ques 0.000000 0 5 (6 где 0.000000 0 1 ("Где")) (2158 subj-head 0.000000 1 5 (2143 bare-np 0.000000 1 2 (2142 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (2157 head-comp 0.000000 2 5 (2154 ex-adj-first 0.000000 2 3 (2153 3sg-pres-suffix1 0.000000 2 3 (8 зна_1 0.000000 2 3 ("знает")))) (2156 subj-head 0.000000 3 5 (2146 bare-np 0.000000 3 4 (2145 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2155 3sg-pres-suffix2 0.000000 4 5 (11 леж 0.000000 4 5 ("лежит")))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("знает")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_lie_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +215@0@-1@-1@-1@-1@-1@-1@-1@-1@(1302 wh-ques 0.000000 0 4 (5 кто 0.000000 0 1 ("Кто")) (1301 subj-head 0.000000 1 4 (1296 bare-np 0.000000 1 2 (1295 nom1-lex 0.000000 1 2 (6 Иван 0.000000 1 2 ("Иван")))) (1300 head-comp 0.000000 2 4 (1297 3sg-pres-suffix1 0.000000 2 3 (7 зна_1 0.000000 2 3 ("знает"))) (1299 ex-subj 0.000000 3 4 (1298 3sg-pres-suffix1 0.000000 3 4 (9 ид 0.000000 3 4 ("идет")))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("VP" ("VP" ("идет")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_go_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +216@0@-1@-1@-1@-1@-1@-1@-1@-1@(2637 wh-ques 0.000000 0 5 (6 что_1 0.000000 0 1 ("Что")) (2636 subj-head 0.000000 1 5 (2628 bare-np 0.000000 1 2 (2627 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (2635 head-comp 0.000000 2 5 (2629 3sg-pres-suffix1 0.000000 2 3 (9 зна_1 0.000000 2 3 ("знает"))) (2634 subj-head 0.000000 3 5 (2631 bare-np 0.000000 3 4 (2630 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (2633 ex-comp 0.000000 4 5 (2632 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))))))))@@("S" ("NP" ("Что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +223@0@-1@-1@-1@-1@-1@-1@-1@-1@(3851 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3850 subj-head 0.000000 1 7 (3840 bare-np 0.000000 1 2 (3839 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3849 adj-head 0.000000 2 7 (10 точно 0.000000 2 3 ("точно")) (3848 ex-adj-first 0.000000 3 7 (3847 head-comp 0.000000 3 7 (3841 3sg-pres-suffix1 0.000000 3 4 (11 зна_1 0.000000 3 4 ("знает"))) (3846 head-comp 0.000000 4 7 (14 что_2 0.000000 4 5 ("что")) (3845 subj-head 0.000000 5 7 (3843 bare-np 0.000000 5 6 (3842 nom1-lex 0.000000 5 6 (15 студент 0.000000 5 6 ("студент")))) (3844 3sg-pres-suffix2 0.000000 6 7 (16 леж 0.000000 6 7 ("лежит"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("точно")) ("VP" ("VP" ("V" ("V" ("знает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x22 ] [ "_lie_v_rel"<-1:-1> LBL: h26 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h18 qeq h16 h20 qeq h26 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +223@1@-1@-1@-1@-1@-1@-1@-1@-1@(3868 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3867 subj-head 0.000000 1 7 (3840 bare-np 0.000000 1 2 (3839 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3866 adj-head 0.000000 2 7 (10 точно 0.000000 2 3 ("точно")) (3865 head-comp 0.000000 3 7 (3862 ex-adj-first 0.000000 3 4 (3861 3sg-pres-suffix1 0.000000 3 4 (11 зна_1 0.000000 3 4 ("знает")))) (3864 head-comp 0.000000 4 7 (14 что_2 0.000000 4 5 ("что")) (3863 subj-head 0.000000 5 7 (3843 bare-np 0.000000 5 6 (3842 nom1-lex 0.000000 5 6 (15 студент 0.000000 5 6 ("студент")))) (3844 3sg-pres-suffix2 0.000000 6 7 (16 леж 0.000000 6 7 ("лежит")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("точно")) ("VP" ("V" ("V" ("V" ("знает")))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x22 ] [ "_lie_v_rel"<-1:-1> LBL: h26 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h18 qeq h16 h20 qeq h26 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +223@2@-1@-1@-1@-1@-1@-1@-1@-1@(3860 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3859 subj-head 0.000000 1 7 (3840 bare-np 0.000000 1 2 (3839 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3858 adj-head 0.000000 2 7 (10 точно 0.000000 2 3 ("точно")) (3857 head-comp 0.000000 3 7 (3852 3sg-pres-suffix1 0.000000 3 4 (11 зна_1 0.000000 3 4 ("знает"))) (3856 head-comp 0.000000 4 7 (14 что_2 0.000000 4 5 ("что")) (3855 subj-head 0.000000 5 7 (3843 bare-np 0.000000 5 6 (3842 nom1-lex 0.000000 5 6 (15 студент 0.000000 5 6 ("студент")))) (3854 ex-adj-first 0.000000 6 7 (3853 3sg-pres-suffix2 0.000000 6 7 (16 леж 0.000000 6 7 ("лежит"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("точно")) ("VP" ("V" ("V" ("знает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("VP" ("лежит"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x17 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h18 ARG0: x17 ] [ "exist_q_rel"<-1:-1> LBL: h19 ARG0: x17 RSTR: h20 BODY: h21 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h22 ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x24 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h25 BODY: h26 ] [ "_student_n_rel"<-1:-1> LBL: h27 ARG0: x24 ] [ "_lie_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x24 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h20 qeq h18 h22 qeq h4 h25 qeq h27 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +223@3@-1@-1@-1@-1@-1@-1@-1@-1@(3883 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3882 subj-head 0.000000 1 7 (3840 bare-np 0.000000 1 2 (3839 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3881 head-comp 0.000000 2 7 (3878 adj-head 0.000000 2 4 (10 точно 0.000000 2 3 ("точно")) (3877 3sg-pres-suffix1 0.000000 3 4 (11 зна_1 0.000000 3 4 ("знает")))) (3880 head-comp 0.000000 4 7 (14 что_2 0.000000 4 5 ("что")) (3879 subj-head 0.000000 5 7 (3843 bare-np 0.000000 5 6 (3842 nom1-lex 0.000000 5 6 (15 студент 0.000000 5 6 ("студент")))) (3854 ex-adj-first 0.000000 6 7 (3853 3sg-pres-suffix2 0.000000 6 7 (16 леж 0.000000 6 7 ("лежит")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("точно")) ("V" ("V" ("знает")))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("VP" ("лежит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e16 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x17 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h18 ARG0: x17 ] [ "exist_q_rel"<-1:-1> LBL: h19 ARG0: x17 RSTR: h20 BODY: h21 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h22 ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x24 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h25 BODY: h26 ] [ "_student_n_rel"<-1:-1> LBL: h27 ARG0: x24 ] [ "_lie_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x24 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h20 qeq h18 h22 qeq h4 h25 qeq h27 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +223@4@-1@-1@-1@-1@-1@-1@-1@-1@(3876 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3875 subj-head 0.000000 1 7 (3840 bare-np 0.000000 1 2 (3839 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3874 head-comp 0.000000 2 7 (3871 adj-head 0.000000 2 4 (10 точно 0.000000 2 3 ("точно")) (3870 ex-adj-first 0.000000 3 4 (3869 3sg-pres-suffix1 0.000000 3 4 (11 зна_1 0.000000 3 4 ("знает"))))) (3873 head-comp 0.000000 4 7 (14 что_2 0.000000 4 5 ("что")) (3872 subj-head 0.000000 5 7 (3843 bare-np 0.000000 5 6 (3842 nom1-lex 0.000000 5 6 (15 студент 0.000000 5 6 ("студент")))) (3844 3sg-pres-suffix2 0.000000 6 7 (16 леж 0.000000 6 7 ("лежит"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("точно")) ("V" ("V" ("V" ("знает"))))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x22 ] [ "_lie_v_rel"<-1:-1> LBL: h26 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h18 qeq h16 h20 qeq h26 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +223@5@-1@-1@-1@-1@-1@-1@-1@-1@(3890 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3889 subj-head 0.000000 1 7 (3840 bare-np 0.000000 1 2 (3839 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3888 ex-adj-first 0.000000 2 7 (3887 head-comp 0.000000 2 7 (3885 adj-head 0.000000 2 4 (10 точно 0.000000 2 3 ("точно")) (3884 3sg-pres-suffix1 0.000000 3 4 (11 зна_1 0.000000 3 4 ("знает")))) (3886 head-comp 0.000000 4 7 (14 что_2 0.000000 4 5 ("что")) (3845 subj-head 0.000000 5 7 (3843 bare-np 0.000000 5 6 (3842 nom1-lex 0.000000 5 6 (15 студент 0.000000 5 6 ("студент")))) (3844 3sg-pres-suffix2 0.000000 6 7 (16 леж 0.000000 6 7 ("лежит")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("ADV" ("точно")) ("V" ("V" ("знает")))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_student_n_rel"<-1:-1> LBL: h25 ARG0: x22 ] [ "_lie_v_rel"<-1:-1> LBL: h26 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h18 qeq h16 h20 qeq h26 h23 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.166667)) +224@0@-1@-1@-1@-1@-1@-1@-1@-1@(1338 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1337 subj-head 0.000000 1 6 (1328 bare-np 0.000000 1 2 (1327 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1336 head-comp 0.000000 2 6 (1330 ex-adj-first 0.000000 2 3 (1329 3sg-pres-suffix1 0.000000 2 3 (9 дума 0.000000 2 3 ("думает")))) (1335 head-comp 0.000000 3 6 (11 что_2 0.000000 3 4 ("что")) (1334 subj-head 0.000000 4 6 (1332 bare-np 0.000000 4 5 (1331 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1333 3sg-pres-suffix2 0.000000 5 6 (13 леж 0.000000 5 6 ("лежит"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("думает")))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_lie_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +224@1@-1@-1@-1@-1@-1@-1@-1@-1@(1353 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1352 subj-head 0.000000 1 6 (1328 bare-np 0.000000 1 2 (1327 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1351 ex-adj-first 0.000000 2 6 (1350 head-comp 0.000000 2 6 (1347 3sg-pres-suffix1 0.000000 2 3 (9 дума 0.000000 2 3 ("думает"))) (1349 head-comp 0.000000 3 6 (11 что_2 0.000000 3 4 ("что")) (1348 subj-head 0.000000 4 6 (1332 bare-np 0.000000 4 5 (1331 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1333 3sg-pres-suffix2 0.000000 5 6 (13 леж 0.000000 5 6 ("лежит")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("лежит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_lie_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +224@2@-1@-1@-1@-1@-1@-1@-1@-1@(1346 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1345 subj-head 0.000000 1 6 (1328 bare-np 0.000000 1 2 (1327 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1344 head-comp 0.000000 2 6 (1339 3sg-pres-suffix1 0.000000 2 3 (9 дума 0.000000 2 3 ("думает"))) (1343 head-comp 0.000000 3 6 (11 что_2 0.000000 3 4 ("что")) (1342 subj-head 0.000000 4 6 (1332 bare-np 0.000000 4 5 (1331 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1341 ex-adj-first 0.000000 5 6 (1340 3sg-pres-suffix2 0.000000 5 6 (13 леж 0.000000 5 6 ("лежит")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("VP" ("лежит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_lie_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +229@0@-1@-1@-1@-1@-1@-1@-1@-1@(19944 wh-ques 0.000000 0 5 (6 кто 0.000000 0 1 ("Кто")) (19943 subj-head 0.000000 1 5 (19937 bare-np 0.000000 1 2 (19936 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (19942 head-comp 0.000000 2 5 (19938 3sg-pres-suffix1 0.000000 2 3 (8 спрашива 0.000000 2 3 ("спрашивает"))) (19941 ex-subj 0.000000 3 5 (19940 head-comp 0.000000 3 5 (19939 3sg-pres-suffix2 0.000000 3 4 (11 вид_1 0.000000 3 4 ("видит"))) (12 что_1 0.000000 4 5 ("что")))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("VP" ("V" ("V" ("видит"))) ("NP" ("что")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_see_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h14 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +230@0@-1@-1@-1@-1@-1@-1@-1@-1@(2438 wh-ques 0.000000 0 5 (6 кто 0.000000 0 1 ("Кто")) (2437 subj-head 0.000000 1 5 (2430 bare-np 0.000000 1 2 (2429 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (2436 head-comp 0.000000 2 5 (2431 3sg-pres-suffix1 0.000000 2 3 (8 спрашива 0.000000 2 3 ("спрашивает"))) (2435 wh-ques 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (2434 ex-subj 0.000000 4 5 (2433 ex-comp 0.000000 4 5 (2432 3sg-pres-suffix2 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видит")))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видит")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_thing_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +234@0@-1@-1@-1@-1@-1@-1@-1@-1@(3000 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (2999 subj-head 0.000000 1 7 (2987 bare-np 0.000000 1 2 (2986 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (2998 head-comp 0.000000 2 7 (2989 ex-adj-first 0.000000 2 3 (2988 3sg-pres-suffix1 0.000000 2 3 (10 спрашива 0.000000 2 3 ("спрашивает")))) (2997 subj-head 0.000000 3 7 (2991 bare-np 0.000000 3 4 (2990 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (2996 head-comp 0.000000 4 7 (2992 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил"))) (2995 head-spec 0.000000 5 7 (2993 sg-acc-fem-suffix2 0.000000 5 6 (14 как_1 0.000000 5 6 ("какую"))) (2994 sg-acc2-suffix1 0.000000 6 7 (15 книг 0.000000 6 7 ("книгу")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_buy_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +234@1@-1@-1@-1@-1@-1@-1@-1@-1@(3016 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3015 subj-head 0.000000 1 7 (2987 bare-np 0.000000 1 2 (2986 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3014 ex-adj-first 0.000000 2 7 (3013 head-comp 0.000000 2 7 (3009 3sg-pres-suffix1 0.000000 2 3 (10 спрашива 0.000000 2 3 ("спрашивает"))) (3012 subj-head 0.000000 3 7 (3010 bare-np 0.000000 3 4 (2990 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (3011 head-comp 0.000000 4 7 (2992 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил"))) (2995 head-spec 0.000000 5 7 (2993 sg-acc-fem-suffix2 0.000000 5 6 (14 как_1 0.000000 5 6 ("какую"))) (2994 sg-acc2-suffix1 0.000000 6 7 (15 книг 0.000000 6 7 ("книгу"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_buy_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +234@2@-1@-1@-1@-1@-1@-1@-1@-1@(3026 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3025 subj-head 0.000000 1 7 (2987 bare-np 0.000000 1 2 (2986 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3024 head-comp 0.000000 2 7 (3001 3sg-pres-suffix1 0.000000 2 3 (10 спрашива 0.000000 2 3 ("спрашивает"))) (3023 subj-head 0.000000 3 7 (2991 bare-np 0.000000 3 4 (2990 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (3022 ex-adj-first 0.000000 4 7 (3021 head-comp 0.000000 4 7 (3017 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил"))) (3020 head-spec 0.000000 5 7 (3018 sg-acc-fem-suffix2 0.000000 5 6 (14 как_1 0.000000 5 6 ("какую"))) (3019 sg-acc2-suffix1 0.000000 6 7 (15 книг 0.000000 6 7 ("книгу"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("V" ("V" ("купил"))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +234@3@-1@-1@-1@-1@-1@-1@-1@-1@(3008 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3007 subj-head 0.000000 1 7 (2987 bare-np 0.000000 1 2 (2986 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (3006 head-comp 0.000000 2 7 (3001 3sg-pres-suffix1 0.000000 2 3 (10 спрашива 0.000000 2 3 ("спрашивает"))) (3005 subj-head 0.000000 3 7 (2991 bare-np 0.000000 3 4 (2990 nom1-lex 0.000000 3 4 (11 студент 0.000000 3 4 ("студент")))) (3004 head-comp 0.000000 4 7 (3003 ex-adj-first 0.000000 4 5 (3002 sg-past-masc-suffix3 0.000000 4 5 (12 купи 0.000000 4 5 ("купил")))) (2995 head-spec 0.000000 5 7 (2993 sg-acc-fem-suffix2 0.000000 5 6 (14 как_1 0.000000 5 6 ("какую"))) (2994 sg-acc2-suffix1 0.000000 6 7 (15 книг 0.000000 6 7 ("книгу")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("V" ("купил")))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +235@0@-1@-1@-1@-1@-1@-1@-1@-1@(2365 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2364 subj-head 0.000000 1 6 (2355 bare-np 0.000000 1 2 (2354 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (2363 head-comp 0.000000 2 6 (2357 ex-adj-first 0.000000 2 3 (2356 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает")))) (2362 subj-head 0.000000 3 6 (2359 bare-np 0.000000 3 4 (2358 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2361 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2360 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("NP" ("что")) ("V" ("V" ("купил"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h25 h17 qeq h19 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +235@1@-1@-1@-1@-1@-1@-1@-1@-1@(2381 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2380 subj-head 0.000000 1 6 (2355 bare-np 0.000000 1 2 (2354 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (2379 ex-adj-first 0.000000 2 6 (2378 head-comp 0.000000 2 6 (2374 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (2377 subj-head 0.000000 3 6 (2375 bare-np 0.000000 3 4 (2358 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2376 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2360 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("NP" ("что")) ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h17 BODY: h18 ] [ "_student_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h25 h17 qeq h19 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +235@2@-1@-1@-1@-1@-1@-1@-1@-1@(2373 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2372 subj-head 0.000000 1 6 (2355 bare-np 0.000000 1 2 (2354 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (2371 head-comp 0.000000 2 6 (2366 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (2370 subj-head 0.000000 3 6 (2359 bare-np 0.000000 3 4 (2358 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2369 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2368 ex-adj-first 0.000000 5 6 (2367 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("NP" ("что")) ("V" ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +235@3@-1@-1@-1@-1@-1@-1@-1@-1@(2388 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2387 subj-head 0.000000 1 6 (2355 bare-np 0.000000 1 2 (2354 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (2386 head-comp 0.000000 2 6 (2366 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (2385 subj-head 0.000000 3 6 (2359 bare-np 0.000000 3 4 (2358 nom1-lex 0.000000 3 4 (10 студент 0.000000 3 4 ("студент")))) (2384 ex-adj-first 0.000000 4 6 (2383 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2382 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h19 BODY: h20 ] [ "_student_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +237@0@-1@-1@-1@-1@-1@-1@-1@-1@(1749 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1748 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (1747 subj-head 0.000000 2 6 (1739 bare-np 0.000000 2 3 (1738 nom1-lex 0.000000 2 3 (9 Иван 0.000000 2 3 ("Иван")))) (1746 head-comp 0.000000 3 6 (1741 ex-adj-last 0.000000 3 4 (1740 3sg-pres-suffix1 0.000000 3 4 (10 спрашива 0.000000 3 4 ("спрашивает")))) (1745 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1744 ex-subj 0.000000 5 6 (1743 ex-comp 0.000000 5 6 (1742 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает")))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("купил"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_Ivan_n_rel"<-1:-1> LBL: h18 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h13 qeq h10 h16 qeq h18 h19 qeq h25 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +237@1@-1@-1@-1@-1@-1@-1@-1@-1@(1775 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1774 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (1773 subj-head 0.000000 2 6 (1739 bare-np 0.000000 2 3 (1738 nom1-lex 0.000000 2 3 (9 Иван 0.000000 2 3 ("Иван")))) (1772 ex-adj-last 0.000000 3 6 (1771 head-comp 0.000000 3 6 (1768 3sg-pres-suffix1 0.000000 3 4 (10 спрашива 0.000000 3 4 ("спрашивает"))) (1770 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1769 ex-subj 0.000000 5 6 (1743 ex-comp 0.000000 5 6 (1742 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("купил")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_Ivan_n_rel"<-1:-1> LBL: h18 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h13 qeq h10 h16 qeq h18 h19 qeq h25 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +237@2@-1@-1@-1@-1@-1@-1@-1@-1@(1767 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1765 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (1763 subj-head 0.000000 2 6 (1739 bare-np 0.000000 2 3 (1738 nom1-lex 0.000000 2 3 (9 Иван 0.000000 2 3 ("Иван")))) (1761 head-comp 0.000000 3 6 (1750 3sg-pres-suffix1 0.000000 3 4 (10 спрашива 0.000000 3 4 ("спрашивает"))) (1755 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1754 ex-subj 0.000000 5 6 (1753 ex-comp 0.000000 5 6 (1752 ex-adj-last 0.000000 5 6 (1751 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("V" ("купил")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_person_n_rel"<-1:-1> LBL: h12 ARG0: x13 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x13 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h18 BODY: h19 ] [ "_Ivan_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h21 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x13 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h15 qeq h12 h18 qeq h20 h21 qeq h4 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +237@3@-1@-1@-1@-1@-1@-1@-1@-1@(1776 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1766 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (1764 subj-head 0.000000 2 6 (1739 bare-np 0.000000 2 3 (1738 nom1-lex 0.000000 2 3 (9 Иван 0.000000 2 3 ("Иван")))) (1762 head-comp 0.000000 3 6 (1750 3sg-pres-suffix1 0.000000 3 4 (10 спрашива 0.000000 3 4 ("спрашивает"))) (1760 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1759 ex-subj 0.000000 5 6 (1758 ex-adj-last 0.000000 5 6 (1757 ex-comp 0.000000 5 6 (1756 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("VP" ("VP" ("V" ("V" ("купил")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_person_n_rel"<-1:-1> LBL: h12 ARG0: x13 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x13 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h18 BODY: h19 ] [ "_Ivan_n_rel"<-1:-1> LBL: h20 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h21 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x13 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h15 qeq h12 h18 qeq h20 h21 qeq h4 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +238@0@-1@-1@-1@-1@-1@-1@-1@-1@(1749 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1748 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1747 head-comp 0.000000 2 6 (1743 ex-adj-first 0.000000 2 3 (1742 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает")))) (1746 subj-head 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1745 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1744 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил"))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает")))) ("S" ("NP" ("кто")) ("VP" ("NP" ("что")) ("V" ("V" ("купил"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "_person_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h25 h18 qeq h15 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +238@1@-1@-1@-1@-1@-1@-1@-1@-1@(1765 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1764 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1763 head-comp 0.000000 2 6 (1743 ex-adj-first 0.000000 2 3 (1742 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает")))) (1762 wh-ques 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1761 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1760 ex-subj 0.000000 5 6 (1759 ex-comp 0.000000 5 6 (1758 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает")))) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("купил"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "_person_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h25 h18 qeq h15 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +238@2@-1@-1@-1@-1@-1@-1@-1@-1@(1795 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1794 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1793 ex-adj-first 0.000000 2 6 (1792 head-comp 0.000000 2 6 (1783 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1791 wh-ques 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1790 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1760 ex-subj 0.000000 5 6 (1759 ex-comp 0.000000 5 6 (1758 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("купил")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "_person_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h25 h18 qeq h15 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +238@3@-1@-1@-1@-1@-1@-1@-1@-1@(1789 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1788 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1787 ex-adj-first 0.000000 2 6 (1786 head-comp 0.000000 2 6 (1783 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1785 subj-head 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1784 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1744 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("NP" ("что")) ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "_person_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_buy_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ARG2: x21 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h25 h18 qeq h15 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +238@4@-1@-1@-1@-1@-1@-1@-1@-1@(1757 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1756 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1755 head-comp 0.000000 2 6 (1750 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1754 subj-head 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1753 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1752 ex-adj-first 0.000000 5 6 (1751 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("NP" ("что")) ("V" ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "_person_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h20 qeq h17 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +238@5@-1@-1@-1@-1@-1@-1@-1@-1@(1802 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1801 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1800 head-comp 0.000000 2 6 (1750 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1799 subj-head 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1798 ex-adj-first 0.000000 4 6 (1797 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1796 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("купил")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "_person_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h20 qeq h17 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +238@6@-1@-1@-1@-1@-1@-1@-1@-1@(1782 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1780 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1778 head-comp 0.000000 2 6 (1750 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1776 wh-ques 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1770 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1769 ex-subj 0.000000 5 6 (1768 ex-comp 0.000000 5 6 (1767 ex-adj-last 0.000000 5 6 (1766 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("V" ("купил")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "_person_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h20 qeq h17 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +238@7@-1@-1@-1@-1@-1@-1@-1@-1@(1803 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (1781 subj-head 0.000000 1 6 (1741 bare-np 0.000000 1 2 (1740 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1779 head-comp 0.000000 2 6 (1750 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1777 wh-ques 0.000000 3 6 (10 кто 0.000000 3 4 ("кто")) (1775 wh-ques 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (1774 ex-subj 0.000000 5 6 (1773 ex-adj-last 0.000000 5 6 (1772 ex-comp 0.000000 5 6 (1771 sg-past-masc-suffix3 0.000000 5 6 (13 купи 0.000000 5 6 ("купил")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("VP" ("VP" ("V" ("V" ("купил")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "_person_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_buy_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h20 qeq h17 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +239@0@-1@-1@-1@-1@-1@-1@-1@-1@(2436 wh-ques 0.000000 0 5 (6 кто 0.000000 0 1 ("Кто")) (2435 subj-head 0.000000 1 5 (2428 bare-np 0.000000 1 2 (2427 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (2434 head-comp 0.000000 2 5 (2429 3sg-pres-suffix1 0.000000 2 3 (8 спрашива 0.000000 2 3 ("спрашивает"))) (2433 wh-ques 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (2432 ex-subj 0.000000 4 5 (2431 ex-comp 0.000000 4 5 (2430 sg-past-masc-suffix1 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видел")))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видел")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_thing_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +240@0@-1@-1@-1@-1@-1@-1@-1@-1@(1740 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (1739 subj-head 0.000000 1 6 (1729 bare-np 0.000000 1 2 (1728 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1738 head-comp 0.000000 2 6 (1730 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1737 wh-ques 0.000000 3 6 (1731 sg-acc-fem-suffix2 0.000000 3 4 (11 как_1 0.000000 3 4 ("какую"))) (1736 ex-subj 0.000000 4 6 (1735 comp-head 0.000000 4 6 (1733 ex-det 0.000000 4 5 (1732 sg-acc2-suffix1 0.000000 4 5 (12 книг 0.000000 4 5 ("книгу")))) (1734 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает")))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какую"))) ("S" ("VP" ("NP" ("N" ("N" ("книгу")))) ("V" ("V" ("читает")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_which_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h16 qeq h21 > ICONS: < i22 info-str i23 > ]@((:ascore . 0.0) (:probability . 0.5)) +240@1@-1@-1@-1@-1@-1@-1@-1@-1@(1750 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (1749 subj-head 0.000000 1 6 (1729 bare-np 0.000000 1 2 (1728 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1748 head-comp 0.000000 2 6 (1730 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1747 wh-ques 0.000000 3 6 (1743 head-spec 0.000000 3 5 (1741 sg-acc-fem-suffix2 0.000000 3 4 (11 как_1 0.000000 3 4 ("какую"))) (1742 sg-acc2-suffix1 0.000000 4 5 (12 книг 0.000000 4 5 ("книгу")))) (1746 ex-subj 0.000000 5 6 (1745 ex-comp 0.000000 5 6 (1744 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает")))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("VP" ("V" ("V" ("читает")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_which_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h16 BODY: h17 ] [ "_book_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h16 qeq h18 > ICONS: < i21 info-str i22 > ]@((:ascore . 0.0) (:probability . 0.5)) +241@0@-1@-1@-1@-1@-1@-1@-1@-1@(1373 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (1372 subj-head 0.000000 1 6 (1362 bare-np 0.000000 1 2 (1361 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (1371 head-comp 0.000000 2 6 (1363 3sg-pres-suffix1 0.000000 2 3 (9 спрашива 0.000000 2 3 ("спрашивает"))) (1370 wh-ques 0.000000 3 6 (1364 sg-acc-fem-suffix2 0.000000 3 4 (11 как_1 0.000000 3 4 ("какую"))) (1369 ex-subj 0.000000 4 6 (1368 head-comp 0.000000 4 6 (1365 3sg-pres-suffix1 0.000000 4 5 (12 чита 0.000000 4 5 ("читает"))) (1367 ex-det 0.000000 5 6 (1366 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какую"))) ("S" ("VP" ("V" ("V" ("читает"))) ("NP" ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_which_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h16 BODY: h17 ] [ "_read_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x15 ] [ "_book_n_rel"<-1:-1> LBL: h20 ARG0: x15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h18 h16 qeq h21 > ICONS: < i22 info-str i23 > ]@((:ascore . 0.0) (:probability . 1.0)) +242@0@-1@-1@-1@-1@-1@-1@-1@-1@(1490 subj-head 0.000000 0 6 (1478 bare-np 0.000000 0 1 (1477 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (1489 head-comp 0.000000 1 6 (1479 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1488 wh-ques 0.000000 2 6 (1480 sg-acc-fem-suffix2 0.000000 2 3 (10 как_1 0.000000 2 3 ("какую"))) (1487 comp-head 0.000000 3 6 (1482 ex-det 0.000000 3 4 (1481 sg-acc2-suffix1 0.000000 3 4 (11 книг 0.000000 3 4 ("книгу")))) (1486 subj-head 0.000000 4 6 (1484 bare-np 0.000000 4 5 (1483 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1485 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какую"))) ("S" ("NP" ("N" ("N" ("книгу")))) ("V" ("NP" ("N" ("N" ("студент")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h21 h16 qeq h18 > ICONS: < i22 info-str i23 > ]@((:ascore . 0.0) (:probability . 0.333333)) +242@1@-1@-1@-1@-1@-1@-1@-1@-1@(1514 in-situ-ques 0.000000 0 6 (1513 subj-head 0.000000 0 6 (1503 bare-np 0.000000 0 1 (1502 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (1512 head-comp 0.000000 1 6 (1504 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1511 comp-head 0.000000 2 6 (1507 head-spec 0.000000 2 4 (1505 sg-acc-fem-suffix2 0.000000 2 3 (10 как_1 0.000000 2 3 ("какую"))) (1506 sg-acc2-suffix1 0.000000 3 4 (11 книг 0.000000 3 4 ("книгу")))) (1510 subj-head 0.000000 4 6 (1508 bare-np 0.000000 4 5 (1483 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1509 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("V" ("NP" ("N" ("N" ("студент")))) ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < i21 info-str i22 > ]@((:ascore . 0.0) (:probability . 0.333333)) +242@2@-1@-1@-1@-1@-1@-1@-1@-1@(1501 subj-head 0.000000 0 6 (1478 bare-np 0.000000 0 1 (1477 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (1500 head-comp 0.000000 1 6 (1479 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1499 wh-ques 0.000000 2 6 (1493 head-spec 0.000000 2 4 (1491 sg-acc-fem-suffix2 0.000000 2 3 (10 как_1 0.000000 2 3 ("какую"))) (1492 sg-acc2-suffix1 0.000000 3 4 (11 книг 0.000000 3 4 ("книгу")))) (1498 subj-head 0.000000 4 6 (1495 bare-np 0.000000 4 5 (1494 nom1-lex 0.000000 4 5 (12 студент 0.000000 4 5 ("студент")))) (1497 ex-comp 0.000000 5 6 (1496 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("студент")))) ("VP" ("V" ("V" ("читает"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h16 BODY: h17 ] [ "_student_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h11 qeq h13 h16 qeq h18 > ICONS: < i21 info-str i22 > ]@((:ascore . 0.0) (:probability . 0.333333)) +246@0@-1@-1@-1@-1@-1@-1@-1@-1@(1471 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (1470 wh-ques 0.000000 1 6 (1461 head-spec 0.000000 1 3 (1459 sg-acc-fem-suffix2 0.000000 1 2 (9 как_1 0.000000 1 2 ("какую"))) (1460 sg-acc2-suffix1 0.000000 2 3 (10 книг 0.000000 2 3 ("книгу")))) (1469 subj-head 0.000000 3 6 (1463 bare-np 0.000000 3 4 (1462 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))) (1468 head-comp 0.000000 4 6 (1464 3sg-pres-suffix1 0.000000 4 5 (12 дума 0.000000 4 5 ("думает"))) (1467 ex-subj 0.000000 5 6 (1466 ex-comp 0.000000 5 6 (1465 3sg-pres-suffix1 0.000000 5 6 (13 чита 0.000000 5 6 ("читает")))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("S" ("VP" ("V" ("V" ("читает")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h15 BODY: h16 ] [ "_Ivan_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h18 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x10 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h13 h15 qeq h17 h18 qeq h19 > ICONS: < i21 info-str i22 > ]@((:ascore . 0.0) (:probability . 1.0)) +247@0@-1@-1@-1@-1@-1@-1@-1@-1@(3202 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3200 wh-ques 0.000000 1 7 (9 кто 0.000000 1 2 ("кто")) (3198 wh-ques 0.000000 2 7 (10 что_1 0.000000 2 3 ("что")) (3196 subj-head 0.000000 3 7 (3182 bare-np 0.000000 3 4 (3181 nom1-lex 0.000000 3 4 (12 Иван 0.000000 3 4 ("Иван")))) (3194 head-comp 0.000000 4 7 (3183 3sg-pres-suffix1 0.000000 4 5 (13 зна_1 0.000000 4 5 ("знает"))) (3188 head-comp 0.000000 5 7 (16 что_2 0.000000 5 6 ("что")) (3187 ex-subj 0.000000 6 7 (3186 ex-comp 0.000000 6 7 (3185 ex-adj-last 0.000000 6 7 (3184 3sg-pres-suffix1 0.000000 6 7 (17 чита 0.000000 6 7 ("читает"))))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("CP" ("C" ("что")) ("S" ("VP" ("V" ("V" ("V" ("читает"))))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_person_n_rel"<-1:-1> LBL: h12 ARG0: x13 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x13 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_Ivan_n_rel"<-1:-1> LBL: h25 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h26 ] [ "_read_v_rel"<-1:-1> LBL: h4 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x13 ARG2: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h15 qeq h12 h20 qeq h17 h23 qeq h25 h26 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +247@1@-1@-1@-1@-1@-1@-1@-1@-1@(3222 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3221 wh-ques 0.000000 1 7 (9 кто 0.000000 1 2 ("кто")) (3220 wh-ques 0.000000 2 7 (10 что_1 0.000000 2 3 ("что")) (3219 subj-head 0.000000 3 7 (3182 bare-np 0.000000 3 4 (3181 nom1-lex 0.000000 3 4 (12 Иван 0.000000 3 4 ("Иван")))) (3218 ex-adj-last 0.000000 4 7 (3217 head-comp 0.000000 4 7 (3214 3sg-pres-suffix1 0.000000 4 5 (13 зна_1 0.000000 4 5 ("знает"))) (3216 head-comp 0.000000 5 7 (16 что_2 0.000000 5 6 ("что")) (3215 ex-subj 0.000000 6 7 (3206 ex-comp 0.000000 6 7 (3205 3sg-pres-suffix1 0.000000 6 7 (17 чита 0.000000 6 7 ("читает"))))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("знает"))) ("CP" ("C" ("что")) ("S" ("VP" ("V" ("V" ("читает"))))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_thing_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "exist_q_rel"<-1:-1> LBL: h20 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h21 BODY: h22 ] [ "_Ivan_n_rel"<-1:-1> LBL: h23 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h24 ] [ "_read_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 ARG2: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h13 qeq h10 h18 qeq h15 h21 qeq h23 h24 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +247@2@-1@-1@-1@-1@-1@-1@-1@-1@(3223 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3201 wh-ques 0.000000 1 7 (9 кто 0.000000 1 2 ("кто")) (3199 wh-ques 0.000000 2 7 (10 что_1 0.000000 2 3 ("что")) (3197 subj-head 0.000000 3 7 (3182 bare-np 0.000000 3 4 (3181 nom1-lex 0.000000 3 4 (12 Иван 0.000000 3 4 ("Иван")))) (3195 head-comp 0.000000 4 7 (3183 3sg-pres-suffix1 0.000000 4 5 (13 зна_1 0.000000 4 5 ("знает"))) (3193 head-comp 0.000000 5 7 (16 что_2 0.000000 5 6 ("что")) (3192 ex-subj 0.000000 6 7 (3191 ex-adj-last 0.000000 6 7 (3190 ex-comp 0.000000 6 7 (3189 3sg-pres-suffix1 0.000000 6 7 (17 чита 0.000000 6 7 ("читает"))))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("CP" ("C" ("что")) ("S" ("VP" ("VP" ("V" ("V" ("читает"))))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_person_n_rel"<-1:-1> LBL: h12 ARG0: x13 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x13 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_Ivan_n_rel"<-1:-1> LBL: h25 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h26 ] [ "_read_v_rel"<-1:-1> LBL: h4 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x13 ARG2: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h15 qeq h12 h20 qeq h17 h23 qeq h25 h26 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +247@3@-1@-1@-1@-1@-1@-1@-1@-1@(3213 wh-ques 0.000000 0 7 (8 где 0.000000 0 1 ("Где")) (3212 wh-ques 0.000000 1 7 (9 кто 0.000000 1 2 ("кто")) (3211 wh-ques 0.000000 2 7 (10 что_1 0.000000 2 3 ("что")) (3210 subj-head 0.000000 3 7 (3182 bare-np 0.000000 3 4 (3181 nom1-lex 0.000000 3 4 (12 Иван 0.000000 3 4 ("Иван")))) (3209 head-comp 0.000000 4 7 (3204 ex-adj-last 0.000000 4 5 (3203 3sg-pres-suffix1 0.000000 4 5 (13 зна_1 0.000000 4 5 ("знает")))) (3208 head-comp 0.000000 5 7 (16 что_2 0.000000 5 6 ("что")) (3207 ex-subj 0.000000 6 7 (3206 ex-comp 0.000000 6 7 (3205 3sg-pres-suffix1 0.000000 6 7 (17 чита 0.000000 6 7 ("читает")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("знает")))) ("CP" ("C" ("что")) ("S" ("VP" ("V" ("V" ("читает")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_thing_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "exist_q_rel"<-1:-1> LBL: h20 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h21 BODY: h22 ] [ "_Ivan_n_rel"<-1:-1> LBL: h23 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h24 ] [ "_read_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 ARG2: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h13 qeq h10 h18 qeq h15 h21 qeq h23 h24 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +248@0@-1@-1@-1@-1@-1@-1@-1@-1@(2751 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2750 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (2749 wh-ques 0.000000 2 6 (9 что_1 0.000000 2 3 ("что")) (2748 subj-head 0.000000 3 6 (2741 bare-np 0.000000 3 4 (2740 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))) (2747 head-comp 0.000000 4 6 (2743 ex-adj-last 0.000000 4 5 (2742 3sg-pres-suffix1 0.000000 4 5 (12 зна_1 0.000000 4 5 ("знает")))) (2746 ex-subj 0.000000 5 6 (2745 ex-comp 0.000000 5 6 (2744 3sg-pres-suffix1 0.000000 5 6 (14 чита 0.000000 5 6 ("читает"))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("знает")))) ("S" ("VP" ("V" ("V" ("читает"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_thing_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "exist_q_rel"<-1:-1> LBL: h20 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h21 BODY: h22 ] [ "_Ivan_n_rel"<-1:-1> LBL: h23 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h24 ] [ "_read_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 ARG2: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h13 qeq h10 h18 qeq h15 h21 qeq h23 h24 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +248@1@-1@-1@-1@-1@-1@-1@-1@-1@(2778 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2777 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (2776 wh-ques 0.000000 2 6 (9 что_1 0.000000 2 3 ("что")) (2775 subj-head 0.000000 3 6 (2741 bare-np 0.000000 3 4 (2740 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))) (2774 ex-adj-last 0.000000 4 6 (2773 head-comp 0.000000 4 6 (2770 3sg-pres-suffix1 0.000000 4 5 (12 зна_1 0.000000 4 5 ("знает"))) (2772 ex-subj 0.000000 5 6 (2771 ex-comp 0.000000 5 6 (2744 3sg-pres-suffix1 0.000000 5 6 (14 чита 0.000000 5 6 ("читает")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("знает"))) ("S" ("VP" ("V" ("V" ("читает")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_thing_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "exist_q_rel"<-1:-1> LBL: h20 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h21 BODY: h22 ] [ "_Ivan_n_rel"<-1:-1> LBL: h23 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h24 ] [ "_read_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 ARG2: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h13 qeq h10 h18 qeq h15 h21 qeq h23 h24 qeq h25 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +248@2@-1@-1@-1@-1@-1@-1@-1@-1@(2769 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2767 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (2765 wh-ques 0.000000 2 6 (9 что_1 0.000000 2 3 ("что")) (2763 subj-head 0.000000 3 6 (2741 bare-np 0.000000 3 4 (2740 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))) (2757 head-comp 0.000000 4 6 (2752 3sg-pres-suffix1 0.000000 4 5 (12 зна_1 0.000000 4 5 ("знает"))) (2756 ex-subj 0.000000 5 6 (2755 ex-comp 0.000000 5 6 (2754 ex-adj-last 0.000000 5 6 (2753 3sg-pres-suffix1 0.000000 5 6 (14 чита 0.000000 5 6 ("читает")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("VP" ("V" ("V" ("V" ("читает")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_person_n_rel"<-1:-1> LBL: h12 ARG0: x13 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x13 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_Ivan_n_rel"<-1:-1> LBL: h25 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h26 ] [ "_read_v_rel"<-1:-1> LBL: h4 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x13 ARG2: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h15 qeq h12 h20 qeq h17 h23 qeq h25 h26 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +248@3@-1@-1@-1@-1@-1@-1@-1@-1@(2779 wh-ques 0.000000 0 6 (7 где 0.000000 0 1 ("Где")) (2768 wh-ques 0.000000 1 6 (8 кто 0.000000 1 2 ("кто")) (2766 wh-ques 0.000000 2 6 (9 что_1 0.000000 2 3 ("что")) (2764 subj-head 0.000000 3 6 (2741 bare-np 0.000000 3 4 (2740 nom1-lex 0.000000 3 4 (11 Иван 0.000000 3 4 ("Иван")))) (2762 head-comp 0.000000 4 6 (2752 3sg-pres-suffix1 0.000000 4 5 (12 зна_1 0.000000 4 5 ("знает"))) (2761 ex-subj 0.000000 5 6 (2760 ex-adj-last 0.000000 5 6 (2759 ex-comp 0.000000 5 6 (2758 3sg-pres-suffix1 0.000000 5 6 (14 чита 0.000000 5 6 ("читает")))))))))))@@("S" ("ADV" ("Где")) ("S" ("NP" ("кто")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("VP" ("VP" ("V" ("V" ("читает")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "_person_n_rel"<-1:-1> LBL: h12 ARG0: x13 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x13 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "exist_q_rel"<-1:-1> LBL: h22 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h23 BODY: h24 ] [ "_Ivan_n_rel"<-1:-1> LBL: h25 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h26 ] [ "_read_v_rel"<-1:-1> LBL: h4 ARG0: e27 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x13 ARG2: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h15 qeq h12 h20 qeq h17 h23 qeq h25 h26 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +253@0@-1@-1@-1@-1@-1@-1@-1@-1@(8875 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (8874 subj-head 0.000000 1 6 (8866 bare-np 0.000000 1 2 (8865 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (8873 adj-head 0.000000 2 6 (9 точно 0.000000 2 3 ("точно")) (8872 head-comp 0.000000 3 6 (8867 3sg-pres-suffix1 0.000000 3 4 (11 зна_2 0.000000 3 4 ("знает"))) (8871 wh-ques 0.000000 4 6 (12 что_1 0.000000 4 5 ("что")) (8870 ex-subj 0.000000 5 6 (8869 ex-comp 0.000000 5 6 (8868 sg-past-masc-suffix1 0.000000 5 6 (16 вид_1 0.000000 5 6 ("видел"))))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("точно")) ("VP" ("V" ("V" ("знает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видел"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_see_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x21 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h17 qeq h15 h19 qeq h25 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +253@1@-1@-1@-1@-1@-1@-1@-1@-1@(8882 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (8881 subj-head 0.000000 1 6 (8866 bare-np 0.000000 1 2 (8865 nom1-lex 0.000000 1 2 (8 Иван 0.000000 1 2 ("Иван")))) (8880 head-comp 0.000000 2 6 (8877 adj-head 0.000000 2 4 (9 точно 0.000000 2 3 ("точно")) (8876 3sg-pres-suffix1 0.000000 3 4 (11 зна_2 0.000000 3 4 ("знает")))) (8879 wh-ques 0.000000 4 6 (12 что_1 0.000000 4 5 ("что")) (8878 ex-subj 0.000000 5 6 (8869 ex-comp 0.000000 5 6 (8868 sg-past-masc-suffix1 0.000000 5 6 (16 вид_1 0.000000 5 6 ("видел")))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("точно")) ("V" ("V" ("знает")))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видел")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "exist_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h19 ] [ "_thing_n_rel"<-1:-1> LBL: h20 ARG0: x21 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h22 ARG0: x21 RSTR: h23 BODY: h24 ] [ "_see_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x21 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h17 qeq h15 h19 qeq h25 h23 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +254@0@-1@-1@-1@-1@-1@-1@-1@-1@(2436 wh-ques 0.000000 0 5 (6 кто 0.000000 0 1 ("Кто")) (2435 subj-head 0.000000 1 5 (2428 bare-np 0.000000 1 2 (2427 nom1-lex 0.000000 1 2 (7 Иван 0.000000 1 2 ("Иван")))) (2434 head-comp 0.000000 2 5 (2429 3sg-pres-suffix1 0.000000 2 3 (8 спрашива 0.000000 2 3 ("спрашивает"))) (2433 wh-ques 0.000000 3 5 (9 что_1 0.000000 3 4 ("что")) (2432 ex-subj 0.000000 4 5 (2431 ex-comp 0.000000 4 5 (2430 sg-past-masc-suffix1 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видел")))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("видел")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h10 BODY: h11 ] [ "_Ivan_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_thing_n_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x15 RSTR: h17 BODY: h18 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x15 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h17 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +258@0@-1@-1@-1@-1@-1@-1@-1@-1@(1248 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (1247 wh-ques 0.000000 1 7 (1237 head-spec 0.000000 1 3 (1235 sg-acc-fem-suffix2 0.000000 1 2 (10 как_1 0.000000 1 2 ("какую"))) (1236 sg-acc2-suffix1 0.000000 2 3 (11 книг 0.000000 2 3 ("книгу")))) (1246 subj-head 0.000000 3 7 (1239 bare-np 0.000000 3 4 (1238 nom1-lex 0.000000 3 4 (12 Иван 0.000000 3 4 ("Иван")))) (1245 head-comp 0.000000 4 7 (1240 3sg-pres-suffix1 0.000000 4 5 (13 дума 0.000000 4 5 ("думает"))) (1244 head-comp 0.000000 5 7 (15 что_2 0.000000 5 6 ("что")) (1243 ex-subj 0.000000 6 7 (1242 ex-comp 0.000000 6 7 (1241 3sg-pres-suffix1 0.000000 6 7 (16 чита 0.000000 6 7 ("читает"))))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("думает"))) ("CP" ("C" ("что")) ("S" ("VP" ("V" ("V" ("читает"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h15 BODY: h16 ] [ "_Ivan_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h18 ] [ "_read_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x10 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h13 h15 qeq h17 h18 qeq h19 > ICONS: < i21 info-str i22 > ]@((:ascore . 0.0) (:probability . 1.0)) +259@0@-1@-1@-1@-1@-1@-1@-1@-1@(5097 wh-ques 0.000000 0 8 (9 кто 0.000000 0 1 ("Кто")) (5096 wh-ques 0.000000 1 8 (5085 head-spec 0.000000 1 3 (5083 sg-acc-fem-suffix2 0.000000 1 2 (11 как_1 0.000000 1 2 ("какую"))) (5084 sg-acc2-suffix1 0.000000 2 3 (12 книг 0.000000 2 3 ("книгу")))) (5095 subj-head 0.000000 3 8 (5087 bare-np 0.000000 3 4 (5086 nom1-lex 0.000000 3 4 (13 Иван 0.000000 3 4 ("Иван")))) (5094 head-comp 0.000000 4 8 (5089 adj-head 0.000000 4 6 (14 точно 0.000000 4 5 ("точно")) (5088 3sg-pres-suffix1 0.000000 5 6 (15 зна_1 0.000000 5 6 ("знает")))) (5093 head-comp 0.000000 6 8 (18 что_2 0.000000 6 7 ("что")) (5092 ex-subj 0.000000 7 8 (5091 ex-comp 0.000000 7 8 (5090 3sg-pres-suffix1 0.000000 7 8 (19 чита 0.000000 7 8 ("читает"))))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("ADV" ("точно")) ("V" ("V" ("знает")))) ("CP" ("C" ("что")) ("S" ("VP" ("V" ("V" ("читает"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h15 BODY: h16 ] [ "_Ivan_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e18 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h20 ARG0: x19 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x19 RSTR: h22 BODY: h23 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h24 ] [ "_read_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x10 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h13 h15 qeq h17 h22 qeq h20 h24 qeq h25 > ICONS: < i27 info-str i28 > ]@((:ascore . 0.0) (:probability . 0.5)) +259@1@-1@-1@-1@-1@-1@-1@-1@-1@(5105 wh-ques 0.000000 0 8 (9 кто 0.000000 0 1 ("Кто")) (5104 wh-ques 0.000000 1 8 (5085 head-spec 0.000000 1 3 (5083 sg-acc-fem-suffix2 0.000000 1 2 (11 как_1 0.000000 1 2 ("какую"))) (5084 sg-acc2-suffix1 0.000000 2 3 (12 книг 0.000000 2 3 ("книгу")))) (5103 subj-head 0.000000 3 8 (5087 bare-np 0.000000 3 4 (5086 nom1-lex 0.000000 3 4 (13 Иван 0.000000 3 4 ("Иван")))) (5102 adj-head 0.000000 4 8 (14 точно 0.000000 4 5 ("точно")) (5101 head-comp 0.000000 5 8 (5098 3sg-pres-suffix1 0.000000 5 6 (15 зна_1 0.000000 5 6 ("знает"))) (5100 head-comp 0.000000 6 8 (18 что_2 0.000000 6 7 ("что")) (5099 ex-subj 0.000000 7 8 (5091 ex-comp 0.000000 7 8 (5090 3sg-pres-suffix1 0.000000 7 8 (19 чита 0.000000 7 8 ("читает")))))))))))@@("S" ("NP" ("Кто")) ("S" ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("ADV" ("точно")) ("VP" ("V" ("V" ("знает"))) ("CP" ("C" ("что")) ("S" ("VP" ("V" ("V" ("читает")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h15 BODY: h16 ] [ "_Ivan_n_rel"<-1:-1> LBL: h17 ARG0: x3 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e18 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_for.sure_a_rel"<-1:-1> LBL: h20 ARG0: x19 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x19 RSTR: h22 BODY: h23 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h24 ] [ "_read_v_rel"<-1:-1> LBL: h25 ARG0: e26 [ e SF: prop E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x10 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h13 h15 qeq h17 h22 qeq h20 h24 qeq h25 > ICONS: < i27 info-str i28 > ]@((:ascore . 0.0) (:probability . 0.5)) +268@0@-1@-1@-1@-1@-1@-1@-1@-1@(2157 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2156 ex-subj 0.000000 1 6 (2155 head-comp 0.000000 1 6 (2149 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (2154 adj-head 0.000000 2 6 (9 где 0.000000 2 3 ("где")) (2153 subj-head 0.000000 3 6 (2150 bare-np 0.000000 3 4 (10 мы 0.000000 3 4 ("мы"))) (2152 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2151 1pl-past-suffix1 0.000000 5 6 (15 вид_1 0.000000 5 6 ("видели")))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("NP" ("что")) ("V" ("V" ("видели")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +268@1@-1@-1@-1@-1@-1@-1@-1@-1@(2175 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2174 ex-subj 0.000000 1 6 (2173 head-comp 0.000000 1 6 (2149 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (2172 adj-head 0.000000 2 6 (9 где 0.000000 2 3 ("где")) (2171 in-situ-ques 0.000000 3 6 (2170 subj-head 0.000000 3 6 (2167 bare-np 0.000000 3 4 (10 мы 0.000000 3 4 ("мы"))) (2169 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2168 1pl-past-suffix1 0.000000 5 6 (15 вид_1 0.000000 5 6 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("S" ("NP" ("N" ("мы"))) ("VP" ("NP" ("что")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +268@2@-1@-1@-1@-1@-1@-1@-1@-1@(2166 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2165 ex-subj 0.000000 1 6 (2164 head-comp 0.000000 1 6 (2149 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (2163 wh-ques 0.000000 2 6 (9 где 0.000000 2 3 ("где")) (2162 subj-head 0.000000 3 6 (2158 bare-np 0.000000 3 4 (10 мы 0.000000 3 4 ("мы"))) (2161 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2160 ex-adj-first 0.000000 5 6 (2159 1pl-past-suffix1 0.000000 5 6 (15 вид_1 0.000000 5 6 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("NP" ("что")) ("V" ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +268@3@-1@-1@-1@-1@-1@-1@-1@-1@(2183 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2182 ex-subj 0.000000 1 6 (2181 head-comp 0.000000 1 6 (2149 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (2180 wh-ques 0.000000 2 6 (9 где 0.000000 2 3 ("где")) (2179 subj-head 0.000000 3 6 (2158 bare-np 0.000000 3 4 (10 мы 0.000000 3 4 ("мы"))) (2178 ex-adj-first 0.000000 4 6 (2177 comp-head 0.000000 4 6 (11 что_1 0.000000 4 5 ("что")) (2176 1pl-past-suffix1 0.000000 5 6 (15 вид_1 0.000000 5 6 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +269@0@-1@-1@-1@-1@-1@-1@-1@-1@(22091 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (22090 ex-subj 0.000000 1 7 (22089 head-comp 0.000000 1 7 (22080 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (22088 adj-head 0.000000 2 7 (10 где 0.000000 2 3 ("где")) (22087 subj-head 0.000000 3 7 (22081 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (22086 head-comp 0.000000 4 7 (22082 1pl-past-suffix1 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видели"))) (22085 head-spec 0.000000 5 7 (22083 pl-acc-inan-suffix2 0.000000 5 6 (16 как_1 0.000000 5 6 ("какие"))) (22084 pl-nom2-suffix 0.000000 6 7 (17 книг 0.000000 6 7 ("книги"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("V" ("V" ("видели"))) ("NP" ("D" ("D" ("какие"))) ("N" ("N" ("книги"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +269@1@-1@-1@-1@-1@-1@-1@-1@-1@(22111 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (22110 ex-subj 0.000000 1 7 (22109 head-comp 0.000000 1 7 (22080 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (22108 adj-head 0.000000 2 7 (10 где 0.000000 2 3 ("где")) (22107 in-situ-ques 0.000000 3 7 (22106 subj-head 0.000000 3 7 (22102 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (22105 head-comp 0.000000 4 7 (22103 1pl-past-suffix1 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видели"))) (22104 head-spec 0.000000 5 7 (22083 pl-acc-inan-suffix2 0.000000 5 6 (16 как_1 0.000000 5 6 ("какие"))) (22084 pl-nom2-suffix 0.000000 6 7 (17 книг 0.000000 6 7 ("книги")))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("S" ("NP" ("N" ("мы"))) ("VP" ("V" ("V" ("видели"))) ("NP" ("D" ("D" ("какие"))) ("N" ("N" ("книги")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +269@2@-1@-1@-1@-1@-1@-1@-1@-1@(22122 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (22121 ex-subj 0.000000 1 7 (22120 head-comp 0.000000 1 7 (22080 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (22119 wh-ques 0.000000 2 7 (10 где 0.000000 2 3 ("где")) (22118 subj-head 0.000000 3 7 (22092 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (22117 ex-adj-first 0.000000 4 7 (22116 head-comp 0.000000 4 7 (22112 1pl-past-suffix1 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видели"))) (22115 head-spec 0.000000 5 7 (22113 pl-acc-inan-suffix2 0.000000 5 6 (16 как_1 0.000000 5 6 ("какие"))) (22114 pl-nom2-suffix 0.000000 6 7 (17 книг 0.000000 6 7 ("книги")))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("VP" ("V" ("V" ("видели"))) ("NP" ("D" ("D" ("какие"))) ("N" ("N" ("книги")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +269@3@-1@-1@-1@-1@-1@-1@-1@-1@(22101 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (22100 ex-subj 0.000000 1 7 (22099 head-comp 0.000000 1 7 (22080 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (22098 wh-ques 0.000000 2 7 (10 где 0.000000 2 3 ("где")) (22097 subj-head 0.000000 3 7 (22092 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (22096 head-comp 0.000000 4 7 (22094 ex-adj-first 0.000000 4 5 (22093 1pl-past-suffix1 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видели")))) (22095 head-spec 0.000000 5 7 (22083 pl-acc-inan-suffix2 0.000000 5 6 (16 как_1 0.000000 5 6 ("какие"))) (22084 pl-nom2-suffix 0.000000 6 7 (17 книг 0.000000 6 7 ("книги"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("V" ("V" ("V" ("видели")))) ("NP" ("D" ("D" ("какие"))) ("N" ("N" ("книги"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +270@0@-1@-1@-1@-1@-1@-1@-1@-1@(21813 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (21812 ex-subj 0.000000 1 7 (21811 head-comp 0.000000 1 7 (21802 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (21810 adj-head 0.000000 2 7 (10 где 0.000000 2 3 ("где")) (21809 subj-head 0.000000 3 7 (21803 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (21808 head-comp 0.000000 4 7 (21804 1pl-past-suffix1 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видели"))) (21807 head-spec 0.000000 5 7 (21805 pl-acc-inan-suffix1 0.000000 5 6 (15 эт 0.000000 5 6 ("эти"))) (21806 pl-nom2-suffix 0.000000 6 7 (16 книг 0.000000 6 7 ("книги"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("V" ("V" ("видели"))) ("NP" ("D" ("D" ("эти"))) ("N" ("N" ("книги"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +270@1@-1@-1@-1@-1@-1@-1@-1@-1@(21834 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (21833 ex-subj 0.000000 1 7 (21832 head-comp 0.000000 1 7 (21802 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (21831 wh-ques 0.000000 2 7 (10 где 0.000000 2 3 ("где")) (21830 subj-head 0.000000 3 7 (21814 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (21829 ex-adj-first 0.000000 4 7 (21828 head-comp 0.000000 4 7 (21824 1pl-past-suffix1 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видели"))) (21827 head-spec 0.000000 5 7 (21825 pl-acc-inan-suffix1 0.000000 5 6 (15 эт 0.000000 5 6 ("эти"))) (21826 pl-nom2-suffix 0.000000 6 7 (16 книг 0.000000 6 7 ("книги")))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("VP" ("V" ("V" ("видели"))) ("NP" ("D" ("D" ("эти"))) ("N" ("N" ("книги")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +270@2@-1@-1@-1@-1@-1@-1@-1@-1@(21823 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (21822 ex-subj 0.000000 1 7 (21821 head-comp 0.000000 1 7 (21802 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (21820 wh-ques 0.000000 2 7 (10 где 0.000000 2 3 ("где")) (21819 subj-head 0.000000 3 7 (21814 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (21818 head-comp 0.000000 4 7 (21816 ex-adj-first 0.000000 4 5 (21815 1pl-past-suffix1 0.000000 4 5 (14 вид_1 0.000000 4 5 ("видели")))) (21817 head-spec 0.000000 5 7 (21805 pl-acc-inan-suffix1 0.000000 5 6 (15 эт 0.000000 5 6 ("эти"))) (21806 pl-nom2-suffix 0.000000 6 7 (16 книг 0.000000 6 7 ("книги"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("V" ("V" ("V" ("видели")))) ("NP" ("D" ("D" ("эти"))) ("N" ("N" ("книги"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h23 ARG0: x22 RSTR: h24 BODY: h25 ] [ "_book_n_rel"<-1:-1> LBL: h26 ARG0: x22 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h24 qeq h26 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +272@0@-1@-1@-1@-1@-1@-1@-1@-1@(2036 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (2034 ex-subj 0.000000 1 7 (2032 head-comp 0.000000 1 7 (2018 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (2027 wh-ques 0.000000 2 7 (2019 pl-nom-suffix2 0.000000 2 3 (11 как_1 0.000000 2 3 ("какие"))) (2026 comp-head 0.000000 3 7 (2021 bare-np 0.000000 3 4 (2020 pl-nom2-suffix 0.000000 3 4 (12 книг 0.000000 3 4 ("книги")))) (2025 subj-head 0.000000 4 7 (2022 ex-det 0.000000 4 5 (13 мы 0.000000 4 5 ("мы"))) (2024 adj-head 0.000000 5 7 (14 где 0.000000 5 6 ("где")) (2023 1pl-past-suffix1 0.000000 6 7 (17 вид_1 0.000000 6 7 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какие"))) ("S" ("NP" ("N" ("N" ("книги")))) ("V" ("NP" ("N" ("мы"))) ("V" ("ADV" ("где")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h11 BODY: h12 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h15 BODY: h16 ] [ "_book_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x10 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x10 ARG2: x14 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h27 h15 qeq h17 h25 qeq h23 > ICONS: < i28 info-str i29 > ]@((:ascore . 0.0) (:probability . 0.166667)) +272@1@-1@-1@-1@-1@-1@-1@-1@-1@(2056 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (2055 ex-subj 0.000000 1 7 (2054 head-comp 0.000000 1 7 (2018 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (2053 comp-head 0.000000 2 7 (2049 head-spec 0.000000 2 4 (2047 pl-acc-inan-suffix2 0.000000 2 3 (11 как_1 0.000000 2 3 ("какие"))) (2048 pl-nom2-suffix 0.000000 3 4 (12 книг 0.000000 3 4 ("книги")))) (2052 subj-head 0.000000 4 7 (2050 bare-np 0.000000 4 5 (13 мы 0.000000 4 5 ("мы"))) (2051 adj-head 0.000000 5 7 (14 где 0.000000 5 6 ("где")) (2023 1pl-past-suffix1 0.000000 6 7 (17 вид_1 0.000000 6 7 ("видели")))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какие"))) ("N" ("N" ("книги")))) ("V" ("NP" ("N" ("мы"))) ("V" ("ADV" ("где")) ("V" ("V" ("видели")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h16 BODY: h17 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h13 h16 qeq h18 h25 qeq h23 > ICONS: < i27 info-str i28 > ]@((:ascore . 0.0) (:probability . 0.166667)) +272@2@-1@-1@-1@-1@-1@-1@-1@-1@(2068 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (2067 ex-subj 0.000000 1 7 (2066 head-comp 0.000000 1 7 (2018 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (2065 wh-ques 0.000000 2 7 (2059 head-spec 0.000000 2 4 (2057 pl-acc-inan-suffix2 0.000000 2 3 (11 как_1 0.000000 2 3 ("какие"))) (2058 pl-nom2-suffix 0.000000 3 4 (12 книг 0.000000 3 4 ("книги")))) (2064 subj-head 0.000000 4 7 (2060 bare-np 0.000000 4 5 (13 мы 0.000000 4 5 ("мы"))) (2063 adj-head 0.000000 5 7 (14 где 0.000000 5 6 ("где")) (2062 ex-comp 0.000000 6 7 (2061 1pl-past-suffix1 0.000000 6 7 (17 вид_1 0.000000 6 7 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какие"))) ("N" ("N" ("книги")))) ("S" ("NP" ("N" ("мы"))) ("VP" ("ADV" ("где")) ("VP" ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h16 BODY: h17 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h13 h16 qeq h18 h25 qeq h23 > ICONS: < i27 info-str i28 > ]@((:ascore . 0.0) (:probability . 0.166667)) +272@3@-1@-1@-1@-1@-1@-1@-1@-1@(2077 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (2035 ex-subj 0.000000 1 7 (2033 head-comp 0.000000 1 7 (2018 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (2031 wh-ques 0.000000 2 7 (2019 pl-nom-suffix2 0.000000 2 3 (11 как_1 0.000000 2 3 ("какие"))) (2030 comp-head 0.000000 3 7 (2029 bare-np 0.000000 3 4 (2028 sg-gen2-suffix 0.000000 3 4 (12 книг 0.000000 3 4 ("книги")))) (2025 subj-head 0.000000 4 7 (2022 ex-det 0.000000 4 5 (13 мы 0.000000 4 5 ("мы"))) (2024 adj-head 0.000000 5 7 (14 где 0.000000 5 6 ("где")) (2023 1pl-past-suffix1 0.000000 6 7 (17 вид_1 0.000000 6 7 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какие"))) ("S" ("NP" ("N" ("N" ("книги")))) ("V" ("NP" ("N" ("мы"))) ("V" ("ADV" ("где")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h11 BODY: h12 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h15 BODY: h16 ] [ "_book_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x10 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x10 ARG2: x14 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h27 h15 qeq h17 h25 qeq h23 > ICONS: < i28 info-str i29 > ]@((:ascore . 0.0) (:probability . 0.166667)) +272@4@-1@-1@-1@-1@-1@-1@-1@-1@(2046 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (2045 ex-subj 0.000000 1 7 (2044 head-comp 0.000000 1 7 (2018 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (2043 wh-ques 0.000000 2 7 (2037 pl-acc-inan-suffix2 0.000000 2 3 (11 как_1 0.000000 2 3 ("какие"))) (2042 comp-head 0.000000 3 7 (2039 ex-det 0.000000 3 4 (2038 pl-nom2-suffix 0.000000 3 4 (12 книг 0.000000 3 4 ("книги")))) (2041 subj-head 0.000000 4 7 (2040 bare-np 0.000000 4 5 (13 мы 0.000000 4 5 ("мы"))) (2024 adj-head 0.000000 5 7 (14 где 0.000000 5 6 ("где")) (2023 1pl-past-suffix1 0.000000 6 7 (17 вид_1 0.000000 6 7 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("D" ("D" ("какие"))) ("S" ("NP" ("N" ("N" ("книги")))) ("V" ("NP" ("N" ("мы"))) ("V" ("ADV" ("где")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h16 BODY: h17 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h27 h16 qeq h18 h25 qeq h23 > ICONS: < i28 info-str i29 > ]@((:ascore . 0.0) (:probability . 0.166667)) +272@5@-1@-1@-1@-1@-1@-1@-1@-1@(2076 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (2075 ex-subj 0.000000 1 7 (2074 head-comp 0.000000 1 7 (2018 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (2073 wh-ques 0.000000 2 7 (2059 head-spec 0.000000 2 4 (2057 pl-acc-inan-suffix2 0.000000 2 3 (11 как_1 0.000000 2 3 ("какие"))) (2058 pl-nom2-suffix 0.000000 3 4 (12 книг 0.000000 3 4 ("книги")))) (2072 subj-head 0.000000 4 7 (2060 bare-np 0.000000 4 5 (13 мы 0.000000 4 5 ("мы"))) (2071 ex-comp 0.000000 5 7 (2070 adj-head 0.000000 5 7 (14 где 0.000000 5 6 ("где")) (2069 1pl-past-suffix1 0.000000 6 7 (17 вид_1 0.000000 6 7 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("какие"))) ("N" ("N" ("книги")))) ("S" ("NP" ("N" ("мы"))) ("VP" ("V" ("ADV" ("где")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_which_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h16 BODY: h17 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h13 h16 qeq h18 h25 qeq h23 > ICONS: < i27 info-str i28 > ]@((:ascore . 0.0) (:probability . 0.166667)) +273@0@-1@-1@-1@-1@-1@-1@-1@-1@(1305 wh-ques 0.000000 0 7 (8 кто 0.000000 0 1 ("Кто")) (1304 ex-subj 0.000000 1 7 (1303 head-comp 0.000000 1 7 (1294 3sg-pres-suffix1 0.000000 1 2 (9 спрашива 0.000000 1 2 ("спрашивает"))) (1302 comp-head 0.000000 2 7 (1297 head-spec 0.000000 2 4 (1295 pl-acc-inan-suffix1 0.000000 2 3 (10 эт 0.000000 2 3 ("эти"))) (1296 pl-nom2-suffix 0.000000 3 4 (11 книг 0.000000 3 4 ("книги")))) (1301 subj-head 0.000000 4 7 (1298 bare-np 0.000000 4 5 (12 мы 0.000000 4 5 ("мы"))) (1300 adj-head 0.000000 5 7 (13 где 0.000000 5 6 ("где")) (1299 1pl-past-suffix1 0.000000 6 7 (16 вид_1 0.000000 6 7 ("видели")))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("D" ("D" ("эти"))) ("N" ("N" ("книги")))) ("V" ("NP" ("N" ("мы"))) ("V" ("ADV" ("где")) ("V" ("V" ("видели")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_this_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h16 BODY: h17 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h13 h16 qeq h18 h25 qeq h23 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +274@0@-1@-1@-1@-1@-1@-1@-1@-1@(1663 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (1661 ex-subj 0.000000 1 6 (1656 head-comp 0.000000 1 6 (1648 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1655 comp-head 0.000000 2 6 (1650 bare-np 0.000000 2 3 (1649 pl-nom2-suffix 0.000000 2 3 (9 книг 0.000000 2 3 ("книги")))) (1654 subj-head 0.000000 3 6 (1651 bare-np 0.000000 3 4 (10 мы 0.000000 3 4 ("мы"))) (1653 adj-head 0.000000 4 6 (11 где 0.000000 4 5 ("где")) (1652 1pl-past-suffix1 0.000000 5 6 (14 вид_1 0.000000 5 6 ("видели")))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("книги")))) ("V" ("NP" ("N" ("мы"))) ("V" ("ADV" ("где")) ("V" ("V" ("видели")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h16 BODY: h17 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h13 h16 qeq h18 h25 qeq h23 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +274@1@-1@-1@-1@-1@-1@-1@-1@-1@(1664 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (1662 ex-subj 0.000000 1 6 (1660 head-comp 0.000000 1 6 (1648 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (1659 comp-head 0.000000 2 6 (1658 bare-np 0.000000 2 3 (1657 sg-gen2-suffix 0.000000 2 3 (9 книг 0.000000 2 3 ("книги")))) (1654 subj-head 0.000000 3 6 (1651 bare-np 0.000000 3 4 (10 мы 0.000000 3 4 ("мы"))) (1653 adj-head 0.000000 4 6 (11 где 0.000000 4 5 ("где")) (1652 1pl-past-suffix1 0.000000 5 6 (14 вид_1 0.000000 5 6 ("видели")))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("спрашивает"))) ("S" ("NP" ("N" ("N" ("книги")))) ("V" ("NP" ("N" ("мы"))) ("V" ("ADV" ("где")) ("V" ("V" ("видели")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] RSTR: h11 BODY: h12 ] [ "_book_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h16 BODY: h17 ] [ "_мы_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "loc_nonsp_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e21 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x22 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h23 ARG0: x22 ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x22 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h19 ARG0: e21 ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h19 h11 qeq h13 h16 qeq h18 h25 qeq h23 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +282@0@-1@-1@-1@-1@-1@-1@-1@-1@(2591 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2590 ex-subj 0.000000 1 6 (2589 head-comp 0.000000 1 6 (2583 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (2588 adj-head 0.000000 2 6 (10 где 0.000000 2 3 ("где")) (2587 subj-head 0.000000 3 6 (2584 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (2586 comp-head 0.000000 4 6 (12 что_1 0.000000 4 5 ("что")) (2585 1pl-past-suffix1 0.000000 5 6 (16 вид_1 0.000000 5 6 ("видели")))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("NP" ("что")) ("V" ("V" ("видели")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +282@1@-1@-1@-1@-1@-1@-1@-1@-1@(2609 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2608 ex-subj 0.000000 1 6 (2607 head-comp 0.000000 1 6 (2583 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (2606 adj-head 0.000000 2 6 (10 где 0.000000 2 3 ("где")) (2605 in-situ-ques 0.000000 3 6 (2604 subj-head 0.000000 3 6 (2601 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (2603 comp-head 0.000000 4 6 (12 что_1 0.000000 4 5 ("что")) (2602 1pl-past-suffix1 0.000000 5 6 (16 вид_1 0.000000 5 6 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("где")) ("S" ("S" ("NP" ("N" ("мы"))) ("VP" ("NP" ("что")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +282@2@-1@-1@-1@-1@-1@-1@-1@-1@(2600 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2599 ex-subj 0.000000 1 6 (2598 head-comp 0.000000 1 6 (2583 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (2597 wh-ques 0.000000 2 6 (10 где 0.000000 2 3 ("где")) (2596 subj-head 0.000000 3 6 (2592 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (2595 comp-head 0.000000 4 6 (12 что_1 0.000000 4 5 ("что")) (2594 ex-adj-first 0.000000 5 6 (2593 1pl-past-suffix1 0.000000 5 6 (16 вид_1 0.000000 5 6 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("NP" ("что")) ("V" ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +282@3@-1@-1@-1@-1@-1@-1@-1@-1@(2617 wh-ques 0.000000 0 6 (7 кто 0.000000 0 1 ("Кто")) (2616 ex-subj 0.000000 1 6 (2615 head-comp 0.000000 1 6 (2583 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (2614 wh-ques 0.000000 2 6 (10 где 0.000000 2 3 ("где")) (2613 subj-head 0.000000 3 6 (2592 bare-np 0.000000 3 4 (11 мы 0.000000 3 4 ("мы"))) (2612 ex-adj-first 0.000000 4 6 (2611 comp-head 0.000000 4 6 (12 что_1 0.000000 4 5 ("что")) (2610 1pl-past-suffix1 0.000000 5 6 (16 вид_1 0.000000 5 6 ("видели"))))))))))@@("S" ("NP" ("Кто")) ("S" ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("где")) ("S" ("NP" ("N" ("мы"))) ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("видели"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "exist_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: pl PNG.GEND: gender ] RSTR: h19 BODY: h20 ] [ "_мы_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_thing_n_rel"<-1:-1> LBL: h22 ARG0: x23 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h24 ARG0: x23 RSTR: h25 BODY: h26 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x18 ARG2: x23 ] > HCONS: < h0 qeq h1 h6 qeq h4 h8 qeq h9 h15 qeq h13 h19 qeq h21 h25 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +307@0@-1@-1@-1@-1@-1@-1@-1@-1@(10587 in-situ-ques 0.000000 0 6 (10586 subj-head 0.000000 0 6 (10576 bare-np 0.000000 0 1 (10575 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10585 head-comp 0.000000 1 6 (10578 head-adj 0.000000 1 3 (10577 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (9 как_2 0.000000 2 3 ("как"))) (10584 decl-head-opt-subj 0.000000 3 6 (10583 head-comp 0.000000 3 6 (10579 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (10582 head-spec 0.000000 4 6 (10580 sg-acc-fem-suffix1 0.000000 4 5 (12 эт 0.000000 4 5 ("эту"))) (10581 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает"))) ("ADV" ("как"))) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_read_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h15 h13 qeq h11 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +307@1@-1@-1@-1@-1@-1@-1@-1@-1@(10609 in-situ-ques 0.000000 0 6 (10608 subj-head 0.000000 0 6 (10576 bare-np 0.000000 0 1 (10575 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10607 head-comp 0.000000 1 6 (10601 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (10606 adj-head 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (10605 decl-head-opt-subj 0.000000 3 6 (10604 head-comp 0.000000 3 6 (10602 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (10603 head-spec 0.000000 4 6 (10580 sg-acc-fem-suffix1 0.000000 4 5 (12 эт 0.000000 4 5 ("эту"))) (10581 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +307@2@-1@-1@-1@-1@-1@-1@-1@-1@(10600 subj-head 0.000000 0 6 (10589 bare-np 0.000000 0 1 (10588 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10599 head-comp 0.000000 1 6 (10590 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (10598 wh-ques 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (10597 decl-head-opt-subj 0.000000 3 6 (10596 ex-adj-first 0.000000 3 6 (10595 head-comp 0.000000 3 6 (10591 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (10594 head-spec 0.000000 4 6 (10592 sg-acc-fem-suffix1 0.000000 4 5 (12 эт 0.000000 4 5 ("эту"))) (10593 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +307@3@-1@-1@-1@-1@-1@-1@-1@-1@(10617 subj-head 0.000000 0 6 (10589 bare-np 0.000000 0 1 (10588 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10616 head-comp 0.000000 1 6 (10590 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (10615 wh-ques 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (10614 decl-head-opt-subj 0.000000 3 6 (10613 head-comp 0.000000 3 6 (10611 ex-adj-first 0.000000 3 4 (10610 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать")))) (10612 head-spec 0.000000 4 6 (10580 sg-acc-fem-suffix1 0.000000 4 5 (12 эт 0.000000 4 5 ("эту"))) (10581 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("V" ("читать")))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +308@0@-1@-1@-1@-1@-1@-1@-1@-1@(10873 in-situ-ques 0.000000 0 6 (10872 subj-head 0.000000 0 6 (10862 bare-np 0.000000 0 1 (10861 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10871 head-comp 0.000000 1 6 (10864 head-adj 0.000000 1 3 (10863 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (9 как_2 0.000000 2 3 ("как"))) (10870 decl-head-opt-subj 0.000000 3 6 (10869 head-comp 0.000000 3 6 (10865 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (10868 head-spec 0.000000 4 6 (10866 sg-acc-fem-suffix2 0.000000 4 5 (13 как_1 0.000000 4 5 ("какую"))) (10867 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает"))) ("ADV" ("как"))) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_read_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h15 h13 qeq h11 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +308@1@-1@-1@-1@-1@-1@-1@-1@-1@(10896 in-situ-ques 0.000000 0 6 (10895 subj-head 0.000000 0 6 (10862 bare-np 0.000000 0 1 (10861 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10894 head-comp 0.000000 1 6 (10887 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (10893 adj-head 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (10892 in-situ-ques 0.000000 3 6 (10891 decl-head-opt-subj 0.000000 3 6 (10890 head-comp 0.000000 3 6 (10888 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (10889 head-spec 0.000000 4 6 (10866 sg-acc-fem-suffix2 0.000000 4 5 (13 как_1 0.000000 4 5 ("какую"))) (10867 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +308@2@-1@-1@-1@-1@-1@-1@-1@-1@(10886 subj-head 0.000000 0 6 (10875 bare-np 0.000000 0 1 (10874 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10885 head-comp 0.000000 1 6 (10876 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (10884 wh-ques 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (10883 decl-head-opt-subj 0.000000 3 6 (10882 ex-adj-first 0.000000 3 6 (10881 head-comp 0.000000 3 6 (10877 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (10880 head-spec 0.000000 4 6 (10878 sg-acc-fem-suffix2 0.000000 4 5 (13 как_1 0.000000 4 5 ("какую"))) (10879 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +308@3@-1@-1@-1@-1@-1@-1@-1@-1@(10912 subj-head 0.000000 0 6 (10875 bare-np 0.000000 0 1 (10874 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10911 head-comp 0.000000 1 6 (10876 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (10910 wh-ques 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (10909 decl-head-opt-subj 0.000000 3 6 (10908 head-comp 0.000000 3 6 (10906 ex-adj-first 0.000000 3 4 (10905 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать")))) (10907 head-spec 0.000000 4 6 (10866 sg-acc-fem-suffix2 0.000000 4 5 (13 как_1 0.000000 4 5 ("какую"))) (10867 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("V" ("читать")))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +308@4@-1@-1@-1@-1@-1@-1@-1@-1@(10904 in-situ-ques 0.000000 0 6 (10903 subj-head 0.000000 0 6 (10862 bare-np 0.000000 0 1 (10861 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (10902 head-comp 0.000000 1 6 (10887 3sg-pres-suffix1 0.000000 1 2 (8 спрашива 0.000000 1 2 ("спрашивает"))) (10901 adj-head 0.000000 2 6 (9 как_2 0.000000 2 3 ("как")) (10900 decl-head-opt-subj 0.000000 3 6 (10899 head-comp 0.000000 3 6 (10897 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (10898 head-spec 0.000000 4 6 (10866 sg-acc-fem-suffix2 0.000000 4 5 (13 как_1 0.000000 4 5 ("какую"))) (10867 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("какую"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +309@0@-1@-1@-1@-1@-1@-1@-1@-1@(2900 in-situ-ques 0.000000 0 5 (2899 subj-head 0.000000 0 5 (2891 bare-np 0.000000 0 1 (2890 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2898 head-comp 0.000000 1 5 (2893 head-adj 0.000000 1 3 (2892 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (8 как_2 0.000000 2 3 ("как"))) (2897 wh-ques 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2896 decl-head-opt-subj 0.000000 4 5 (2895 ex-comp 0.000000 4 5 (2894 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает"))) ("ADV" ("как"))) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("читать")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_thing_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_read_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h20 h13 qeq h11 h18 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +309@1@-1@-1@-1@-1@-1@-1@-1@-1@(2916 subj-head 0.000000 0 5 (2908 bare-np 0.000000 0 1 (2907 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2915 head-comp 0.000000 1 5 (2909 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (2914 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (2913 decl-head-opt-subj 0.000000 3 5 (2912 ex-adj-first 0.000000 3 5 (2911 comp-head 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2910 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("VP" ("NP" ("что")) ("V" ("V" ("читать")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +309@2@-1@-1@-1@-1@-1@-1@-1@-1@(2938 in-situ-ques 0.000000 0 5 (2937 subj-head 0.000000 0 5 (2891 bare-np 0.000000 0 1 (2890 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2936 head-comp 0.000000 1 5 (2917 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (2935 adj-head 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (2934 wh-ques 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2933 decl-head-opt-subj 0.000000 4 5 (2932 ex-comp 0.000000 4 5 (2894 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("читать"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +309@3@-1@-1@-1@-1@-1@-1@-1@-1@(2906 in-situ-ques 0.000000 0 5 (2905 subj-head 0.000000 0 5 (2891 bare-np 0.000000 0 1 (2890 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2904 head-comp 0.000000 1 5 (2893 head-adj 0.000000 1 3 (2892 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (8 как_2 0.000000 2 3 ("как"))) (2903 decl-head-opt-subj 0.000000 3 5 (2902 comp-head 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2901 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает"))) ("ADV" ("как"))) ("S" ("VP" ("NP" ("что")) ("V" ("V" ("читать"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_thing_n_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_read_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h20 h13 qeq h11 h18 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +309@4@-1@-1@-1@-1@-1@-1@-1@-1@(2931 subj-head 0.000000 0 5 (2908 bare-np 0.000000 0 1 (2907 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2930 head-comp 0.000000 1 5 (2909 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (2929 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (2928 decl-head-opt-subj 0.000000 3 5 (2927 comp-head 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2926 ex-adj-first 0.000000 4 5 (2925 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("NP" ("что")) ("V" ("V" ("V" ("читать")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +309@5@-1@-1@-1@-1@-1@-1@-1@-1@(2953 subj-head 0.000000 0 5 (2908 bare-np 0.000000 0 1 (2907 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2951 head-comp 0.000000 1 5 (2909 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (2949 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (2943 wh-ques 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2942 decl-head-opt-subj 0.000000 4 5 (2941 ex-comp 0.000000 4 5 (2940 ex-adj-last 0.000000 4 5 (2939 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("V" ("читать"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +309@6@-1@-1@-1@-1@-1@-1@-1@-1@(2924 in-situ-ques 0.000000 0 5 (2923 subj-head 0.000000 0 5 (2891 bare-np 0.000000 0 1 (2890 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2922 head-comp 0.000000 1 5 (2917 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (2921 adj-head 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (2920 decl-head-opt-subj 0.000000 3 5 (2919 comp-head 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2918 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("NP" ("что")) ("V" ("V" ("читать")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +309@7@-1@-1@-1@-1@-1@-1@-1@-1@(2954 subj-head 0.000000 0 5 (2908 bare-np 0.000000 0 1 (2907 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (2952 head-comp 0.000000 1 5 (2909 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (2950 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (2948 wh-ques 0.000000 3 5 (10 что_1 0.000000 3 4 ("что")) (2947 decl-head-opt-subj 0.000000 4 5 (2946 ex-adj-last 0.000000 4 5 (2945 ex-comp 0.000000 4 5 (2944 nonfin-suffix 0.000000 4 5 (12 чита 0.000000 4 5 ("читать"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("NP" ("что")) ("S" ("VP" ("VP" ("V" ("V" ("читать"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x22 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +310@0@-1@-1@-1@-1@-1@-1@-1@-1@(12530 in-situ-ques 0.000000 0 5 (12529 subj-head 0.000000 0 5 (12522 bare-np 0.000000 0 1 (12521 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12528 head-comp 0.000000 1 5 (12524 head-adj 0.000000 1 3 (12523 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (8 как_2 0.000000 2 3 ("как"))) (12527 decl-head-opt-subj 0.000000 3 5 (12526 head-comp 0.000000 3 5 (12525 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать"))) (11 что_1 0.000000 4 5 ("что")))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает"))) ("ADV" ("как"))) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("что")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_read_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h19 ARG0: x18 ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x18 RSTR: h21 BODY: h22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h15 h13 qeq h11 h21 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +310@1@-1@-1@-1@-1@-1@-1@-1@-1@(12549 in-situ-ques 0.000000 0 5 (12548 subj-head 0.000000 0 5 (12522 bare-np 0.000000 0 1 (12521 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12547 head-comp 0.000000 1 5 (12541 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (12546 adj-head 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (12545 in-situ-ques 0.000000 3 5 (12544 decl-head-opt-subj 0.000000 3 5 (12543 head-comp 0.000000 3 5 (12542 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать"))) (11 что_1 0.000000 4 5 ("что")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("что")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h19 ARG0: x18 ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x18 RSTR: h21 BODY: h22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h21 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +310@2@-1@-1@-1@-1@-1@-1@-1@-1@(12540 subj-head 0.000000 0 5 (12532 bare-np 0.000000 0 1 (12531 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12539 head-comp 0.000000 1 5 (12533 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (12538 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (12537 decl-head-opt-subj 0.000000 3 5 (12536 ex-adj-first 0.000000 3 5 (12535 head-comp 0.000000 3 5 (12534 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать"))) (11 что_1 0.000000 4 5 ("что"))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("VP" ("V" ("V" ("читать"))) ("NP" ("что"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h19 ARG0: x18 ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x18 RSTR: h21 BODY: h22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h21 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +310@3@-1@-1@-1@-1@-1@-1@-1@-1@(12563 subj-head 0.000000 0 5 (12532 bare-np 0.000000 0 1 (12531 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12562 head-comp 0.000000 1 5 (12533 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (12561 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (12560 decl-head-opt-subj 0.000000 3 5 (12559 head-comp 0.000000 3 5 (12558 ex-adj-first 0.000000 3 4 (12557 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать")))) (11 что_1 0.000000 4 5 ("что")))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("V" ("читать")))) ("NP" ("что")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h19 ARG0: x18 ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x18 RSTR: h21 BODY: h22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h21 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +310@4@-1@-1@-1@-1@-1@-1@-1@-1@(12556 in-situ-ques 0.000000 0 5 (12555 subj-head 0.000000 0 5 (12522 bare-np 0.000000 0 1 (12521 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12554 head-comp 0.000000 1 5 (12541 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (12553 adj-head 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (12552 decl-head-opt-subj 0.000000 3 5 (12551 head-comp 0.000000 3 5 (12550 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать"))) (11 что_1 0.000000 4 5 ("что"))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("что"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h19 ARG0: x18 ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x18 RSTR: h21 BODY: h22 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h21 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +311@0@-1@-1@-1@-1@-1@-1@-1@-1@(12024 in-situ-ques 0.000000 0 5 (12023 subj-head 0.000000 0 5 (12014 bare-np 0.000000 0 1 (12013 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12022 head-comp 0.000000 1 5 (12016 head-adj 0.000000 1 3 (12015 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (8 как_2 0.000000 2 3 ("как"))) (12021 decl-head-opt-subj 0.000000 3 5 (12020 head-comp 0.000000 3 5 (12017 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать"))) (12019 bare-np 0.000000 4 5 (12018 sg-acc2-suffix1 0.000000 4 5 (11 книг 0.000000 4 5 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("спрашивает"))) ("ADV" ("как"))) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_read_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h15 h13 qeq h11 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +311@1@-1@-1@-1@-1@-1@-1@-1@-1@(12045 in-situ-ques 0.000000 0 5 (12044 subj-head 0.000000 0 5 (12014 bare-np 0.000000 0 1 (12013 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12043 head-comp 0.000000 1 5 (12037 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (12042 adj-head 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (12041 decl-head-opt-subj 0.000000 3 5 (12040 head-comp 0.000000 3 5 (12038 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать"))) (12039 bare-np 0.000000 4 5 (12018 sg-acc2-suffix1 0.000000 4 5 (11 книг 0.000000 4 5 ("книгу"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +311@2@-1@-1@-1@-1@-1@-1@-1@-1@(12053 subj-head 0.000000 0 5 (12026 bare-np 0.000000 0 1 (12025 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12052 head-comp 0.000000 1 5 (12027 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (12051 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (12050 decl-head-opt-subj 0.000000 3 5 (12049 head-comp 0.000000 3 5 (12047 ex-adj-first 0.000000 3 4 (12046 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать")))) (12048 bare-np 0.000000 4 5 (12018 sg-acc2-suffix1 0.000000 4 5 (11 книг 0.000000 4 5 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("V" ("читать")))) ("NP" ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +311@3@-1@-1@-1@-1@-1@-1@-1@-1@(12036 subj-head 0.000000 0 5 (12026 bare-np 0.000000 0 1 (12025 nom1-lex 0.000000 0 1 (6 Иван 0.000000 0 1 ("Иван")))) (12035 head-comp 0.000000 1 5 (12027 3sg-pres-suffix1 0.000000 1 2 (7 спрашива 0.000000 1 2 ("спрашивает"))) (12034 wh-ques 0.000000 2 5 (8 как_2 0.000000 2 3 ("как")) (12033 decl-head-opt-subj 0.000000 3 5 (12032 ex-adj-first 0.000000 3 5 (12031 head-comp 0.000000 3 5 (12028 nonfin-suffix 0.000000 3 4 (10 чита 0.000000 3 4 ("читать"))) (12030 bare-np 0.000000 4 5 (12029 sg-acc2-suffix1 0.000000 4 5 (11 книг 0.000000 4 5 ("книгу"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("спрашивает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("VP" ("V" ("V" ("читать"))) ("NP" ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +312@0@-1@-1@-1@-1@-1@-1@-1@-1@(4579 in-situ-ques 0.000000 0 6 (4578 subj-head 0.000000 0 6 (4568 bare-np 0.000000 0 1 (4567 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (4577 head-comp 0.000000 1 6 (4570 head-adj 0.000000 1 3 (4569 3sg-pres-suffix1 0.000000 1 2 (8 дума 0.000000 1 2 ("думает"))) (9 как_2 0.000000 2 3 ("как"))) (4576 decl-head-opt-subj 0.000000 3 6 (4575 head-comp 0.000000 3 6 (4571 nonfin-suffix 0.000000 3 4 (11 чита 0.000000 3 4 ("читать"))) (4574 head-spec 0.000000 4 6 (4572 sg-acc-fem-suffix1 0.000000 4 5 (12 эт 0.000000 4 5 ("эту"))) (4573 sg-acc2-suffix1 0.000000 5 6 (13 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("думает"))) ("ADV" ("как"))) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_read_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h15 h13 qeq h11 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +313@0@-1@-1@-1@-1@-1@-1@-1@-1@(14271 in-situ-ques 0.000000 0 6 (14270 subj-head 0.000000 0 6 (14260 bare-np 0.000000 0 1 (14259 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (14269 head-comp 0.000000 1 6 (14262 head-adj 0.000000 1 3 (14261 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (10 как_2 0.000000 2 3 ("как"))) (14268 decl-head-opt-subj 0.000000 3 6 (14267 head-comp 0.000000 3 6 (14263 nonfin-suffix 0.000000 3 4 (12 чита 0.000000 3 4 ("читать"))) (14266 head-spec 0.000000 4 6 (14264 sg-acc-fem-suffix1 0.000000 4 5 (13 эт 0.000000 4 5 ("эту"))) (14265 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("знает"))) ("ADV" ("как"))) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_read_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h15 h13 qeq h11 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +313@1@-1@-1@-1@-1@-1@-1@-1@-1@(14289 subj-head 0.000000 0 6 (14278 bare-np 0.000000 0 1 (14277 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (14288 head-comp 0.000000 1 6 (14279 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (14287 wh-ques 0.000000 2 6 (10 как_2 0.000000 2 3 ("как")) (14286 decl-head-opt-subj 0.000000 3 6 (14285 ex-adj-first 0.000000 3 6 (14284 head-comp 0.000000 3 6 (14280 nonfin-suffix 0.000000 3 4 (12 чита 0.000000 3 4 ("читать"))) (14283 head-spec 0.000000 4 6 (14281 sg-acc-fem-suffix1 0.000000 4 5 (13 эт 0.000000 4 5 ("эту"))) (14282 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +313@2@-1@-1@-1@-1@-1@-1@-1@-1@(14306 subj-head 0.000000 0 6 (14278 bare-np 0.000000 0 1 (14277 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (14305 head-comp 0.000000 1 6 (14279 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (14304 wh-ques 0.000000 2 6 (10 как_2 0.000000 2 3 ("как")) (14303 decl-head-opt-subj 0.000000 3 6 (14302 head-comp 0.000000 3 6 (14300 ex-adj-first 0.000000 3 4 (14299 nonfin-suffix 0.000000 3 4 (12 чита 0.000000 3 4 ("читать")))) (14301 head-spec 0.000000 4 6 (14264 sg-acc-fem-suffix1 0.000000 4 5 (13 эт 0.000000 4 5 ("эту"))) (14265 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("V" ("читать")))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +313@3@-1@-1@-1@-1@-1@-1@-1@-1@(14276 in-situ-ques 0.000000 0 6 (14275 subj-head 0.000000 0 6 (14260 bare-np 0.000000 0 1 (14259 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (14274 head-comp 0.000000 1 6 (14273 head-adj 0.000000 1 3 (14272 3sg-pres-suffix1 0.000000 1 2 (8 зна_1 0.000000 1 2 ("знает"))) (10 как_2 0.000000 2 3 ("как"))) (14268 decl-head-opt-subj 0.000000 3 6 (14267 head-comp 0.000000 3 6 (14263 nonfin-suffix 0.000000 3 4 (12 чита 0.000000 3 4 ("читать"))) (14266 head-spec 0.000000 4 6 (14264 sg-acc-fem-suffix1 0.000000 4 5 (13 эт 0.000000 4 5 ("эту"))) (14265 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу")))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("знает"))) ("ADV" ("как"))) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_read_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h15 h13 qeq h11 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +313@4@-1@-1@-1@-1@-1@-1@-1@-1@(14298 in-situ-ques 0.000000 0 6 (14297 subj-head 0.000000 0 6 (14260 bare-np 0.000000 0 1 (14259 nom1-lex 0.000000 0 1 (7 Иван 0.000000 0 1 ("Иван")))) (14296 head-comp 0.000000 1 6 (14290 3sg-pres-suffix1 0.000000 1 2 (9 зна_2 0.000000 1 2 ("знает"))) (14295 adj-head 0.000000 2 6 (10 как_2 0.000000 2 3 ("как")) (14294 decl-head-opt-subj 0.000000 3 6 (14293 head-comp 0.000000 3 6 (14291 nonfin-suffix 0.000000 3 4 (12 чита 0.000000 3 4 ("читать"))) (14292 head-spec 0.000000 4 6 (14264 sg-acc-fem-suffix1 0.000000 4 5 (13 эт 0.000000 4 5 ("эту"))) (14265 sg-acc2-suffix1 0.000000 5 6 (14 книг 0.000000 5 6 ("книгу"))))))))))@@("S" ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("знает"))) ("S" ("ADV" ("как")) ("S" ("VP" ("V" ("V" ("читать"))) ("NP" ("D" ("D" ("эту"))) ("N" ("N" ("книгу"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h5 BODY: h6 ] [ "_Ivan_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "manner_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_manner_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_read_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "_this_q_rel"<-1:-1> LBL: h19 ARG0: x18 RSTR: h20 BODY: h21 ] [ "_book_n_rel"<-1:-1> LBL: h22 ARG0: x18 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h9 h15 qeq h13 h20 qeq h22 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.2)) +316@0@-1@-1@-1@-1@-1@-1@-1@-1@(1279 wh-ques 0.000000 0 6 (1270 adv1-top-coord 0.000000 0 3 (7 где 0.000000 0 1 ("Где")) (1269 adv1-bottom-coord 0.000000 1 3 (8 и 0.000000 1 2 ("и")) (9 когда 0.000000 2 3 ("когда")))) (1278 subj-head 0.000000 3 6 (1272 bare-np 0.000000 3 4 (1271 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван")))) (1277 head-comp 0.000000 4 6 (1274 ex-adj-first 0.000000 4 5 (1273 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил")))) (1276 bare-np 0.000000 5 6 (1275 sg-acc2-suffix1 0.000000 5 6 (12 книг 0.000000 5 6 ("книгу")))))))@@("S" ("ADV-T" ("ADV" ("Где")) ("ADV-B" ("CONJ" ("и")) ("ADV" ("когда")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("V" ("купил")))) ("NP" ("N" ("N" ("книгу")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_and_coord_rel"<-1:-1> LBL: h10 L-HNDL: h1 R-HNDL: h11 C-ARG: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] L-INDEX: i13 R-INDEX: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e15 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h22 BODY: h23 ] [ "_Ivan_n_rel"<-1:-1> LBL: h24 ARG0: x3 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x25 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h26 ARG0: x25 RSTR: h27 BODY: h28 ] [ "_book_n_rel"<-1:-1> LBL: h29 ARG0: x25 ] > HCONS: < h0 qeq h1 h8 qeq h6 h19 qeq h17 h22 qeq h24 h27 qeq h29 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +316@1@-1@-1@-1@-1@-1@-1@-1@-1@(1286 wh-ques 0.000000 0 6 (1270 adv1-top-coord 0.000000 0 3 (7 где 0.000000 0 1 ("Где")) (1269 adv1-bottom-coord 0.000000 1 3 (8 и 0.000000 1 2 ("и")) (9 когда 0.000000 2 3 ("когда")))) (1285 subj-head 0.000000 3 6 (1272 bare-np 0.000000 3 4 (1271 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван")))) (1284 ex-adj-first 0.000000 4 6 (1283 head-comp 0.000000 4 6 (1280 sg-past-masc-suffix3 0.000000 4 5 (11 купи 0.000000 4 5 ("купил"))) (1282 bare-np 0.000000 5 6 (1281 sg-acc2-suffix1 0.000000 5 6 (12 книг 0.000000 5 6 ("книгу"))))))))@@("S" ("ADV-T" ("ADV" ("Где")) ("ADV-B" ("CONJ" ("и")) ("ADV" ("когда")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("VP" ("V" ("V" ("купил"))) ("NP" ("N" ("N" ("книгу"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_and_coord_rel"<-1:-1> LBL: h10 L-HNDL: h1 R-HNDL: h11 C-ARG: e12 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] L-INDEX: i13 R-INDEX: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e15 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_time_a_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] [ "exist_q_rel"<-1:-1> LBL: h21 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] RSTR: h22 BODY: h23 ] [ "_Ivan_n_rel"<-1:-1> LBL: h24 ARG0: x3 ] [ "_buy_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x25 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ] [ "exist_q_rel"<-1:-1> LBL: h26 ARG0: x25 RSTR: h27 BODY: h28 ] [ "_book_n_rel"<-1:-1> LBL: h29 ARG0: x25 ] > HCONS: < h0 qeq h1 h8 qeq h6 h19 qeq h17 h22 qeq h24 h27 qeq h29 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +317@0@-1@-1@-1@-1@-1@-1@-1@-1@(547 wh-ques 0.000000 0 5 (541 np1-same-same-same-any-any-pl-top-coord 0.000000 0 3 (6 кого 0.000000 0 1 ("Кого")) (540 np1-bottom-coord 0.000000 1 3 (7 и 0.000000 1 2 ("и")) (8 что_1 0.000000 2 3 ("что")))) (546 subj-head 0.000000 3 5 (543 bare-np 0.000000 3 4 (542 nom1-lex 0.000000 3 4 (10 Иван 0.000000 3 4 ("Иван")))) (545 ex-comp 0.000000 4 5 (544 3sg-pres-suffix2 0.000000 4 5 (13 вид_1 0.000000 4 5 ("видит"))))))@@("S" ("NP-T" ("NP" ("Кого")) ("NP-B" ("CONJ" ("и")) ("NP" ("что")))) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: pl PNG.GEND: gender ] RSTR: h6 BODY: h7 ] [ "_person_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_and_coord_rel"<-1:-1> LBL: h6 L-HNDL: h13 R-HNDL: h14 C-ARG: x5 L-INDEX: x9 R-INDEX: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "_thing_n_rel"<-1:-1> LBL: h16 ARG0: x15 ] [ "which_q_rel"<-1:-1> LBL: h17 ARG0: x15 RSTR: h18 BODY: h19 ] [ "exist_q_rel"<-1:-1> LBL: h20 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h21 BODY: h22 ] [ "_Ivan_n_rel"<-1:-1> LBL: h23 ARG0: x3 ] [ "_see_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h11 qeq h8 h18 qeq h16 h21 qeq h23 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +321@0@-1@-1@-1@-1@-1@-1@-1@-1@(1826 s1-top-coord 0.000000 0 7 (1818 wh-ques 0.000000 0 3 (8 кого 0.000000 0 1 ("Кого")) (1817 subj-head 0.000000 1 3 (1814 bare-np 0.000000 1 2 (1813 nom1-lex 0.000000 1 2 (9 Иван 0.000000 1 2 ("Иван")))) (1816 ex-comp 0.000000 2 3 (1815 3sg-pres-suffix2 0.000000 2 3 (12 вид_1 0.000000 2 3 ("видит")))))) (1825 s1-bottom-coord 0.000000 3 7 (13 и 0.000000 3 4 ("и")) (1824 wh-ques 0.000000 4 7 (14 что_1 0.000000 4 5 ("что")) (1823 subj-head 0.000000 5 7 (1820 bare-np 0.000000 5 6 (1819 nom1-lex 0.000000 5 6 (16 Иван 0.000000 5 6 ("Иван")))) (1822 ex-comp 0.000000 6 7 (1821 3sg-pres-suffix2 0.000000 6 7 (17 слыш_1 0.000000 6 7 ("слышит"))))))))@@("S-T" ("S" ("NP" ("Кого")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("видит")))))) ("S-B" ("CONJ" ("и")) ("S" ("NP" ("что")) ("S" ("NP" ("N" ("N" ("Иван")))) ("VP" ("V" ("V" ("слышит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h11 BODY: h12 ] [ "_Ivan_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_see_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x5 ] [ "_and_coord_rel"<-1:-1> LBL: h1 L-HNDL: h14 R-HNDL: h16 C-ARG: e2 L-INDEX: e15 R-INDEX: e17 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ] [ "_thing_n_rel"<-1:-1> LBL: h18 ARG0: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x19 RSTR: h21 BODY: h22 ] [ "exist_q_rel"<-1:-1> LBL: h23 ARG0: x24 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] RSTR: h25 BODY: h26 ] [ "_Ivan_n_rel"<-1:-1> LBL: h27 ARG0: x24 ] [ "_hear_v_rel"<-1:-1> LBL: h28 ARG0: e17 ARG1: x24 ARG2: x19 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h13 h21 qeq h18 h25 qeq h27 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +324@0@-1@-1@-1@-1@-1@-1@-1@-1@(2989 s1-top-coord 0.000000 0 7 (2981 wh-ques 0.000000 0 3 (8 кого 0.000000 0 1 ("Кого")) (2980 head-subj 0.000000 1 3 (2977 ex-comp 0.000000 1 2 (2976 3sg-pres-suffix2 0.000000 1 2 (11 вид_1 0.000000 1 2 ("видит")))) (2979 bare-np 0.000000 2 3 (2978 nom1-lex 0.000000 2 3 (12 Иван 0.000000 2 3 ("Иван")))))) (2988 s1-bottom-coord 0.000000 3 7 (13 и 0.000000 3 4 ("и")) (2987 wh-ques 0.000000 4 7 (14 что_1 0.000000 4 5 ("что")) (2986 head-subj 0.000000 5 7 (2983 ex-comp 0.000000 5 6 (2982 sg-past-fem-suffix2 0.000000 5 6 (16 слыш_1 0.000000 5 6 ("слышала")))) (2985 bare-np 0.000000 6 7 (2984 sg-nom2-suffix1 0.000000 6 7 (19 Маш 0.000000 6 7 ("Маша"))))))))@@("S-T" ("S" ("NP" ("Кого")) ("S" ("VP" ("V" ("V" ("видит")))) ("NP" ("N" ("N" ("Иван")))))) ("S-B" ("CONJ" ("и")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("слышала")))) ("NP" ("N" ("N" ("Маша"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_and_coord_rel"<-1:-1> LBL: h1 L-HNDL: h9 R-HNDL: h16 C-ARG: e2 L-INDEX: e10 R-INDEX: e17 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ] [ "_thing_n_rel"<-1:-1> LBL: h18 ARG0: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x19 RSTR: h21 BODY: h22 ] [ "_hear_v_rel"<-1:-1> LBL: h23 ARG0: e17 ARG1: x24 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ARG2: x19 ] [ "exist_q_rel"<-1:-1> LBL: h25 ARG0: x24 RSTR: h26 BODY: h27 ] [ "_Masha_n_rel"<-1:-1> LBL: h28 ARG0: x24 ] > HCONS: < h0 qeq h1 h7 qeq h4 h13 qeq h15 h21 qeq h18 h26 qeq h28 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +325@0@-1@-1@-1@-1@-1@-1@-1@-1@(1876 s1-top-coord 0.000000 0 6 (1870 wh-ques 0.000000 0 3 (7 кого 0.000000 0 1 ("Кого")) (1869 head-subj 0.000000 1 3 (1866 ex-comp 0.000000 1 2 (1865 3sg-pres-suffix2 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видит")))) (1868 bare-np 0.000000 2 3 (1867 nom1-lex 0.000000 2 3 (11 Иван 0.000000 2 3 ("Иван")))))) (1875 s1-bottom-coord 0.000000 3 6 (12 и 0.000000 3 4 ("и")) (1874 wh-ques 0.000000 4 6 (13 что_1 0.000000 4 5 ("что")) (1873 decl-head-opt-subj 0.000000 5 6 (1872 ex-comp 0.000000 5 6 (1871 3sg-pres-suffix2 0.000000 5 6 (15 слыш_1 0.000000 5 6 ("слышит"))))))))@@("S-T" ("S" ("NP" ("Кого")) ("S" ("VP" ("V" ("V" ("видит")))) ("NP" ("N" ("N" ("Иван")))))) ("S-B" ("CONJ" ("и")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("слышит"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_and_coord_rel"<-1:-1> LBL: h1 L-HNDL: h9 R-HNDL: h16 C-ARG: e2 L-INDEX: e10 R-INDEX: e17 [ e SF: ques E.TENSE: present E.ASPECT: aspect E.MOOD: mood ] ] [ "_thing_n_rel"<-1:-1> LBL: h18 ARG0: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x19 RSTR: h21 BODY: h22 ] [ "_hear_v_rel"<-1:-1> LBL: h23 ARG0: e17 ARG1: x24 [ x SPECI: bool COG-ST: in-foc PNG.PER: 3rd PNG.NUM: sg PNG.GEND: gender ] ARG2: x19 ] > HCONS: < h0 qeq h1 h7 qeq h4 h13 qeq h15 h21 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +326@0@-1@-1@-1@-1@-1@-1@-1@-1@(1876 s1-top-coord 0.000000 0 6 (1870 wh-ques 0.000000 0 3 (7 кого 0.000000 0 1 ("Кого")) (1869 head-subj 0.000000 1 3 (1866 ex-comp 0.000000 1 2 (1865 sg-past-masc-suffix1 0.000000 1 2 (10 вид_1 0.000000 1 2 ("видел")))) (1868 bare-np 0.000000 2 3 (1867 nom1-lex 0.000000 2 3 (11 Иван 0.000000 2 3 ("Иван")))))) (1875 s1-bottom-coord 0.000000 3 6 (12 и 0.000000 3 4 ("и")) (1874 wh-ques 0.000000 4 6 (13 что_1 0.000000 4 5 ("что")) (1873 decl-head-opt-subj 0.000000 5 6 (1872 ex-comp 0.000000 5 6 (1871 sg-past-fem-suffix2 0.000000 5 6 (15 слыш_1 0.000000 5 6 ("слышала"))))))))@@("S-T" ("S" ("NP" ("Кого")) ("S" ("VP" ("V" ("V" ("видел")))) ("NP" ("N" ("N" ("Иван")))))) ("S-B" ("CONJ" ("и")) ("S" ("NP" ("что")) ("S" ("VP" ("V" ("V" ("слышала"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_see_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: sg PNG.GEND: masc ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x11 RSTR: h13 BODY: h14 ] [ "_Ivan_n_rel"<-1:-1> LBL: h15 ARG0: x11 ] [ "_and_coord_rel"<-1:-1> LBL: h1 L-HNDL: h9 R-HNDL: h16 C-ARG: e2 L-INDEX: e10 R-INDEX: e17 [ e SF: ques E.TENSE: past E.ASPECT: aspect E.MOOD: mood ] ] [ "_thing_n_rel"<-1:-1> LBL: h18 ARG0: x19 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h20 ARG0: x19 RSTR: h21 BODY: h22 ] [ "_hear_v_rel"<-1:-1> LBL: h23 ARG0: e17 ARG1: x24 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: sg PNG.GEND: fem ] ARG2: x19 ] > HCONS: < h0 qeq h1 h7 qeq h4 h13 qeq h15 h21 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh-dev-rus/run b/tests/regression/home/gold/wh-dev-rus/run new file mode 100644 index 000000000..305bead6e --- /dev/null +++ b/tests/regression/home/gold/wh-dev-rus/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@Russ@1754@-1@-1@60@66@38@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 17:09:52@26-aug-2020 17:11:41@-1@ diff --git a/tests/regression/home/gold/wh-dev-rus/tree b/tests/regression/home/gold/wh-dev-rus/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-eng-dev/decision b/tests/regression/home/gold/wh-eng-dev/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-eng-dev/edge b/tests/regression/home/gold/wh-eng-dev/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-eng-dev/item b/tests/regression/home/gold/wh-eng-dev/item new file mode 100644 index 000000000..7de8facb0 --- /dev/null +++ b/tests/regression/home/gold/wh-eng-dev/item @@ -0,0 +1,68 @@ +1@@@@1@@the cats chase the dogs@@@@1@5@@@ +2@@@@1@@the dogs sleep@@@@1@3@@@ +3@@@@1@@@@@@1@0@@@ +4@@@@1@@do the cats chase the dogs?@@@@1@6@@@ +5@@@@1@@do the dogs sleep?@@@@1@4@@@ +6@@@@1@@Do I think that the cats chase the dogs?@@@@1@9@@@ +7@@@@1@@@@@@1@0@@@ +8@@@@1@@who sleeps?@@@@1@2@@@ +9@@@@1@@sleep who?@@@@0@2@@@ +10@@@@1@@@@@@1@0@@@ +11@@@@1@@who chases the dogs?@@@@1@4@@@ +12@@@@1@@who do chase the dog?@@@@0@5@@@ +13@@@@1@@@@@@1@0@@@ +14@@@@1@@what do the dogs chase?@@@@1@5@@@ +15@@@@1@@what the dogs chase?@@@@0@4@@@ +16@@@@1@@@@@@1@0@@@ +17@@@@1@@where do the dogs sleep?@@@@1@5@@@ +18@@@@1@@where the dogs sleep?@@@@0@4@@@ +19@@@@1@@@@@@1@0@@@ +20@@@@1@@where do the dogs chase the cats?@@@@1@7@@@ +21@@@@1@@the cats chase the dogs where?@@@@0@6@@@ +22@@@@1@@do the cats chase the dogs where?@@@@0@7@@@ +23@@@@1@@@@@@1@0@@@ +24@@@@1@@Who chases what?@@@@1@3@@@ +25@@@@1@@Who what chases?@@@@0@3@@@ +26@@@@1@@Who do chase what?@@@@0@4@@@ +27@@@@1@@Who what do chase?@@@@0@4@@@ +28@@@@1@@@@@@1@0@@@ +29@@@@1@@Who chases what where?@@@@1@4@@@ +30@@@@1@@Who what where chases?@@@@0@4@@@ +31@@@@1@@@@@@1@0@@@ +32@@@@1@@Which cat sleeps?@@@@1@3@@@ +33@@@@1@@Which sleeps cat?@@@@0@3@@@ +34@@@@1@@Which cat chases the dogs?@@@@1@5@@@ +35@@@@1@@@@@@1@0@@@ +36@@@@1@@Which dogs do the cats chase?@@@@1@6@@@ +37@@@@1@@Which do the cats chase dogs?@@@@0@6@@@ +38@@@@1@@Which dogs the cats chase@@@@0@5@@@ +39@@@@1@@@@@@1@0@@@ +40@@@@1@@In which house do the cats sleep?@@@@1@7@@@ +41@@@@1@@Which house do the cats sleep in?@@@@1@7@@@ +42@@@@1@@In which do the cats sleep house@@@@0@7@@@ +43@@@@1@@In which house the cats sleep?@@@@0@6@@@ +44@@@@1@@@@@@1@0@@@ +45@@@@1@@I think that the cats chase the dogs@@@@1@8@@@ +46@@@@1@@@@@@1@0@@@ +47@@@@1@@I wonder who sleeps@@@@1@4@@@ +48@@@@1@@I wonder who do sleep@@@@0@5@@@ +49@@@@1@@@@@@1@0@@@ +50@@@@1@@I wonder what the cats chase@@@@1@6@@@ +51@@@@1@@I wonder what do the cats chase@@@@0@7@@@ +52@@@@1@@@@@@1@0@@@ +53@@@@1@@Who do I think chases the dogs?@@@@1@7@@@ +54@@@@1@@Who I think the cats chase?@@@@0@6@@@ +55@@@@1@@Who I think sleeps?@@@@0@4@@@ +56@@@@1@@Who do I wonder chases the dogs?@@@@0@7@@@ +57@@@@1@@@@@@1@0@@@ +58@@@@1@@What do I think the cats chase?@@@@1@7@@@ +59@@@@1@@What do I wonder whether the cats chase?@@@@1@8@@@ +60@@@@1@@What do I wonder that the cats chase?@@@@0@8@@@ +61@@@@1@@@@@@1@0@@@ +62@@@@1@@@@@@1@0@@@ +63@@@@1@@Where do I think the cats sleep?@@@@1@7@@@ +64@@@@1@@In which house do I think the cats sleep?@@@@1@9@@@ +65@@@@1@@Where do I wonder whether the cats sleep?@@@@1@8@@@ +66@@@@1@@Which house do I think the cats sleep in?@@@@1@9@@@ +67@@@@1@@Which do I think the cats sleep in house?@@@@0@9@@@ +68@@@@1@@Which do I think the cats sleep house in?@@@@0@9@@@ diff --git a/tests/regression/home/gold/wh-eng-dev/item-set b/tests/regression/home/gold/wh-eng-dev/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-eng-dev/parse b/tests/regression/home/gold/wh-eng-dev/parse new file mode 100644 index 000000000..9112f6a24 --- /dev/null +++ b/tests/regression/home/gold/wh-eng-dev/parse @@ -0,0 +1,68 @@ +1@0@1@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:8>, 1, "cats", 0, "null") (3, 2, 3, <9:14>, 1, "chase", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "dogs", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:8>, 1, "cats", 0, "null") (3, 2, 3, <9:14>, 1, "chase", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "dogs", 0, "null")@1@-1@4@4@-1@5@-1@-1@-1@-1@-1@-1@37@24@-1@-1@-1@-1@-1@-1@-1@953@76@-1@-1@998428@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:8>, 1, "dogs", 0, "null") (3, 2, 3, <9:14>, 1, "sleep", 0, "null")@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:8>, 1, "dogs", 0, "null") (3, 2, 3, <9:14>, 1, "sleep", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@13@-1@-1@-1@-1@-1@-1@-1@1152@110@-1@-1@256944@-1@-1@-1@@@ +3@0@3@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +4@0@4@6@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "cats", 0, "null") (4, 3, 4, <12:17>, 1, "chase", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:26>, 1, "dogs", 0, "null")@6@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "cats", 0, "null") (4, 3, 4, <12:17>, 1, "chase", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:26>, 1, "dogs", 0, "null")@1@-1@8@8@-1@8@-1@-1@-1@-1@-1@-1@100@54@-1@-1@-1@-1@-1@-1@-1@1611@296@-1@-1@2412824@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "dogs", 0, "null") (4, 3, 4, <12:17>, 1, "sleep", 0, "null")@4@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "dogs", 0, "null") (4, 3, 4, <12:17>, 1, "sleep", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@62@41@-1@-1@-1@-1@-1@-1@-1@2082@430@-1@-1@1512544@-1@-1@-1@@@ +6@0@6@9@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:4>, 1, "I", 0, "null") (3, 2, 3, <5:10>, 1, "think", 0, "null") (4, 3, 4, <11:15>, 1, "that", 0, "null") (5, 4, 5, <16:19>, 1, "the", 0, "null") (6, 5, 6, <20:24>, 1, "cats", 0, "null") (7, 6, 7, <25:30>, 1, "chase", 0, "null") (8, 7, 8, <31:34>, 1, "the", 0, "null") (9, 8, 9, <35:39>, 1, "dogs", 0, "null")@9@(1, 0, 1, <0:2>, 1, "Do", 0, "null") (2, 1, 2, <3:4>, 1, "I", 0, "null") (3, 2, 3, <5:10>, 1, "think", 0, "null") (4, 3, 4, <11:15>, 1, "that", 0, "null") (5, 4, 5, <16:19>, 1, "the", 0, "null") (6, 5, 6, <20:24>, 1, "cats", 0, "null") (7, 6, 7, <25:30>, 1, "chase", 0, "null") (8, 7, 8, <31:34>, 1, "the", 0, "null") (9, 8, 9, <35:39>, 1, "dogs", 0, "null")@1@-1@17@17@-1@18@-1@-1@-1@-1@-1@-1@200@107@-1@-1@-1@-1@-1@-1@-1@3038@801@-1@-1@5149228@-1@-1@-1@@@ +7@0@7@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +8@0@8@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@3407@829@-1@-1@123768@-1@-1@-1@@@ +9@0@9@2@(1, 0, 1, <0:5>, 1, "sleep", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null")@2@(1, 0, 1, <0:5>, 1, "sleep", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null")@0@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@19@9@-1@-1@-1@-1@-1@-1@-1@3567@872@-1@-1@465248@-1@-1@-1@@@ +10@0@10@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +11@0@11@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "chases", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:19>, 1, "dogs", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "chases", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:19>, 1, "dogs", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@17@12@-1@-1@-1@-1@-1@-1@-1@3624@905@-1@-1@462072@-1@-1@-1@@@ +12@0@12@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:12>, 1, "chase", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:20>, 1, "dog", 0, "null")@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:12>, 1, "chase", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:20>, 1, "dog", 0, "null")@1@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@93@53@-1@-1@-1@-1@-1@-1@-1@4308@1092@-1@-1@2365152@-1@-1@-1@@@ +13@0@13@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +14@0@14@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:16>, 1, "dogs", 0, "null") (5, 4, 5, <17:22>, 1, "chase", 0, "null")@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:16>, 1, "dogs", 0, "null") (5, 4, 5, <17:22>, 1, "chase", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@69@38@-1@-1@-1@-1@-1@-1@-1@4757@1233@-1@-1@1618392@-1@-1@-1@@@ +15@0@15@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:13>, 1, "dogs", 0, "null") (4, 3, 4, <14:19>, 1, "chase", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:13>, 1, "dogs", 0, "null") (4, 3, 4, <14:19>, 1, "chase", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@14@-1@-1@-1@-1@-1@-1@-1@4984@1271@-1@-1@277324@-1@-1@-1@@@ +16@0@16@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +17@0@17@5@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "dogs", 0, "null") (5, 4, 5, <18:23>, 1, "sleep", 0, "null")@5@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "dogs", 0, "null") (5, 4, 5, <18:23>, 1, "sleep", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@65@44@-1@-1@-1@-1@-1@-1@-1@5281@1401@-1@-1@1613296@-1@-1@-1@@@ +18@0@18@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:14>, 1, "dogs", 0, "null") (4, 3, 4, <15:20>, 1, "sleep", 0, "null")@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:14>, 1, "dogs", 0, "null") (4, 3, 4, <15:20>, 1, "sleep", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@18@-1@-1@-1@-1@-1@-1@-1@5550@1444@-1@-1@304296@-1@-1@-1@@@ +19@0@19@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +20@0@20@7@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "dogs", 0, "null") (5, 4, 5, <18:23>, 1, "chase", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null") (7, 6, 7, <28:32>, 1, "cats", 0, "null")@7@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "dogs", 0, "null") (5, 4, 5, <18:23>, 1, "chase", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null") (7, 6, 7, <28:32>, 1, "cats", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@103@57@-1@-1@-1@-1@-1@-1@-1@5963@1633@-1@-1@2526416@-1@-1@-1@@@ +21@0@21@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:8>, 1, "cats", 0, "null") (3, 2, 3, <9:14>, 1, "chase", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "dogs", 0, "null") (6, 5, 6, <24:29>, 1, "where", 0, "null")@6@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:8>, 1, "cats", 0, "null") (3, 2, 3, <9:14>, 1, "chase", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "dogs", 0, "null") (6, 5, 6, <24:29>, 1, "where", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@85@39@-1@-1@-1@-1@-1@-1@-1@6476@1790@-1@-1@1935904@-1@-1@-1@@@ +22@0@22@7@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "cats", 0, "null") (4, 3, 4, <12:17>, 1, "chase", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:26>, 1, "dogs", 0, "null") (7, 6, 7, <27:32>, 1, "where", 0, "null")@7@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "cats", 0, "null") (4, 3, 4, <12:17>, 1, "chase", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:26>, 1, "dogs", 0, "null") (7, 6, 7, <27:32>, 1, "where", 0, "null")@0@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@166@75@-1@-1@-1@-1@-1@-1@-1@7043@2065@-1@-1@3696740@-1@-1@-1@@@ +23@0@23@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +24@0@24@3@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:10>, 1, "chases", 0, "null") (3, 2, 3, <11:15>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:10>, 1, "chases", 0, "null") (3, 2, 3, <11:15>, 1, "what", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@14@10@-1@-1@-1@-1@-1@-1@-1@7104@2092@-1@-1@368736@-1@-1@-1@@@ +25@0@25@3@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:15>, 1, "chases", 0, "null")@3@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:15>, 1, "chases", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@7228@2111@-1@-1@162868@-1@-1@-1@@@ +26@0@26@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:12>, 1, "chase", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:12>, 1, "chase", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null")@1@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@91@50@-1@-1@-1@-1@-1@-1@-1@7767@2286@-1@-1@2243944@-1@-1@-1@@@ +27@0@27@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:11>, 1, "do", 0, "null") (4, 3, 4, <12:17>, 1, "chase", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:11>, 1, "do", 0, "null") (4, 3, 4, <12:17>, 1, "chase", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@52@32@-1@-1@-1@-1@-1@-1@-1@8205@2403@-1@-1@1191612@-1@-1@-1@@@ +28@0@28@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +29@0@29@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:10>, 1, "chases", 0, "null") (3, 2, 3, <11:15>, 1, "what", 0, "null") (4, 3, 4, <16:21>, 1, "where", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:10>, 1, "chases", 0, "null") (3, 2, 3, <11:15>, 1, "what", 0, "null") (4, 3, 4, <16:21>, 1, "where", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@36@18@-1@-1@-1@-1@-1@-1@-1@8304@2461@-1@-1@790008@-1@-1@-1@@@ +30@0@30@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:14>, 1, "where", 0, "null") (4, 3, 4, <15:21>, 1, "chases", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:14>, 1, "where", 0, "null") (4, 3, 4, <15:21>, 1, "chases", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@6@-1@-1@-1@-1@-1@-1@-1@8485@2485@-1@-1@221008@-1@-1@-1@@@ +31@0@31@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +32@0@32@3@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@8@-1@-1@-1@-1@-1@-1@-1@8517@2504@-1@-1@254256@-1@-1@-1@@@ +33@0@33@3@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:12>, 1, "sleeps", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:12>, 1, "sleeps", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@6@-1@-1@-1@-1@-1@-1@-1@8670@2530@-1@-1@255632@-1@-1@-1@@@ +34@0@34@5@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "chases", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:25>, 1, "dogs", 0, "null")@5@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "chases", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:25>, 1, "dogs", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@22@15@-1@-1@-1@-1@-1@-1@-1@8744@2572@-1@-1@597600@-1@-1@-1@@@ +35@0@35@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +36@0@36@6@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:10>, 1, "dogs", 0, "null") (3, 2, 3, <11:13>, 1, "do", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "cats", 0, "null") (6, 5, 6, <23:28>, 1, "chase", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:10>, 1, "dogs", 0, "null") (3, 2, 3, <11:13>, 1, "do", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "cats", 0, "null") (6, 5, 6, <23:28>, 1, "chase", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@75@40@-1@-1@-1@-1@-1@-1@-1@9179@2716@-1@-1@1754640@-1@-1@-1@@@ +37@0@37@6@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "cats", 0, "null") (5, 4, 5, <18:23>, 1, "chase", 0, "null") (6, 5, 6, <24:28>, 1, "dogs", 0, "null")@6@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "cats", 0, "null") (5, 4, 5, <18:23>, 1, "chase", 0, "null") (6, 5, 6, <24:28>, 1, "dogs", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@138@51@-1@-1@-1@-1@-1@-1@-1@9876@2946@-1@-1@2747384@-1@-1@-1@@@ +38@0@38@5@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:10>, 1, "dogs", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:19>, 1, "cats", 0, "null") (5, 4, 5, <20:25>, 1, "chase", 0, "null")@5@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:10>, 1, "dogs", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:19>, 1, "cats", 0, "null") (5, 4, 5, <20:25>, 1, "chase", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@16@-1@-1@-1@-1@-1@-1@-1@9930@2984@-1@-1@386696@-1@-1@-1@@@ +39@0@39@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +40@0@40@7@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:17>, 1, "do", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:26>, 1, "cats", 0, "null") (7, 6, 7, <27:32>, 1, "sleep", 0, "null")@7@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:17>, 1, "do", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null") (6, 5, 6, <22:26>, 1, "cats", 0, "null") (7, 6, 7, <27:32>, 1, "sleep", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@82@52@-1@-1@-1@-1@-1@-1@-1@10294@3141@-1@-1@1959600@-1@-1@-1@@@ +41@0@41@7@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:14>, 1, "do", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "cats", 0, "null") (6, 5, 6, <24:29>, 1, "sleep", 0, "null") (7, 6, 7, <30:32>, 1, "in", 0, "null")@7@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:14>, 1, "do", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "cats", 0, "null") (6, 5, 6, <24:29>, 1, "sleep", 0, "null") (7, 6, 7, <30:32>, 1, "in", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@130@65@-1@-1@-1@-1@-1@-1@-1@11067@3384@-1@-1@2928336@-1@-1@-1@@@ +42@0@42@7@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:11>, 1, "do", 0, "null") (4, 3, 4, <12:15>, 1, "the", 0, "null") (5, 4, 5, <16:20>, 1, "cats", 0, "null") (6, 5, 6, <21:26>, 1, "sleep", 0, "null") (7, 6, 7, <27:32>, 1, "house", 0, "null")@7@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:11>, 1, "do", 0, "null") (4, 3, 4, <12:15>, 1, "the", 0, "null") (5, 4, 5, <16:20>, 1, "cats", 0, "null") (6, 5, 6, <21:26>, 1, "sleep", 0, "null") (7, 6, 7, <27:32>, 1, "house", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@162@62@-1@-1@-1@-1@-1@-1@-1@11950@3655@-1@-1@3251668@-1@-1@-1@@@ +43@0@43@6@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "cats", 0, "null") (6, 5, 6, <24:29>, 1, "sleep", 0, "null")@6@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:23>, 1, "cats", 0, "null") (6, 5, 6, <24:29>, 1, "sleep", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@21@24@-1@-1@-1@-1@-1@-1@-1@12049@3710@-1@-1@541664@-1@-1@-1@@@ +44@0@44@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +45@0@45@8@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:7>, 1, "think", 0, "null") (3, 2, 3, <8:12>, 1, "that", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:21>, 1, "cats", 0, "null") (6, 5, 6, <22:27>, 1, "chase", 0, "null") (7, 6, 7, <28:31>, 1, "the", 0, "null") (8, 7, 8, <32:36>, 1, "dogs", 0, "null")@8@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:7>, 1, "think", 0, "null") (3, 2, 3, <8:12>, 1, "that", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:21>, 1, "cats", 0, "null") (6, 5, 6, <22:27>, 1, "chase", 0, "null") (7, 6, 7, <28:31>, 1, "the", 0, "null") (8, 7, 8, <32:36>, 1, "dogs", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@125@69@-1@-1@-1@-1@-1@-1@-1@12498@3944@-1@-1@3309236@-1@-1@-1@@@ +46@0@46@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +47@0@47@4@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:19>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:19>, 1, "sleeps", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@37@38@-1@-1@-1@-1@-1@-1@-1@12967@4057@-1@-1@1142592@-1@-1@-1@@@ +48@0@48@5@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:15>, 1, "do", 0, "null") (5, 4, 5, <16:21>, 1, "sleep", 0, "null")@5@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:15>, 1, "do", 0, "null") (5, 4, 5, <16:21>, 1, "sleep", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@107@75@-1@-1@-1@-1@-1@-1@-1@13842@4295@-1@-1@2708160@-1@-1@-1@@@ +49@0@49@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +50@0@50@6@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "cats", 0, "null") (6, 5, 6, <23:28>, 1, "chase", 0, "null")@6@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "cats", 0, "null") (6, 5, 6, <23:28>, 1, "chase", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@42@36@-1@-1@-1@-1@-1@-1@-1@14023@4393@-1@-1@1291816@-1@-1@-1@@@ +51@0@51@7@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "do", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "chase", 0, "null")@7@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "do", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "chase", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@127@56@-1@-1@-1@-1@-1@-1@-1@14688@4623@-1@-1@2716056@-1@-1@-1@@@ +52@0@52@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +53@0@53@7@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:8>, 1, "I", 0, "null") (4, 3, 4, <9:14>, 1, "think", 0, "null") (5, 4, 5, <15:21>, 1, "chases", 0, "null") (6, 5, 6, <22:25>, 1, "the", 0, "null") (7, 6, 7, <26:30>, 1, "dogs", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:8>, 1, "I", 0, "null") (4, 3, 4, <9:14>, 1, "think", 0, "null") (5, 4, 5, <15:21>, 1, "chases", 0, "null") (6, 5, 6, <22:25>, 1, "the", 0, "null") (7, 6, 7, <26:30>, 1, "dogs", 0, "null")@1@-1@6@6@-1@7@-1@-1@-1@-1@-1@-1@146@62@-1@-1@-1@-1@-1@-1@-1@15287@4865@-1@-1@3363360@-1@-1@-1@@@ +54@0@54@6@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:5>, 1, "I", 0, "null") (3, 2, 3, <6:11>, 1, "think", 0, "null") (4, 3, 4, <12:15>, 1, "the", 0, "null") (5, 4, 5, <16:20>, 1, "cats", 0, "null") (6, 5, 6, <21:26>, 1, "chase", 0, "null")@6@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:5>, 1, "I", 0, "null") (3, 2, 3, <6:11>, 1, "think", 0, "null") (4, 3, 4, <12:15>, 1, "the", 0, "null") (5, 4, 5, <16:20>, 1, "cats", 0, "null") (6, 5, 6, <21:26>, 1, "chase", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@42@32@-1@-1@-1@-1@-1@-1@-1@15723@4971@-1@-1@1057272@-1@-1@-1@@@ +55@0@55@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:5>, 1, "I", 0, "null") (3, 2, 3, <6:11>, 1, "think", 0, "null") (4, 3, 4, <12:18>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:5>, 1, "I", 0, "null") (3, 2, 3, <6:11>, 1, "think", 0, "null") (4, 3, 4, <12:18>, 1, "sleeps", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@37@22@-1@-1@-1@-1@-1@-1@-1@15900@5044@-1@-1@835192@-1@-1@-1@@@ +56@0@56@7@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:8>, 1, "I", 0, "null") (4, 3, 4, <9:15>, 1, "wonder", 0, "null") (5, 4, 5, <16:22>, 1, "chases", 0, "null") (6, 5, 6, <23:26>, 1, "the", 0, "null") (7, 6, 7, <27:31>, 1, "dogs", 0, "null")@7@(1, 0, 1, <0:3>, 1, "Who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:8>, 1, "I", 0, "null") (4, 3, 4, <9:15>, 1, "wonder", 0, "null") (5, 4, 5, <16:22>, 1, "chases", 0, "null") (6, 5, 6, <23:26>, 1, "the", 0, "null") (7, 6, 7, <27:31>, 1, "dogs", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@116@44@-1@-1@-1@-1@-1@-1@-1@16349@5230@-1@-1@2318904@-1@-1@-1@@@ +57@0@57@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +58@0@58@7@(1, 0, 1, <0:4>, 1, "What", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:9>, 1, "I", 0, "null") (4, 3, 4, <10:15>, 1, "think", 0, "null") (5, 4, 5, <16:19>, 1, "the", 0, "null") (6, 5, 6, <20:24>, 1, "cats", 0, "null") (7, 6, 7, <25:30>, 1, "chase", 0, "null")@7@(1, 0, 1, <0:4>, 1, "What", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:9>, 1, "I", 0, "null") (4, 3, 4, <10:15>, 1, "think", 0, "null") (5, 4, 5, <16:19>, 1, "the", 0, "null") (6, 5, 6, <20:24>, 1, "cats", 0, "null") (7, 6, 7, <25:30>, 1, "chase", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@109@58@-1@-1@-1@-1@-1@-1@-1@16788@5430@-1@-1@2627480@-1@-1@-1@@@ +59@0@59@8@(1, 0, 1, <0:4>, 1, "What", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:9>, 1, "I", 0, "null") (4, 3, 4, <10:16>, 1, "wonder", 0, "null") (5, 4, 5, <17:24>, 1, "whether", 0, "null") (6, 5, 6, <25:28>, 1, "the", 0, "null") (7, 6, 7, <29:33>, 1, "cats", 0, "null") (8, 7, 8, <34:39>, 1, "chase", 0, "null")@8@(1, 0, 1, <0:4>, 1, "What", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:9>, 1, "I", 0, "null") (4, 3, 4, <10:16>, 1, "wonder", 0, "null") (5, 4, 5, <17:24>, 1, "whether", 0, "null") (6, 5, 6, <25:28>, 1, "the", 0, "null") (7, 6, 7, <29:33>, 1, "cats", 0, "null") (8, 7, 8, <34:39>, 1, "chase", 0, "null")@1@-1@7@7@-1@9@-1@-1@-1@-1@-1@-1@143@69@-1@-1@-1@-1@-1@-1@-1@17612@5695@-1@-1@3319720@-1@-1@-1@@@ +60@0@60@8@(1, 0, 1, <0:4>, 1, "What", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:9>, 1, "I", 0, "null") (4, 3, 4, <10:16>, 1, "wonder", 0, "null") (5, 4, 5, <17:21>, 1, "that", 0, "null") (6, 5, 6, <22:25>, 1, "the", 0, "null") (7, 6, 7, <26:30>, 1, "cats", 0, "null") (8, 7, 8, <31:36>, 1, "chase", 0, "null")@8@(1, 0, 1, <0:4>, 1, "What", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:9>, 1, "I", 0, "null") (4, 3, 4, <10:16>, 1, "wonder", 0, "null") (5, 4, 5, <17:21>, 1, "that", 0, "null") (6, 5, 6, <22:25>, 1, "the", 0, "null") (7, 6, 7, <26:30>, 1, "cats", 0, "null") (8, 7, 8, <31:36>, 1, "chase", 0, "null")@0@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@113@51@-1@-1@-1@-1@-1@-1@-1@18327@5905@-1@-1@2332324@-1@-1@-1@@@ +61@0@61@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +62@0@62@-1@@-1@@0@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@-1@@@ +63@0@63@7@(1, 0, 1, <0:5>, 1, "Where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:16>, 1, "think", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "sleep", 0, "null")@7@(1, 0, 1, <0:5>, 1, "Where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:16>, 1, "think", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "sleep", 0, "null")@3@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@105@80@-1@-1@-1@-1@-1@-1@-1@18850@6133@-1@-1@3238864@-1@-1@-1@@@ +64@0@64@9@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:17>, 1, "do", 0, "null") (5, 4, 5, <18:19>, 1, "I", 0, "null") (6, 5, 6, <20:25>, 1, "think", 0, "null") (7, 6, 7, <26:29>, 1, "the", 0, "null") (8, 7, 8, <30:34>, 1, "cats", 0, "null") (9, 8, 9, <35:40>, 1, "sleep", 0, "null")@9@(1, 0, 1, <0:2>, 1, "In", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:17>, 1, "do", 0, "null") (5, 4, 5, <18:19>, 1, "I", 0, "null") (6, 5, 6, <20:25>, 1, "think", 0, "null") (7, 6, 7, <26:29>, 1, "the", 0, "null") (8, 7, 8, <30:34>, 1, "cats", 0, "null") (9, 8, 9, <35:40>, 1, "sleep", 0, "null")@3@-1@12@12@-1@12@-1@-1@-1@-1@-1@-1@122@88@-1@-1@-1@-1@-1@-1@-1@20283@6419@-1@-1@3596152@-1@-1@-1@@@ +65@0@65@8@(1, 0, 1, <0:5>, 1, "Where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:17>, 1, "wonder", 0, "null") (5, 4, 5, <18:25>, 1, "whether", 0, "null") (6, 5, 6, <26:29>, 1, "the", 0, "null") (7, 6, 7, <30:34>, 1, "cats", 0, "null") (8, 7, 8, <35:40>, 1, "sleep", 0, "null")@8@(1, 0, 1, <0:5>, 1, "Where", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:17>, 1, "wonder", 0, "null") (5, 4, 5, <18:25>, 1, "whether", 0, "null") (6, 5, 6, <26:29>, 1, "the", 0, "null") (7, 6, 7, <30:34>, 1, "cats", 0, "null") (8, 7, 8, <35:40>, 1, "sleep", 0, "null")@2@-1@10@10@-1@11@-1@-1@-1@-1@-1@-1@139@92@-1@-1@-1@-1@-1@-1@-1@21931@6729@-1@-1@3766064@-1@-1@-1@@@ +66@0@66@9@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:14>, 1, "do", 0, "null") (4, 3, 4, <15:16>, 1, "I", 0, "null") (5, 4, 5, <17:22>, 1, "think", 0, "null") (6, 5, 6, <23:26>, 1, "the", 0, "null") (7, 6, 7, <27:31>, 1, "cats", 0, "null") (8, 7, 8, <32:37>, 1, "sleep", 0, "null") (9, 8, 9, <38:40>, 1, "in", 0, "null")@9@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:14>, 1, "do", 0, "null") (4, 3, 4, <15:16>, 1, "I", 0, "null") (5, 4, 5, <17:22>, 1, "think", 0, "null") (6, 5, 6, <23:26>, 1, "the", 0, "null") (7, 6, 7, <27:31>, 1, "cats", 0, "null") (8, 7, 8, <32:37>, 1, "sleep", 0, "null") (9, 8, 9, <38:40>, 1, "in", 0, "null")@2@-1@28@28@-1@28@-1@-1@-1@-1@-1@-1@245@123@-1@-1@-1@-1@-1@-1@-1@23555@7186@-1@-1@6148984@-1@-1@-1@@@ +67@0@67@9@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:16>, 1, "think", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "sleep", 0, "null") (8, 7, 8, <32:34>, 1, "in", 0, "null") (9, 8, 9, <35:40>, 1, "house", 0, "null")@9@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:16>, 1, "think", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "sleep", 0, "null") (8, 7, 8, <32:34>, 1, "in", 0, "null") (9, 8, 9, <35:40>, 1, "house", 0, "null")@0@-1@15@15@-1@15@-1@-1@-1@-1@-1@-1@377@134@-1@-1@-1@-1@-1@-1@-1@25642@7792@-1@-1@8433088@-1@-1@-1@@@ +68@0@68@9@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:16>, 1, "think", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "sleep", 0, "null") (8, 7, 8, <32:37>, 1, "house", 0, "null") (9, 8, 9, <38:40>, 1, "in", 0, "null")@9@(1, 0, 1, <0:5>, 1, "Which", 0, "null") (2, 1, 2, <6:8>, 1, "do", 0, "null") (3, 2, 3, <9:10>, 1, "I", 0, "null") (4, 3, 4, <11:16>, 1, "think", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "cats", 0, "null") (7, 6, 7, <26:31>, 1, "sleep", 0, "null") (8, 7, 8, <32:37>, 1, "house", 0, "null") (9, 8, 9, <38:40>, 1, "in", 0, "null")@0@-1@10@10@-1@11@-1@-1@-1@-1@-1@-1@273@97@-1@-1@-1@-1@-1@-1@-1@26646@8219@-1@-1@5908008@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh-eng-dev/preference b/tests/regression/home/gold/wh-eng-dev/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-eng-dev/relations b/tests/regression/home/gold/wh-eng-dev/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh-eng-dev/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh-eng-dev/result b/tests/regression/home/gold/wh-eng-dev/result new file mode 100644 index 000000000..613300fe5 --- /dev/null +++ b/tests/regression/home/gold/wh-eng-dev/result @@ -0,0 +1,35 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(153 subj-head 0.000000 0 5 (148 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (147 plural-suffix 0.000000 1 2 (7 cat 0.000000 1 2 ("cats")))) (152 head-comp 0.000000 2 5 (149 pl-lex 0.000000 2 3 (8 chase 0.000000 2 3 ("chase"))) (151 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (150 plural-suffix 0.000000 4 5 (10 dog 0.000000 4 5 ("dogs"))))))@@("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("V" ("V" ("chase"))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(71 subj-head 0.000000 0 3 (69 head-spec 0.000000 0 2 (4 the 0.000000 0 1 ("the")) (68 plural-suffix 0.000000 1 2 (5 dog 0.000000 1 2 ("dogs")))) (70 pl-lex 0.000000 2 3 (6 sleep 0.000000 2 3 ("sleep"))))@@("S" ("NP" ("D" ("the")) ("N" ("N" ("dogs")))) ("VP" ("VP" ("sleep"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(277 int 0.000000 0 6 (276 head-comp 0.000000 0 6 (271 head-comp 0.000000 0 3 (268 inv-lr 0.000000 0 1 (267 pl-lex 0.000000 0 1 (7 do 0.000000 0 1 ("do")))) (270 head-spec 0.000000 1 3 (8 the 0.000000 1 2 ("the")) (269 plural-suffix 0.000000 2 3 (9 cat 0.000000 2 3 ("cats"))))) (275 head-comp 0.000000 3 6 (272 nonfin-lex 0.000000 3 4 (10 chase 0.000000 3 4 ("chase"))) (274 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (273 plural-suffix 0.000000 5 6 (12 dog 0.000000 5 6 ("dogs")))))))@@("S" ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("cats"))))) ("VP" ("V" ("V" ("chase"))) ("NP" ("D" ("the")) ("N" ("N" ("dogs")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(187 int 0.000000 0 4 (186 head-comp 0.000000 0 4 (184 head-comp 0.000000 0 3 (181 inv-lr 0.000000 0 1 (180 pl-lex 0.000000 0 1 (5 do 0.000000 0 1 ("do")))) (183 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (182 plural-suffix 0.000000 2 3 (7 dog 0.000000 2 3 ("dogs"))))) (185 nonfin-lex 0.000000 3 4 (8 sleep 0.000000 3 4 ("sleep")))))@@("S" ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))) ("VP" ("VP" ("sleep")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(511 int 0.000000 0 9 (509 head-comp 0.000000 0 9 (493 head-comp 0.000000 0 2 (491 inv-lr 0.000000 0 1 (490 non-3rd-lex 0.000000 0 1 (10 do 0.000000 0 1 ("Do")))) (492 bare-np 0.000000 1 2 (11 I 0.000000 1 2 ("I")))) (507 head-comp 0.000000 2 9 (494 nonfin-lex 0.000000 2 3 (12 think 0.000000 2 3 ("think"))) (505 head-comp 0.000000 3 9 (13 that 0.000000 3 4 ("that")) (501 nc-subjh 0.000000 4 9 (496 head-spec 0.000000 4 6 (14 the 0.000000 4 5 ("the")) (495 plural-suffix 0.000000 5 6 (15 cat 0.000000 5 6 ("cats")))) (500 head-comp 0.000000 6 9 (497 pl-lex 0.000000 6 7 (16 chase 0.000000 6 7 ("chase"))) (499 head-spec 0.000000 7 9 (17 the 0.000000 7 8 ("the")) (498 plural-suffix 0.000000 8 9 (18 dog 0.000000 8 9 ("dogs"))))))))))@@("S" ("S" ("V" ("V-M" ("V" ("V" ("Do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("think"))) ("CP" ("C" ("that")) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("V" ("V" ("chase"))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_chase_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_dog_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(41 main-whq 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (40 ex-subj 0.000000 1 2 (39 3sg-suffix1 0.000000 1 2 (4 sleep 0.000000 1 2 ("sleeps")))))@@("S" ("NP" ("who")) ("S" ("VP" ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(95 main-whq 0.000000 0 4 (5 who 0.000000 0 1 ("who")) (94 ex-subj 0.000000 1 4 (93 head-comp 0.000000 1 4 (90 3sg-suffix1 0.000000 1 2 (6 chase 0.000000 1 2 ("chases"))) (92 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (91 plural-suffix 0.000000 3 4 (8 dog 0.000000 3 4 ("dogs")))))))@@("S" ("NP" ("who")) ("S" ("VP" ("V" ("V" ("chases"))) ("NP" ("D" ("the")) ("N" ("N" ("dogs")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(265 main-whq 0.000000 0 5 (6 who 0.000000 0 1 ("who")) (263 head-comp 0.000000 1 5 (262 ex-comp 0.000000 1 2 (261 inv-lr 0.000000 1 2 (260 pl-lex 0.000000 1 2 (7 do 0.000000 1 2 ("do"))))) (258 head-comp 0.000000 2 5 (255 nonfin-lex 0.000000 2 3 (8 chase 0.000000 2 3 ("chase"))) (257 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (256 singular-lex 0.000000 4 5 (10 dog 0.000000 4 5 ("dog")))))))@@("S" ("NP" ("who")) ("S" ("V" ("V-M" ("V" ("V" ("do"))))) ("VP" ("V" ("V" ("chase"))) ("NP" ("D" ("the")) ("N" ("N" ("dog")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +14@0@-1@-1@-1@-1@-1@-1@-1@-1@(207 main-whq 0.000000 0 5 (6 what 0.000000 0 1 ("what")) (206 head-comp 0.000000 1 5 (203 head-comp 0.000000 1 4 (200 inv-lr 0.000000 1 2 (199 pl-lex 0.000000 1 2 (7 do 0.000000 1 2 ("do")))) (202 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (201 plural-suffix 0.000000 3 4 (9 dog 0.000000 3 4 ("dogs"))))) (205 ex-comp 0.000000 4 5 (204 nonfin-lex 0.000000 4 5 (10 chase 0.000000 4 5 ("chase"))))))@@("S" ("NP" ("what")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))) ("VP" ("V" ("V" ("chase"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +17@0@-1@-1@-1@-1@-1@-1@-1@-1@(209 main-whq 0.000000 0 5 (6 where 0.000000 0 1 ("where")) (208 head-comp 0.000000 1 5 (205 head-comp 0.000000 1 4 (202 inv-lr 0.000000 1 2 (201 pl-lex 0.000000 1 2 (7 do 0.000000 1 2 ("do")))) (204 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (203 plural-suffix 0.000000 3 4 (9 dog 0.000000 3 4 ("dogs"))))) (207 ex-adj-first 0.000000 4 5 (206 nonfin-lex 0.000000 4 5 (10 sleep 0.000000 4 5 ("sleep"))))))@@("S" ("ADV" ("where")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))) ("VP" ("VP" ("VP" ("sleep"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_def_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h11 BODY: h12 ] [ "_dog_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +20@0@-1@-1@-1@-1@-1@-1@-1@-1@(299 main-whq 0.000000 0 7 (8 where 0.000000 0 1 ("where")) (298 head-comp 0.000000 1 7 (292 head-comp 0.000000 1 4 (289 inv-lr 0.000000 1 2 (288 pl-lex 0.000000 1 2 (9 do 0.000000 1 2 ("do")))) (291 head-spec 0.000000 2 4 (10 the 0.000000 2 3 ("the")) (290 plural-suffix 0.000000 3 4 (11 dog 0.000000 3 4 ("dogs"))))) (297 ex-adj-first 0.000000 4 7 (296 head-comp 0.000000 4 7 (293 nonfin-lex 0.000000 4 5 (12 chase 0.000000 4 5 ("chase"))) (295 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (294 plural-suffix 0.000000 6 7 (14 cat 0.000000 6 7 ("cats"))))))))@@("S" ("ADV" ("where")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))) ("VP" ("VP" ("V" ("V" ("chase"))) ("NP" ("D" ("the")) ("N" ("N" ("cats"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_def_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h11 BODY: h12 ] [ "_dog_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_cat_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +24@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 main-whq 0.000000 0 3 (4 who 0.000000 0 1 ("Who")) (72 ex-subj 0.000000 1 3 (71 head-comp 0.000000 1 3 (70 3sg-suffix1 0.000000 1 2 (5 chase 0.000000 1 2 ("chases"))) (6 what 0.000000 2 3 ("what")))))@@("S" ("NP" ("Who")) ("S" ("VP" ("V" ("V" ("chases"))) ("NP" ("what")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +26@0@-1@-1@-1@-1@-1@-1@-1@-1@(243 main-whq 0.000000 0 4 (5 who 0.000000 0 1 ("Who")) (241 head-comp 0.000000 1 4 (240 ex-comp 0.000000 1 2 (239 inv-lr 0.000000 1 2 (238 pl-lex 0.000000 1 2 (6 do 0.000000 1 2 ("do"))))) (236 head-comp 0.000000 2 4 (235 nonfin-lex 0.000000 2 3 (7 chase 0.000000 2 3 ("chase"))) (8 what 0.000000 3 4 ("what")))))@@("S" ("NP" ("Who")) ("S" ("V" ("V-M" ("V" ("V" ("do"))))) ("VP" ("V" ("V" ("chase"))) ("NP" ("what")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +29@0@-1@-1@-1@-1@-1@-1@-1@-1@(119 main-whq 0.000000 0 4 (5 who 0.000000 0 1 ("Who")) (118 head-adj 0.000000 1 4 (117 ex-subj 0.000000 1 3 (116 head-comp 0.000000 1 3 (115 3sg-suffix1 0.000000 1 2 (6 chase 0.000000 1 2 ("chases"))) (7 what 0.000000 2 3 ("what")))) (8 where 0.000000 3 4 ("where"))))@@("S" ("NP" ("Who")) ("S" ("S" ("VP" ("V" ("V" ("chases"))) ("NP" ("what")))) ("ADV" ("where"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +32@0@-1@-1@-1@-1@-1@-1@-1@-1@(66 main-whq 0.000000 0 3 (63 head-spec 0.000000 0 2 (4 which 0.000000 0 1 ("Which")) (62 singular-lex 0.000000 1 2 (5 cat 0.000000 1 2 ("cat")))) (65 ex-subj 0.000000 2 3 (64 3sg-suffix1 0.000000 2 3 (6 sleep 0.000000 2 3 ("sleeps")))))@@("S" ("NP" ("D" ("Which")) ("N" ("N" ("cat")))) ("S" ("VP" ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < i8 info-str i9 > ]@((:ascore . 0.0) (:probability . 1.0)) +34@0@-1@-1@-1@-1@-1@-1@-1@-1@(120 main-whq 0.000000 0 5 (114 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("Which")) (113 singular-lex 0.000000 1 2 (7 cat 0.000000 1 2 ("cat")))) (119 ex-subj 0.000000 2 5 (118 head-comp 0.000000 2 5 (115 3sg-suffix1 0.000000 2 3 (8 chase 0.000000 2 3 ("chases"))) (117 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (116 plural-suffix 0.000000 4 5 (10 dog 0.000000 4 5 ("dogs")))))))@@("S" ("NP" ("D" ("Which")) ("N" ("N" ("cat")))) ("S" ("VP" ("V" ("V" ("chases"))) ("NP" ("D" ("the")) ("N" ("N" ("dogs")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 1.0)) +36@0@-1@-1@-1@-1@-1@-1@-1@-1@(231 main-whq 0.000000 0 6 (222 head-spec 0.000000 0 2 (7 which 0.000000 0 1 ("Which")) (221 plural-suffix 0.000000 1 2 (8 dog 0.000000 1 2 ("dogs")))) (230 head-comp 0.000000 2 6 (227 head-comp 0.000000 2 5 (224 inv-lr 0.000000 2 3 (223 pl-lex 0.000000 2 3 (9 do 0.000000 2 3 ("do")))) (226 head-spec 0.000000 3 5 (10 the 0.000000 3 4 ("the")) (225 plural-suffix 0.000000 4 5 (11 cat 0.000000 4 5 ("cats"))))) (229 ex-comp 0.000000 5 6 (228 nonfin-lex 0.000000 5 6 (12 chase 0.000000 5 6 ("chase"))))))@@("S" ("NP" ("D" ("Which")) ("N" ("N" ("dogs")))) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("cats"))))) ("VP" ("V" ("V" ("chase"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h6 BODY: h7 ] [ "_dog_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 1.0)) +40@0@-1@-1@-1@-1@-1@-1@-1@-1@(267 main-whq 0.000000 0 7 (258 head-comp 0.000000 0 3 (8 in 0.000000 0 1 ("In")) (257 head-spec 0.000000 1 3 (9 which 0.000000 1 2 ("which")) (256 singular-lex 0.000000 2 3 (10 house 0.000000 2 3 ("house"))))) (266 head-comp 0.000000 3 7 (263 head-comp 0.000000 3 6 (260 inv-lr 0.000000 3 4 (259 pl-lex 0.000000 3 4 (11 do 0.000000 3 4 ("do")))) (262 head-spec 0.000000 4 6 (12 the 0.000000 4 5 ("the")) (261 plural-suffix 0.000000 5 6 (13 cat 0.000000 5 6 ("cats"))))) (265 ex-adj-first 0.000000 6 7 (264 nonfin-lex 0.000000 6 7 (14 sleep 0.000000 6 7 ("sleep"))))))@@("S" ("PP" ("P" ("In")) ("NP" ("D" ("which")) ("N" ("N" ("house"))))) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("cats"))))) ("VP" ("VP" ("VP" ("sleep"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "_def_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h12 BODY: h13 ] [ "_cat_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +41@0@-1@-1@-1@-1@-1@-1@-1@-1@(341 main-whq 0.000000 0 7 (331 head-spec 0.000000 0 2 (8 which 0.000000 0 1 ("Which")) (330 singular-lex 0.000000 1 2 (9 house 0.000000 1 2 ("house")))) (340 head-adj 0.000000 2 7 (338 head-comp 0.000000 2 6 (336 head-comp 0.000000 2 5 (333 inv-lr 0.000000 2 3 (332 pl-lex 0.000000 2 3 (10 do 0.000000 2 3 ("do")))) (335 head-spec 0.000000 3 5 (11 the 0.000000 3 4 ("the")) (334 plural-suffix 0.000000 4 5 (12 cat 0.000000 4 5 ("cats"))))) (337 nonfin-lex 0.000000 5 6 (13 sleep 0.000000 5 6 ("sleep")))) (339 ex-comp 0.000000 6 7 (14 in 0.000000 6 7 ("in")))))@@("S" ("NP" ("D" ("Which")) ("N" ("N" ("house")))) ("S" ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("cats"))))) ("VP" ("VP" ("sleep")))) ("PP" ("P" ("in")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 1.0)) +45@0@-1@-1@-1@-1@-1@-1@-1@-1@(367 subj-head 0.000000 0 8 (347 bare-np 0.000000 0 1 (9 I 0.000000 0 1 ("I"))) (365 head-comp 0.000000 1 8 (364 non-3rd-lex 0.000000 1 2 (10 think 0.000000 1 2 ("think"))) (359 head-comp 0.000000 2 8 (11 that 0.000000 2 3 ("that")) (355 nc-subjh 0.000000 3 8 (350 head-spec 0.000000 3 5 (12 the 0.000000 3 4 ("the")) (349 plural-suffix 0.000000 4 5 (13 cat 0.000000 4 5 ("cats")))) (354 head-comp 0.000000 5 8 (351 pl-lex 0.000000 5 6 (14 chase 0.000000 5 6 ("chase"))) (353 head-spec 0.000000 6 8 (15 the 0.000000 6 7 ("the")) (352 plural-suffix 0.000000 7 8 (16 dog 0.000000 7 8 ("dogs")))))))))@@("S" ("NP" ("N" ("I"))) ("VP" ("V" ("V" ("think"))) ("CP" ("C" ("that")) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("V" ("V" ("chase"))) ("NP" ("D" ("the")) ("N" ("N" ("dogs")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_chase_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_dog_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +47@0@-1@-1@-1@-1@-1@-1@-1@-1@(163 subj-head 0.000000 0 4 (154 bare-np 0.000000 0 1 (5 I 0.000000 0 1 ("I"))) (162 head-comp 0.000000 1 4 (161 non-3rd-lex 0.000000 1 2 (6 wonder 0.000000 1 2 ("wonder"))) (158 embed-whq 0.000000 2 4 (7 who 0.000000 2 3 ("who")) (157 ex-subj 0.000000 3 4 (156 3sg-suffix1 0.000000 3 4 (8 sleep 0.000000 3 4 ("sleeps")))))))@@("S" ("NP" ("N" ("I"))) ("VP" ("V" ("V" ("wonder"))) ("S" ("NP" ("who")) ("S" ("VP" ("VP" ("sleeps")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +50@0@-1@-1@-1@-1@-1@-1@-1@-1@(203 subj-head 0.000000 0 6 (183 bare-np 0.000000 0 1 (7 I 0.000000 0 1 ("I"))) (200 head-comp 0.000000 1 6 (198 non-3rd-lex 0.000000 1 2 (8 wonder 0.000000 1 2 ("wonder"))) (194 embed-whq 0.000000 2 6 (9 what 0.000000 2 3 ("what")) (192 nc-subjh 0.000000 3 6 (186 head-spec 0.000000 3 5 (10 the 0.000000 3 4 ("the")) (185 plural-suffix 0.000000 4 5 (11 cat 0.000000 4 5 ("cats")))) (191 ex-comp 0.000000 5 6 (190 pl-lex 0.000000 5 6 (12 chase 0.000000 5 6 ("chase"))))))))@@("S" ("NP" ("N" ("I"))) ("VP" ("V" ("V" ("wonder"))) ("S" ("NP" ("what")) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("V" ("V" ("chase"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_def_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h16 BODY: h17 ] [ "_cat_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_chase_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +53@0@-1@-1@-1@-1@-1@-1@-1@-1@(353 main-whq 0.000000 0 7 (8 who 0.000000 0 1 ("Who")) (352 head-comp 0.000000 1 7 (344 head-comp 0.000000 1 3 (342 inv-lr 0.000000 1 2 (341 non-3rd-lex 0.000000 1 2 (9 do 0.000000 1 2 ("do")))) (343 bare-np 0.000000 2 3 (10 I 0.000000 2 3 ("I")))) (351 head-comp 0.000000 3 7 (345 nonfin-lex 0.000000 3 4 (11 think 0.000000 3 4 ("think"))) (350 ex-subj 0.000000 4 7 (349 head-comp 0.000000 4 7 (346 3sg-suffix1 0.000000 4 5 (12 chase 0.000000 4 5 ("chases"))) (348 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (347 plural-suffix 0.000000 6 7 (14 dog 0.000000 6 7 ("dogs")))))))))@@("S" ("NP" ("Who")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("think"))) ("S" ("VP" ("V" ("V" ("chases"))) ("NP" ("D" ("the")) ("N" ("N" ("dogs")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_pronoun_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_chase_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_dog_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h14 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +58@0@-1@-1@-1@-1@-1@-1@-1@-1@(317 main-whq 0.000000 0 7 (8 what 0.000000 0 1 ("What")) (315 head-comp 0.000000 1 7 (302 head-comp 0.000000 1 3 (300 inv-lr 0.000000 1 2 (299 non-3rd-lex 0.000000 1 2 (9 do 0.000000 1 2 ("do")))) (301 bare-np 0.000000 2 3 (10 I 0.000000 2 3 ("I")))) (313 head-comp 0.000000 3 7 (303 nonfin-lex 0.000000 3 4 (11 think 0.000000 3 4 ("think"))) (311 nc-subjh 0.000000 4 7 (305 head-spec 0.000000 4 6 (12 the 0.000000 4 5 ("the")) (304 plural-suffix 0.000000 5 6 (13 cat 0.000000 5 6 ("cats")))) (310 ex-comp 0.000000 6 7 (309 pl-lex 0.000000 6 7 (14 chase 0.000000 6 7 ("chase"))))))))@@("S" ("NP" ("What")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("V" ("V" ("chase"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_pronoun_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_def_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h16 BODY: h17 ] [ "_cat_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_chase_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +59@0@-1@-1@-1@-1@-1@-1@-1@-1@(383 main-whq 0.000000 0 8 (9 what 0.000000 0 1 ("What")) (381 head-comp 0.000000 1 8 (366 head-comp 0.000000 1 3 (364 inv-lr 0.000000 1 2 (363 non-3rd-lex 0.000000 1 2 (10 do 0.000000 1 2 ("do")))) (365 bare-np 0.000000 2 3 (11 I 0.000000 2 3 ("I")))) (379 head-comp 0.000000 3 8 (367 nonfin-lex 0.000000 3 4 (12 wonder 0.000000 3 4 ("wonder"))) (377 head-comp 0.000000 4 8 (13 whether 0.000000 4 5 ("whether")) (375 nc-subjh 0.000000 5 8 (369 head-spec 0.000000 5 7 (14 the 0.000000 5 6 ("the")) (368 plural-suffix 0.000000 6 7 (15 cat 0.000000 6 7 ("cats")))) (374 ex-comp 0.000000 7 8 (373 pl-lex 0.000000 7 8 (16 chase 0.000000 7 8 ("chase")))))))))@@("S" ("NP" ("What")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("wonder"))) ("CP" ("C" ("whether")) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("V" ("V" ("chase")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_pronoun_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_def_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h16 BODY: h17 ] [ "_cat_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_chase_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h13 qeq h19 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +63@0@-1@-1@-1@-1@-1@-1@-1@-1@(346 main-whq 0.000000 0 7 (8 where 0.000000 0 1 ("Where")) (344 head-comp 0.000000 1 7 (330 head-comp 0.000000 1 3 (328 inv-lr 0.000000 1 2 (327 non-3rd-lex 0.000000 1 2 (9 do 0.000000 1 2 ("do")))) (329 bare-np 0.000000 2 3 (10 I 0.000000 2 3 ("I")))) (337 ex-adj-first 0.000000 3 7 (336 head-comp 0.000000 3 7 (331 nonfin-lex 0.000000 3 4 (11 think 0.000000 3 4 ("think"))) (335 subj-head 0.000000 4 7 (333 head-spec 0.000000 4 6 (12 the 0.000000 4 5 ("the")) (332 plural-suffix 0.000000 5 6 (13 cat 0.000000 5 6 ("cats")))) (334 pl-lex 0.000000 6 7 (14 sleep 0.000000 6 7 ("sleep"))))))))@@("S" ("ADV" ("Where")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("sleep"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h11 BODY: h12 ] [ "_pronoun_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h17 BODY: h18 ] [ "_cat_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_sleep_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +63@1@-1@-1@-1@-1@-1@-1@-1@-1@(360 main-whq 0.000000 0 7 (8 where 0.000000 0 1 ("Where")) (345 head-comp 0.000000 1 7 (330 head-comp 0.000000 1 3 (328 inv-lr 0.000000 1 2 (327 non-3rd-lex 0.000000 1 2 (9 do 0.000000 1 2 ("do")))) (329 bare-np 0.000000 2 3 (10 I 0.000000 2 3 ("I")))) (343 ex-adj-first 0.000000 3 7 (342 head-comp 0.000000 3 7 (331 nonfin-lex 0.000000 3 4 (11 think 0.000000 3 4 ("think"))) (341 nc-subjh 0.000000 4 7 (339 head-spec 0.000000 4 6 (12 the 0.000000 4 5 ("the")) (338 plural-suffix 0.000000 5 6 (13 cat 0.000000 5 6 ("cats")))) (340 pl-lex 0.000000 6 7 (14 sleep 0.000000 6 7 ("sleep"))))))))@@("S" ("ADV" ("Where")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("sleep"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h11 BODY: h12 ] [ "_pronoun_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h17 BODY: h18 ] [ "_cat_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_sleep_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +63@2@-1@-1@-1@-1@-1@-1@-1@-1@(361 main-whq 0.000000 0 7 (8 where 0.000000 0 1 ("Where")) (358 head-comp 0.000000 1 7 (330 head-comp 0.000000 1 3 (328 inv-lr 0.000000 1 2 (327 non-3rd-lex 0.000000 1 2 (9 do 0.000000 1 2 ("do")))) (329 bare-np 0.000000 2 3 (10 I 0.000000 2 3 ("I")))) (356 head-comp 0.000000 3 7 (347 nonfin-lex 0.000000 3 4 (11 think 0.000000 3 4 ("think"))) (354 nc-subjh 0.000000 4 7 (348 head-spec 0.000000 4 6 (12 the 0.000000 4 5 ("the")) (338 plural-suffix 0.000000 5 6 (13 cat 0.000000 5 6 ("cats")))) (353 ex-adj-first 0.000000 6 7 (352 pl-lex 0.000000 6 7 (14 sleep 0.000000 6 7 ("sleep"))))))))@@("S" ("ADV" ("Where")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("VP" ("sleep"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h13 BODY: h14 ] [ "_pronoun_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h19 BODY: h20 ] [ "_cat_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_sleep_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +64@0@-1@-1@-1@-1@-1@-1@-1@-1@(404 main-whq 0.000000 0 9 (384 head-comp 0.000000 0 3 (10 in 0.000000 0 1 ("In")) (383 head-spec 0.000000 1 3 (11 which 0.000000 1 2 ("which")) (382 singular-lex 0.000000 2 3 (12 house 0.000000 2 3 ("house"))))) (402 head-comp 0.000000 3 9 (388 head-comp 0.000000 3 5 (386 inv-lr 0.000000 3 4 (385 non-3rd-lex 0.000000 3 4 (13 do 0.000000 3 4 ("do")))) (387 bare-np 0.000000 4 5 (14 I 0.000000 4 5 ("I")))) (395 ex-adj-first 0.000000 5 9 (394 head-comp 0.000000 5 9 (389 nonfin-lex 0.000000 5 6 (15 think 0.000000 5 6 ("think"))) (393 subj-head 0.000000 6 9 (391 head-spec 0.000000 6 8 (16 the 0.000000 6 7 ("the")) (390 plural-suffix 0.000000 7 8 (17 cat 0.000000 7 8 ("cats")))) (392 pl-lex 0.000000 8 9 (18 sleep 0.000000 8 9 ("sleep"))))))))@@("S" ("PP" ("P" ("In")) ("NP" ("D" ("which")) ("N" ("N" ("house"))))) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("sleep"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h12 BODY: h13 ] [ "_pronoun_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] [ "_def_q_rel"<-1:-1> LBL: h16 ARG0: x17 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h18 BODY: h19 ] [ "_cat_n_rel"<-1:-1> LBL: h20 ARG0: x17 ] [ "_sleep_v_rel"<-1:-1> LBL: h21 ARG0: e22 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 h15 qeq h21 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +64@1@-1@-1@-1@-1@-1@-1@-1@-1@(418 main-whq 0.000000 0 9 (384 head-comp 0.000000 0 3 (10 in 0.000000 0 1 ("In")) (383 head-spec 0.000000 1 3 (11 which 0.000000 1 2 ("which")) (382 singular-lex 0.000000 2 3 (12 house 0.000000 2 3 ("house"))))) (403 head-comp 0.000000 3 9 (388 head-comp 0.000000 3 5 (386 inv-lr 0.000000 3 4 (385 non-3rd-lex 0.000000 3 4 (13 do 0.000000 3 4 ("do")))) (387 bare-np 0.000000 4 5 (14 I 0.000000 4 5 ("I")))) (401 ex-adj-first 0.000000 5 9 (400 head-comp 0.000000 5 9 (389 nonfin-lex 0.000000 5 6 (15 think 0.000000 5 6 ("think"))) (399 nc-subjh 0.000000 6 9 (397 head-spec 0.000000 6 8 (16 the 0.000000 6 7 ("the")) (396 plural-suffix 0.000000 7 8 (17 cat 0.000000 7 8 ("cats")))) (398 pl-lex 0.000000 8 9 (18 sleep 0.000000 8 9 ("sleep"))))))))@@("S" ("PP" ("P" ("In")) ("NP" ("D" ("which")) ("N" ("N" ("house"))))) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("sleep"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "exist_q_rel"<-1:-1> LBL: h11 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h12 BODY: h13 ] [ "_pronoun_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] [ "_def_q_rel"<-1:-1> LBL: h16 ARG0: x17 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h18 BODY: h19 ] [ "_cat_n_rel"<-1:-1> LBL: h20 ARG0: x17 ] [ "_sleep_v_rel"<-1:-1> LBL: h21 ARG0: e22 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 h15 qeq h21 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +64@2@-1@-1@-1@-1@-1@-1@-1@-1@(419 main-whq 0.000000 0 9 (384 head-comp 0.000000 0 3 (10 in 0.000000 0 1 ("In")) (383 head-spec 0.000000 1 3 (11 which 0.000000 1 2 ("which")) (382 singular-lex 0.000000 2 3 (12 house 0.000000 2 3 ("house"))))) (416 head-comp 0.000000 3 9 (388 head-comp 0.000000 3 5 (386 inv-lr 0.000000 3 4 (385 non-3rd-lex 0.000000 3 4 (13 do 0.000000 3 4 ("do")))) (387 bare-np 0.000000 4 5 (14 I 0.000000 4 5 ("I")))) (414 head-comp 0.000000 5 9 (405 nonfin-lex 0.000000 5 6 (15 think 0.000000 5 6 ("think"))) (412 nc-subjh 0.000000 6 9 (406 head-spec 0.000000 6 8 (16 the 0.000000 6 7 ("the")) (396 plural-suffix 0.000000 7 8 (17 cat 0.000000 7 8 ("cats")))) (411 ex-adj-first 0.000000 8 9 (410 pl-lex 0.000000 8 9 (18 sleep 0.000000 8 9 ("sleep"))))))))@@("S" ("PP" ("P" ("In")) ("NP" ("D" ("which")) ("N" ("N" ("house"))))) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("VP" ("sleep"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] ] [ "_which_q_rel"<-1:-1> LBL: h8 ARG0: x7 RSTR: h9 BODY: h10 ] [ "_house_n_rel"<-1:-1> LBL: h11 ARG0: x7 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h13 BODY: h14 ] [ "_pronoun_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h19 BODY: h20 ] [ "_cat_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_sleep_v_rel"<-1:-1> LBL: h22 ARG0: e6 ARG1: x18 ] > HCONS: < h0 qeq h1 h9 qeq h11 h13 qeq h15 h16 qeq h22 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +65@0@-1@-1@-1@-1@-1@-1@-1@-1@(416 main-whq 0.000000 0 8 (9 where 0.000000 0 1 ("Where")) (415 head-comp 0.000000 1 8 (392 head-comp 0.000000 1 3 (390 inv-lr 0.000000 1 2 (389 non-3rd-lex 0.000000 1 2 (10 do 0.000000 1 2 ("do")))) (391 bare-np 0.000000 2 3 (11 I 0.000000 2 3 ("I")))) (414 ex-adj-first 0.000000 3 8 (413 head-comp 0.000000 3 8 (409 nonfin-lex 0.000000 3 4 (12 wonder 0.000000 3 4 ("wonder"))) (412 head-comp 0.000000 4 8 (13 whether 0.000000 4 5 ("whether")) (411 nc-subjh 0.000000 5 8 (395 head-spec 0.000000 5 7 (14 the 0.000000 5 6 ("the")) (394 plural-suffix 0.000000 6 7 (15 cat 0.000000 6 7 ("cats")))) (410 pl-lex 0.000000 7 8 (16 sleep 0.000000 7 8 ("sleep")))))))))@@("S" ("ADV" ("Where")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("VP" ("V" ("V" ("wonder"))) ("CP" ("C" ("whether")) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("sleep")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h11 BODY: h12 ] [ "_pronoun_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h14 ] [ "_def_q_rel"<-1:-1> LBL: h15 ARG0: x16 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h17 BODY: h18 ] [ "_cat_n_rel"<-1:-1> LBL: h19 ARG0: x16 ] [ "_sleep_v_rel"<-1:-1> LBL: h20 ARG0: e21 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 h14 qeq h20 h17 qeq h19 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +65@1@-1@-1@-1@-1@-1@-1@-1@-1@(417 main-whq 0.000000 0 8 (9 where 0.000000 0 1 ("Where")) (407 head-comp 0.000000 1 8 (392 head-comp 0.000000 1 3 (390 inv-lr 0.000000 1 2 (389 non-3rd-lex 0.000000 1 2 (10 do 0.000000 1 2 ("do")))) (391 bare-np 0.000000 2 3 (11 I 0.000000 2 3 ("I")))) (405 head-comp 0.000000 3 8 (393 nonfin-lex 0.000000 3 4 (12 wonder 0.000000 3 4 ("wonder"))) (403 head-comp 0.000000 4 8 (13 whether 0.000000 4 5 ("whether")) (401 nc-subjh 0.000000 5 8 (395 head-spec 0.000000 5 7 (14 the 0.000000 5 6 ("the")) (394 plural-suffix 0.000000 6 7 (15 cat 0.000000 6 7 ("cats")))) (400 ex-adj-first 0.000000 7 8 (399 pl-lex 0.000000 7 8 (16 sleep 0.000000 7 8 ("sleep")))))))))@@("S" ("ADV" ("Where")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("wonder"))) ("CP" ("C" ("whether")) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("VP" ("sleep")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e6 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x7 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_place_a_rel"<-1:-1> LBL: h8 ARG0: x7 ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x7 RSTR: h10 BODY: h11 ] [ "exist_q_rel"<-1:-1> LBL: h12 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h13 BODY: h14 ] [ "_pronoun_n_rel"<-1:-1> LBL: h15 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h16 ] [ "_def_q_rel"<-1:-1> LBL: h17 ARG0: x18 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h19 BODY: h20 ] [ "_cat_n_rel"<-1:-1> LBL: h21 ARG0: x18 ] [ "_sleep_v_rel"<-1:-1> LBL: h4 ARG0: e6 ARG1: x18 ] > HCONS: < h0 qeq h1 h10 qeq h8 h13 qeq h15 h16 qeq h4 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +66@0@-1@-1@-1@-1@-1@-1@-1@-1@(582 main-whq 0.000000 0 9 (561 head-spec 0.000000 0 2 (10 which 0.000000 0 1 ("Which")) (560 singular-lex 0.000000 1 2 (11 house 0.000000 1 2 ("house")))) (580 head-adj 0.000000 2 9 (572 head-comp 0.000000 2 8 (565 head-comp 0.000000 2 4 (563 inv-lr 0.000000 2 3 (562 non-3rd-lex 0.000000 2 3 (12 do 0.000000 2 3 ("do")))) (564 bare-np 0.000000 3 4 (13 I 0.000000 3 4 ("I")))) (571 head-comp 0.000000 4 8 (566 nonfin-lex 0.000000 4 5 (14 think 0.000000 4 5 ("think"))) (570 subj-head 0.000000 5 8 (568 head-spec 0.000000 5 7 (15 the 0.000000 5 6 ("the")) (567 plural-suffix 0.000000 6 7 (16 cat 0.000000 6 7 ("cats")))) (569 pl-lex 0.000000 7 8 (17 sleep 0.000000 7 8 ("sleep")))))) (579 ex-comp 0.000000 8 9 (18 in 0.000000 8 9 ("in")))))@@("S" ("NP" ("D" ("Which")) ("N" ("N" ("house")))) ("S" ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("sleep")))))) ("PP" ("P" ("in")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_pronoun_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_def_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h16 BODY: h17 ] [ "_cat_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_sleep_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e21 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 h13 qeq h19 h16 qeq h18 > ICONS: < i22 info-str i23 > ]@((:ascore . 0.0) (:probability . 0.5)) +66@1@-1@-1@-1@-1@-1@-1@-1@-1@(583 main-whq 0.000000 0 9 (561 head-spec 0.000000 0 2 (10 which 0.000000 0 1 ("Which")) (560 singular-lex 0.000000 1 2 (11 house 0.000000 1 2 ("house")))) (581 head-adj 0.000000 2 9 (578 head-comp 0.000000 2 8 (565 head-comp 0.000000 2 4 (563 inv-lr 0.000000 2 3 (562 non-3rd-lex 0.000000 2 3 (12 do 0.000000 2 3 ("do")))) (564 bare-np 0.000000 3 4 (13 I 0.000000 3 4 ("I")))) (577 head-comp 0.000000 4 8 (566 nonfin-lex 0.000000 4 5 (14 think 0.000000 4 5 ("think"))) (576 nc-subjh 0.000000 5 8 (574 head-spec 0.000000 5 7 (15 the 0.000000 5 6 ("the")) (573 plural-suffix 0.000000 6 7 (16 cat 0.000000 6 7 ("cats")))) (575 pl-lex 0.000000 7 8 (17 sleep 0.000000 7 8 ("sleep")))))) (579 ex-comp 0.000000 8 9 (18 in 0.000000 8 9 ("in")))))@@("S" ("NP" ("D" ("Which")) ("N" ("N" ("house")))) ("S" ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("N" ("I")))) ("VP" ("V" ("V" ("think"))) ("S" ("NP" ("D" ("the")) ("N" ("N" ("cats")))) ("VP" ("VP" ("sleep")))))) ("PP" ("P" ("in")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: sg ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h10 BODY: h11 ] [ "_pronoun_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h13 ] [ "_def_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h16 BODY: h17 ] [ "_cat_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_sleep_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e21 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 h13 qeq h19 h16 qeq h18 > ICONS: < i22 info-str i23 > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh-eng-dev/run b/tests/regression/home/gold/wh-eng-dev/run new file mode 100644 index 000000000..510413705 --- /dev/null +++ b/tests/regression/home/gold/wh-eng-dev/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@wh-d@1631@-1@-1@22@8@13@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 16:03:22@26-aug-2020 16:03:22@-1@ diff --git a/tests/regression/home/gold/wh-eng-dev/tree b/tests/regression/home/gold/wh-eng-dev/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/decision b/tests/regression/home/gold/wh-svo-sg-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/edge b/tests/regression/home/gold/wh-svo-sg-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/item b/tests/regression/home/gold/wh-svo-sg-oblig-min/item new file mode 100644 index 000000000..cc8366c70 --- /dev/null +++ b/tests/regression/home/gold/wh-svo-sg-oblig-min/item @@ -0,0 +1,17 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@0@3@@@ +9@@@@1@@cat what sees?@@@@0@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@0@3@@@ +13@@@@1@@where sleeps cat?@@@@0@3@@@ +14@@@@1@@cat where sleeps?@@@@0@3@@@ +15@@@@1@@cat sees cat in house.@@@@1@5@@@ +16@@@@1@@what cat sees in house?@@@@1@5@@@ +17@@@@1@@cat sees what in house?@@@@0@5@@@ diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/item-set b/tests/regression/home/gold/wh-svo-sg-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/parse b/tests/regression/home/gold/wh-svo-sg-oblig-min/parse new file mode 100644 index 000000000..a2204db5d --- /dev/null +++ b/tests/regression/home/gold/wh-svo-sg-oblig-min/parse @@ -0,0 +1,17 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@441@9@-1@-1@98544@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@5@-1@-1@-1@-1@-1@-1@-1@505@22@-1@-1@118348@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@14@-1@-1@-1@-1@-1@-1@-1@542@52@-1@-1@375432@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@10@-1@-1@-1@-1@-1@-1@-1@639@72@-1@-1@157512@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@6@-1@-1@-1@-1@-1@-1@-1@649@80@-1@-1@78504@-1@-1@-1@@@ +6@0@6@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@4@-1@-1@-1@-1@-1@-1@-1@730@92@-1@-1@112308@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@10@-1@-1@-1@-1@-1@-1@-1@750@107@-1@-1@187072@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@13@-1@-1@-1@-1@-1@-1@-1@878@140@-1@-1@321188@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@899@154@-1@-1@136308@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@11@17@-1@-1@-1@-1@-1@-1@-1@938@186@-1@-1@418936@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@10@-1@-1@-1@-1@-1@-1@-1@1215@212@-1@-1@196344@-1@-1@-1@@@ +12@0@12@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@14@-1@-1@-1@-1@-1@-1@-1@1371@243@-1@-1@261128@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:12>, 1, "sleeps", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:12>, 1, "sleeps", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@7@-1@-1@-1@-1@-1@-1@-1@1401@261@-1@-1@193520@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@8@-1@-1@-1@-1@-1@-1@-1@1423@275@-1@-1@131764@-1@-1@-1@@@ +15@0@15@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:15>, 1, "in", 0, "null") (5, 4, 5, <16:21>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:15>, 1, "in", 0, "null") (5, 4, 5, <16:21>, 1, "house", 0, "null")@3@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@26@31@-1@-1@-1@-1@-1@-1@-1@1501@337@-1@-1@947040@-1@-1@-1@@@ +16@0@16@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@17@25@-1@-1@-1@-1@-1@-1@-1@2002@404@-1@-1@659752@-1@-1@-1@@@ +17@0@17@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@27@24@-1@-1@-1@-1@-1@-1@-1@2402@474@-1@-1@609764@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/preference b/tests/regression/home/gold/wh-svo-sg-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/relations b/tests/regression/home/gold/wh-svo-sg-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh-svo-sg-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/result b/tests/regression/home/gold/wh-svo-sg-oblig-min/result new file mode 100644 index 000000000..dba0c9eea --- /dev/null +++ b/tests/regression/home/gold/wh-svo-sg-oblig-min/result @@ -0,0 +1,12 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(28 subj-head 0.000000 0 2 (27 bare-np 0.000000 0 1 (3 cat 0.000000 0 1 ("cat"))) (4 sleeps 0.000000 1 2 ("sleeps")))@@("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(63 subj-head 0.000000 0 3 (60 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (62 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (61 bare-np 0.000000 2 3 (6 house 0.000000 2 3 ("house")))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(27 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (26 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(48 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (47 subj-head 0.000000 1 3 (45 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (46 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 subj-head 0.000000 0 4 (74 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (77 headv-adj 0.000000 1 4 (6 sleeps 0.000000 1 2 ("sleeps")) (76 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (75 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house"))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(83 headv-adj 0.000000 0 4 (80 subj-head 0.000000 0 2 (79 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (6 sleeps 0.000000 1 2 ("sleeps"))) (82 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (81 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 wh-ques 0.000000 0 3 (4 where 0.000000 0 1 ("where")) (48 ex-adj 0.000000 1 3 (47 subj-head 0.000000 1 3 (46 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("ADV" ("where")) ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +15@0@-1@-1@-1@-1@-1@-1@-1@-1@(122 subj-head 0.000000 0 5 (116 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (121 headv-adj 0.000000 1 5 (118 head-comp 0.000000 1 3 (7 sees 0.000000 1 2 ("sees")) (117 bare-np 0.000000 2 3 (8 cat 0.000000 2 3 ("cat")))) (120 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (119 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house"))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("V" ("sees")) ("NP" ("N" ("cat")))) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +15@1@-1@-1@-1@-1@-1@-1@-1@-1@(135 headv-adj 0.000000 0 5 (132 subj-head 0.000000 0 3 (129 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (131 head-comp 0.000000 1 3 (7 sees 0.000000 1 2 ("sees")) (130 bare-np 0.000000 2 3 (8 cat 0.000000 2 3 ("cat"))))) (134 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (133 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("N" ("cat"))))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +15@2@-1@-1@-1@-1@-1@-1@-1@-1@(128 subj-head 0.000000 0 5 (116 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (127 head-comp 0.000000 1 5 (7 sees 0.000000 1 2 ("sees")) (126 bare-np 0.000000 2 5 (125 headn-adj 0.000000 2 5 (8 cat 0.000000 2 3 ("cat")) (124 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (123 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house"))))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("N" ("N" ("cat")) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] [ "_in_p_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x8 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +16@0@-1@-1@-1@-1@-1@-1@-1@-1@(107 wh-ques 0.000000 0 5 (6 what 0.000000 0 1 ("what")) (106 headv-adj 0.000000 1 5 (103 subj-head 0.000000 1 3 (101 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (102 ex-comp 0.000000 2 3 (8 sees 0.000000 2 3 ("sees")))) (105 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (104 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house"))))))@@("S" ("NP" ("what")) ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +16@1@-1@-1@-1@-1@-1@-1@-1@-1@(114 wh-ques 0.000000 0 5 (6 what 0.000000 0 1 ("what")) (113 subj-head 0.000000 1 5 (108 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (112 headv-adj 0.000000 2 5 (109 ex-comp 0.000000 2 3 (8 sees 0.000000 2 3 ("sees"))) (111 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (110 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house")))))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("V" ("sees"))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/run b/tests/regression/home/gold/wh-svo-sg-oblig-min/run new file mode 100644 index 000000000..315c13018 --- /dev/null +++ b/tests/regression/home/gold/wh-svo-sg-oblig-min/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1490@-1@-1@8@0@11@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@22-jun-2020 20:00:01@22-jun-2020 20:00:01@-1@ diff --git a/tests/regression/home/gold/wh-svo-sg-oblig-min/tree b/tests/regression/home/gold/wh-svo-sg-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-yux-dev/decision b/tests/regression/home/gold/wh-yux-dev/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-yux-dev/edge b/tests/regression/home/gold/wh-yux-dev/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-yux-dev/item b/tests/regression/home/gold/wh-yux-dev/item new file mode 100644 index 000000000..033252bea --- /dev/null +++ b/tests/regression/home/gold/wh-yux-dev/item @@ -0,0 +1,24 @@ +1@@@@1@@kin mit-gele qamie?@@@@1@3@@@ +2@@@@1@@kin mit-gele qamie-m?@@@@1@3@@@ +3@@@@1@@kin mit-ek qamie-tem?@@@@0@3@@@ +4@@@@1@@kin mit-ek qamie?@@@@0@3@@@ +5@@@@1@@kin-ek mit-gele qamie?@@@@0@3@@@ +6@@@@1@@kin met-gele edies-m?@@@@1@3@@@ +7@@@@1@@kin met-gele edies?@@@@1@3@@@ +8@@@@1@@kin-ek met-gele edies?@@@@0@3@@@ +9@@@@1@@kin-ek met-gele edies-l@@@@0@3@@@ +10@@@@1@@kin met-ek edies-tem?@@@@0@3@@@ +11@@@@1@@kin-ek jaqte-l?@@@@1@2@@@ +12@@@@1@@kin-tek jaqte?@@@@0@2@@@ +13@@@@1@@kin jaqte-j?@@@@0@2@@@ +14@@@@1@@kin jaqte?@@@@0@2@@@ +15@@@@1@@lem-tek kesī-me@@@@1@2@@@ +16@@@@1@@lem-tek kesī-k@@@@0@2@@@ +17@@@@1@@lem kesī-k@@@@0@2@@@ +18@@@@1@@lem-gele kesī-mek?@@@@0@2@@@ +19@@@@1@@emde noŋōn kude-ōk?@@@@1@3@@@ +20@@@@1@@noŋōn emde kude-ōk@@@@1@3@@@ +21@@@@1@@noŋōn emde kude-j?@@@@0@3@@@ +22@@@@1@@noŋōn emde-tek kude-l?@@@@0@3@@@ +23@@@@1@@ejrie-nun-k?@@@@1@1@@@ +24@@@@1@@ejrie-nun-jek?@@@@1@1@@@ diff --git a/tests/regression/home/gold/wh-yux-dev/item-set b/tests/regression/home/gold/wh-yux-dev/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-yux-dev/parse b/tests/regression/home/gold/wh-yux-dev/parse new file mode 100644 index 000000000..7cd6e29bb --- /dev/null +++ b/tests/regression/home/gold/wh-yux-dev/parse @@ -0,0 +1,24 @@ +1@0@1@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "mit-gele", 0, "null") (3, 2, 3, <13:18>, 1, "qamie", 0, "null")@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "mit-gele", 0, "null") (3, 2, 3, <13:18>, 1, "qamie", 0, "null")@1@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@11@50@-1@-1@-1@-1@-1@-1@-1@3302@64@-1@-1@748648@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "mit-gele", 0, "null") (3, 2, 3, <13:20>, 1, "qamie-m", 0, "null")@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "mit-gele", 0, "null") (3, 2, 3, <13:20>, 1, "qamie-m", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@12@21@-1@-1@-1@-1@-1@-1@-1@3583@121@-1@-1@593096@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:10>, 1, "mit-ek", 0, "null") (3, 2, 3, <11:20>, 1, "qamie-tem", 0, "null")@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:10>, 1, "mit-ek", 0, "null") (3, 2, 3, <11:20>, 1, "qamie-tem", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@17@-1@-1@-1@-1@-1@-1@-1@3849@174@-1@-1@470812@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:10>, 1, "mit-ek", 0, "null") (3, 2, 3, <11:16>, 1, "qamie", 0, "null")@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:10>, 1, "mit-ek", 0, "null") (3, 2, 3, <11:16>, 1, "qamie", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@11@47@-1@-1@-1@-1@-1@-1@-1@4183@235@-1@-1@594676@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:15>, 1, "mit-gele", 0, "null") (3, 2, 3, <16:21>, 1, "qamie", 0, "null")@3@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:15>, 1, "mit-gele", 0, "null") (3, 2, 3, <16:21>, 1, "qamie", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@9@46@-1@-1@-1@-1@-1@-1@-1@4509@293@-1@-1@560300@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "met-gele", 0, "null") (3, 2, 3, <13:20>, 1, "edies-m", 0, "null")@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "met-gele", 0, "null") (3, 2, 3, <13:20>, 1, "edies-m", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@21@-1@-1@-1@-1@-1@-1@-1@4636@340@-1@-1@593096@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "met-gele", 0, "null") (3, 2, 3, <13:18>, 1, "edies", 0, "null")@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:12>, 1, "met-gele", 0, "null") (3, 2, 3, <13:18>, 1, "edies", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@11@50@-1@-1@-1@-1@-1@-1@-1@5128@414@-1@-1@748648@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:15>, 1, "met-gele", 0, "null") (3, 2, 3, <16:21>, 1, "edies", 0, "null")@3@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:15>, 1, "met-gele", 0, "null") (3, 2, 3, <16:21>, 1, "edies", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@9@46@-1@-1@-1@-1@-1@-1@-1@5608@482@-1@-1@560300@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:15>, 1, "met-gele", 0, "null") (3, 2, 3, <16:23>, 1, "edies-l", 0, "null")@3@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:15>, 1, "met-gele", 0, "null") (3, 2, 3, <16:23>, 1, "edies-l", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@13@-1@-1@-1@-1@-1@-1@-1@5708@519@-1@-1@408108@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:10>, 1, "met-ek", 0, "null") (3, 2, 3, <11:20>, 1, "edies-tem", 0, "null")@3@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:10>, 1, "met-ek", 0, "null") (3, 2, 3, <11:20>, 1, "edies-tem", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@17@-1@-1@-1@-1@-1@-1@-1@5820@562@-1@-1@470812@-1@-1@-1@@@ +11@0@11@2@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:14>, 1, "jaqte-l", 0, "null")@2@(1, 0, 1, <0:6>, 1, "kin-ek", 0, "null") (2, 1, 2, <7:14>, 1, "jaqte-l", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@3@15@-1@-1@-1@-1@-1@-1@-1@5862@593@-1@-1@381368@-1@-1@-1@@@ +12@0@12@2@(1, 0, 1, <0:7>, 1, "kin-tek", 0, "null") (2, 1, 2, <8:13>, 1, "jaqte", 0, "null")@2@(1, 0, 1, <0:7>, 1, "kin-tek", 0, "null") (2, 1, 2, <8:13>, 1, "jaqte", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@26@-1@-1@-1@-1@-1@-1@-1@6088@630@-1@-1@266492@-1@-1@-1@@@ +13@0@13@2@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:11>, 1, "jaqte-j", 0, "null")@2@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:11>, 1, "jaqte-j", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@14@-1@-1@-1@-1@-1@-1@-1@6157@662@-1@-1@293124@-1@-1@-1@@@ +14@0@14@2@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:9>, 1, "jaqte", 0, "null")@2@(1, 0, 1, <0:3>, 1, "kin", 0, "null") (2, 1, 2, <4:9>, 1, "jaqte", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@28@-1@-1@-1@-1@-1@-1@-1@6274@696@-1@-1@307872@-1@-1@-1@@@ +15@0@15@2@(1, 0, 1, <0:7>, 1, "lem-tek", 0, "null") (2, 1, 2, <8:15>, 1, "kesī-me", 0, "null")@2@(1, 0, 1, <0:7>, 1, "lem-tek", 0, "null") (2, 1, 2, <8:15>, 1, "kesī-me", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@3@12@-1@-1@-1@-1@-1@-1@-1@6327@724@-1@-1@407072@-1@-1@-1@@@ +16@0@16@2@(1, 0, 1, <0:7>, 1, "lem-tek", 0, "null") (2, 1, 2, <8:14>, 1, "kesī-k", 0, "null")@2@(1, 0, 1, <0:7>, 1, "lem-tek", 0, "null") (2, 1, 2, <8:14>, 1, "kesī-k", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@11@-1@-1@-1@-1@-1@-1@-1@6539@759@-1@-1@296880@-1@-1@-1@@@ +17@0@17@2@(1, 0, 1, <0:3>, 1, "lem", 0, "null") (2, 1, 2, <4:10>, 1, "kesī-k", 0, "null")@2@(1, 0, 1, <0:3>, 1, "lem", 0, "null") (2, 1, 2, <4:10>, 1, "kesī-k", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@13@-1@-1@-1@-1@-1@-1@-1@6645@790@-1@-1@338424@-1@-1@-1@@@ +18@0@18@2@(1, 0, 1, <0:8>, 1, "lem-gele", 0, "null") (2, 1, 2, <9:17>, 1, "kesī-mek", 0, "null")@2@(1, 0, 1, <0:8>, 1, "lem-gele", 0, "null") (2, 1, 2, <9:17>, 1, "kesī-mek", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@6668@811@-1@-1@198348@-1@-1@-1@@post-reduction lexical gap@ +19@0@19@3@(1, 0, 1, <0:4>, 1, "emde", 0, "null") (2, 1, 2, <5:10>, 1, "noŋōn", 0, "null") (3, 2, 3, <11:18>, 1, "kude-ōk", 0, "null")@3@(1, 0, 1, <0:4>, 1, "emde", 0, "null") (2, 1, 2, <5:10>, 1, "noŋōn", 0, "null") (3, 2, 3, <11:18>, 1, "kude-ōk", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@10@28@-1@-1@-1@-1@-1@-1@-1@6793@863@-1@-1@645904@-1@-1@-1@@@ +20@0@20@3@(1, 0, 1, <0:5>, 1, "noŋōn", 0, "null") (2, 1, 2, <6:10>, 1, "emde", 0, "null") (3, 2, 3, <11:18>, 1, "kude-ōk", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noŋōn", 0, "null") (2, 1, 2, <6:10>, 1, "emde", 0, "null") (3, 2, 3, <11:18>, 1, "kude-ōk", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@10@23@-1@-1@-1@-1@-1@-1@-1@7111@921@-1@-1@754608@-1@-1@-1@@@ +21@0@21@3@(1, 0, 1, <0:5>, 1, "noŋōn", 0, "null") (2, 1, 2, <6:10>, 1, "emde", 0, "null") (3, 2, 3, <11:17>, 1, "kude-j", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noŋōn", 0, "null") (2, 1, 2, <6:10>, 1, "emde", 0, "null") (3, 2, 3, <11:17>, 1, "kude-j", 0, "null")@2@-1@3@3@-1@4@-1@-1@-1@-1@-1@-1@10@23@-1@-1@-1@-1@-1@-1@-1@7623@987@-1@-1@758000@-1@-1@-1@@@ +22@0@22@3@(1, 0, 1, <0:5>, 1, "noŋōn", 0, "null") (2, 1, 2, <6:14>, 1, "emde-tek", 0, "null") (3, 2, 3, <15:21>, 1, "kude-l", 0, "null")@3@(1, 0, 1, <0:5>, 1, "noŋōn", 0, "null") (2, 1, 2, <6:14>, 1, "emde-tek", 0, "null") (3, 2, 3, <15:21>, 1, "kude-l", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@8036@1028@-1@-1@249024@-1@-1@-1@@post-reduction lexical gap@ +23@0@23@1@(1, 0, 1, <0:11>, 1, "ejrie-nun-k", 0, "null")@1@(1, 0, 1, <0:11>, 1, "ejrie-nun-k", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@8053@1040@-1@-1@164344@-1@-1@-1@@@ +24@0@24@1@(1, 0, 1, <0:13>, 1, "ejrie-nun-jek", 0, "null")@1@(1, 0, 1, <0:13>, 1, "ejrie-nun-jek", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@8182@1057@-1@-1@163232@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh-yux-dev/preference b/tests/regression/home/gold/wh-yux-dev/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh-yux-dev/relations b/tests/regression/home/gold/wh-yux-dev/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh-yux-dev/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh-yux-dev/result b/tests/regression/home/gold/wh-yux-dev/result new file mode 100644 index 000000000..25183fbb7 --- /dev/null +++ b/tests/regression/home/gold/wh-yux-dev/result @@ -0,0 +1,13 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(172 in-situ-ques 0.000000 0 3 (171 subj-head 0.000000 0 3 (163 QN-nom-lex 0.000000 0 1 (4 kin 0.000000 0 1 ("kin"))) (170 comp-head 0.000000 1 3 (165 bare-np 0.000000 1 2 (164 pn-acc-suffix1 0.000000 1 2 (5 mit 0.000000 1 2 ("mit-gele")))) (169 ITRG-3SG-TRAN-lex 0.000000 2 3 (168 non-future-lex 0.000000 2 3 (167 non-3rd-pl-lex 0.000000 2 3 (166 no-aspect-lex 0.000000 2 3 (6 qamie 0.000000 2 3 ("qamie")))))))))@@("S" ("S" ("NP" ("NP" ("kin"))) ("VP" ("NP" ("N" ("N" ("mit-gele")))) ("V" ("V" ("V" ("V" ("V" ("qamie")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: PL ] RSTR: h10 BODY: h11 ] [ "pron_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_help_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(155 in-situ-ques 0.000000 0 3 (154 subj-head 0.000000 0 3 (146 QN-nom-lex 0.000000 0 1 (4 kin 0.000000 0 1 ("kin"))) (153 comp-head 0.000000 1 3 (148 bare-np 0.000000 1 2 (147 pn-acc-suffix1 0.000000 1 2 (5 mit 0.000000 1 2 ("mit-gele")))) (152 TR-MAIN-3SG-suffix 0.000000 2 3 (151 non-future-lex 0.000000 2 3 (150 non-3rd-pl-lex 0.000000 2 3 (149 no-aspect-lex 0.000000 2 3 (6 qamie 0.000000 2 3 ("qamie-m")))))))))@@("S" ("S" ("NP" ("NP" ("kin"))) ("VP" ("NP" ("N" ("N" ("mit-gele")))) ("V" ("V" ("V" ("V" ("V" ("qamie-m")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: PL ] RSTR: h10 BODY: h11 ] [ "pron_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_help_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(155 in-situ-ques 0.000000 0 3 (154 subj-head 0.000000 0 3 (146 QN-nom-lex 0.000000 0 1 (4 kin 0.000000 0 1 ("kin"))) (153 comp-head 0.000000 1 3 (148 bare-np 0.000000 1 2 (147 pn-acc-suffix1 0.000000 1 2 (5 met 0.000000 1 2 ("met-gele")))) (152 TR-MAIN-3SG-suffix 0.000000 2 3 (151 non-future-lex 0.000000 2 3 (150 non-3rd-pl-lex 0.000000 2 3 (149 no-aspect-lex 0.000000 2 3 (6 edies 0.000000 2 3 ("edies-m")))))))))@@("S" ("S" ("NP" ("NP" ("kin"))) ("VP" ("NP" ("N" ("N" ("met-gele")))) ("V" ("V" ("V" ("V" ("V" ("edies-m")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: SG ] RSTR: h10 BODY: h11 ] [ "pron_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_call_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(172 in-situ-ques 0.000000 0 3 (171 subj-head 0.000000 0 3 (163 QN-nom-lex 0.000000 0 1 (4 kin 0.000000 0 1 ("kin"))) (170 comp-head 0.000000 1 3 (165 bare-np 0.000000 1 2 (164 pn-acc-suffix1 0.000000 1 2 (5 met 0.000000 1 2 ("met-gele")))) (169 ITRG-3SG-TRAN-lex 0.000000 2 3 (168 non-future-lex 0.000000 2 3 (167 non-3rd-pl-lex 0.000000 2 3 (166 no-aspect-lex 0.000000 2 3 (6 edies 0.000000 2 3 ("edies")))))))))@@("S" ("S" ("NP" ("NP" ("kin"))) ("VP" ("NP" ("N" ("N" ("met-gele")))) ("V" ("V" ("V" ("V" ("V" ("edies")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: SG ] RSTR: h10 BODY: h11 ] [ "pron_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_call_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(120 in-situ-ques 0.000000 0 2 (119 subj-head 0.000000 0 2 (114 QN-pred-suffix2 0.000000 0 1 (3 kin 0.000000 0 1 ("kin-ek"))) (118 INTR-SF-suffix 0.000000 1 2 (117 non-future-lex 0.000000 1 2 (116 non-3rd-pl-lex 0.000000 1 2 (115 no-aspect-lex 0.000000 1 2 (4 jaqte 0.000000 1 2 ("jaqte-l"))))))))@@("S" ("S" ("NP" ("NP" ("kin-ek"))) ("VP" ("VP" ("VP" ("VP" ("VP" ("jaqte-l"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sing_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +15@0@-1@-1@-1@-1@-1@-1@-1@-1@(118 in-situ-ques 0.000000 0 2 (117 decl-head-opt-subj 0.000000 0 2 (116 comp-head 0.000000 0 2 (111 QN-pred-suffix1 0.000000 0 1 (3 lem 0.000000 0 1 ("lem-tek"))) (115 TR-OF-12SG-suffix 0.000000 1 2 (114 non-future-lex 0.000000 1 2 (113 non-3rd-lex 0.000000 1 2 (112 no-aspect-lex 0.000000 1 2 (4 kesī 0.000000 1 2 ("kesī-me")))))))))@@("S" ("S" ("VP" ("NP" ("NP" ("lem-tek"))) ("V" ("V" ("V" ("V" ("V" ("kesī-me")))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_bring_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: non-3rd PNG.NUM: SG ] ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +19@0@-1@-1@-1@-1@-1@-1@-1@-1@(161 in-situ-ques 0.000000 0 3 (160 decl-head-opt-subj 0.000000 0 3 (159 comp-head 0.000000 0 3 (153 bare-np 0.000000 0 1 (152 cn-nom-lex 0.000000 0 1 (151 noun-num-sg-lex 0.000000 0 1 (4 emde 0.000000 0 1 ("emde"))))) (158 adj-headv 0.000000 1 3 (5 noŋōn 0.000000 1 2 ("noŋōn")) (157 ITRG-1PL-TRAN-suffix 0.000000 2 3 (156 non-future-lex 0.000000 2 3 (155 non-3rd-lex 0.000000 2 3 (154 no-aspect-lex 0.000000 2 3 (6 kude 0.000000 2 3 ("kude-ōk"))))))))))@@("S" ("S" ("VP" ("NP" ("N" ("N" ("N" ("emde"))))) ("V" ("ADV" ("noŋōn")) ("V" ("V" ("V" ("V" ("V" ("kude-ōk"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] RSTR: h6 BODY: h7 ] [ "_younger.sibling_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_what.for_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_kill_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: PL ] ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h13 qeq h11 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +20@0@-1@-1@-1@-1@-1@-1@-1@-1@(156 in-situ-ques 0.000000 0 3 (155 adj-headv 0.000000 0 3 (4 noŋōn 0.000000 0 1 ("noŋōn")) (154 decl-head-opt-subj 0.000000 1 3 (153 comp-head 0.000000 1 3 (148 bare-np 0.000000 1 2 (147 cn-nom-lex 0.000000 1 2 (146 noun-num-sg-lex 0.000000 1 2 (5 emde 0.000000 1 2 ("emde"))))) (152 ITRG-1PL-TRAN-suffix 0.000000 2 3 (151 non-future-lex 0.000000 2 3 (150 non-3rd-lex 0.000000 2 3 (149 no-aspect-lex 0.000000 2 3 (6 kude 0.000000 2 3 ("kude-ōk"))))))))))@@("S" ("S" ("ADV" ("noŋōn")) ("S" ("VP" ("NP" ("N" ("N" ("N" ("emde"))))) ("V" ("V" ("V" ("V" ("V" ("kude-ōk"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_what.for_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] RSTR: h12 BODY: h13 ] [ "_younger.sibling_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_kill_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: PL ] ARG2: x11 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +20@1@-1@-1@-1@-1@-1@-1@-1@-1@(164 in-situ-ques 0.000000 0 3 (163 decl-head-opt-subj 0.000000 0 3 (162 adj-headv 0.000000 0 3 (4 noŋōn 0.000000 0 1 ("noŋōn")) (161 comp-head 0.000000 1 3 (158 bare-np 0.000000 1 2 (157 cn-nom-lex 0.000000 1 2 (146 noun-num-sg-lex 0.000000 1 2 (5 emde 0.000000 1 2 ("emde"))))) (160 ITRG-1PL-TRAN-suffix 0.000000 2 3 (159 non-future-lex 0.000000 2 3 (150 non-3rd-lex 0.000000 2 3 (149 no-aspect-lex 0.000000 2 3 (6 kude 0.000000 2 3 ("kude-ōk"))))))))))@@("S" ("S" ("VP" ("ADV" ("noŋōn")) ("VP" ("NP" ("N" ("N" ("N" ("emde"))))) ("V" ("V" ("V" ("V" ("V" ("kude-ōk"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_what.for_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] RSTR: h12 BODY: h13 ] [ "_younger.sibling_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_kill_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: PL ] ARG2: x11 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h14 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 0.5)) +21@0@-1@-1@-1@-1@-1@-1@-1@-1@(156 in-situ-ques 0.000000 0 3 (155 adj-headv 0.000000 0 3 (4 noŋōn 0.000000 0 1 ("noŋōn")) (154 decl-head-opt-subj 0.000000 1 3 (153 comp-head 0.000000 1 3 (148 bare-np 0.000000 1 2 (147 cn-nom-lex 0.000000 1 2 (146 noun-num-sg-lex 0.000000 1 2 (5 emde 0.000000 1 2 ("emde"))))) (152 TR-MAIN-1PL-suffix 0.000000 2 3 (151 non-future-lex 0.000000 2 3 (150 non-3rd-lex 0.000000 2 3 (149 no-aspect-lex 0.000000 2 3 (6 kude 0.000000 2 3 ("kude-j"))))))))))@@("S" ("S" ("ADV" ("noŋōn")) ("S" ("VP" ("NP" ("N" ("N" ("N" ("emde"))))) ("V" ("V" ("V" ("V" ("V" ("kude-j"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_what.for_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] RSTR: h12 BODY: h13 ] [ "_younger.sibling_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_kill_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: PL ] ARG2: x11 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +21@1@-1@-1@-1@-1@-1@-1@-1@-1@(164 in-situ-ques 0.000000 0 3 (163 decl-head-opt-subj 0.000000 0 3 (162 adj-headv 0.000000 0 3 (4 noŋōn 0.000000 0 1 ("noŋōn")) (161 comp-head 0.000000 1 3 (158 bare-np 0.000000 1 2 (157 cn-nom-lex 0.000000 1 2 (146 noun-num-sg-lex 0.000000 1 2 (5 emde 0.000000 1 2 ("emde"))))) (160 TR-MAIN-1PL-suffix 0.000000 2 3 (159 non-future-lex 0.000000 2 3 (150 non-3rd-lex 0.000000 2 3 (149 no-aspect-lex 0.000000 2 3 (6 kude 0.000000 2 3 ("kude-j"))))))))))@@("S" ("S" ("VP" ("ADV" ("noŋōn")) ("VP" ("NP" ("N" ("N" ("N" ("emde"))))) ("V" ("V" ("V" ("V" ("V" ("kude-j"))))))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: NoAspect E.MOOD: mood ] RELS: < [ "manner_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number ] ] [ "_what.for_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x11 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: SG ] RSTR: h12 BODY: h13 ] [ "_younger.sibling_n_rel"<-1:-1> LBL: h14 ARG0: x11 ] [ "_kill_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 1st PNG.NUM: PL ] ARG2: x11 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h14 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 0.5)) +23@0@-1@-1@-1@-1@-1@-1@-1@-1@(83 decl-head-opt-subj 0.000000 0 1 (82 ITRG-2SG-INTRAN-suffix 0.000000 0 1 (81 non-future-lex 0.000000 0 1 (80 non-3rd-lex 0.000000 0 1 (79 habitual-suffix 0.000000 0 1 (2 ejrie 0.000000 0 1 ("ejrie-nun-k")))))))@@("S" ("VP" ("VP" ("VP" ("VP" ("VP" ("ejrie-nun-k")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: nonfuture E.ASPECT: Habitual E.MOOD: mood ] RELS: < [ "_walk_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: SG ] ] > HCONS: < h0 qeq h1 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +24@0@-1@-1@-1@-1@-1@-1@-1@-1@(83 decl-head-opt-subj 0.000000 0 1 (82 INTR-MAIN-2SG-suffix 0.000000 0 1 (81 non-future-lex 0.000000 0 1 (80 non-3rd-lex 0.000000 0 1 (79 habitual-suffix 0.000000 0 1 (2 ejrie 0.000000 0 1 ("ejrie-nun-jek")))))))@@("S" ("VP" ("VP" ("VP" ("VP" ("VP" ("ejrie-nun-jek")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: nonfuture E.ASPECT: Habitual E.MOOD: mood ] RELS: < [ "_walk_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: 2nd PNG.NUM: SG ] ] > HCONS: < h0 qeq h1 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh-yux-dev/run b/tests/regression/home/gold/wh-yux-dev/run new file mode 100644 index 000000000..3aa3a785d --- /dev/null +++ b/tests/regression/home/gold/wh-yux-dev/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1675@-1@-1@41@61@15@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@10-jun-2020 15:08:37@10-jun-2020 15:08:37@-1@ diff --git a/tests/regression/home/gold/wh-yux-dev/tree b/tests/regression/home/gold/wh-yux-dev/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/decision b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/edge b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/item b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/item new file mode 100644 index 000000000..082d95fd9 --- /dev/null +++ b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/item @@ -0,0 +1,10 @@ +1@@@@1@@who sleeps@@@@1@2@@@ +2@@@@1@@sleeps who@@@@0@2@@@ +3@@@@1@@who sees what@@@@0@3@@@ +4@@@@1@@who what sees@@@@1@3@@@ +5@@@@1@@sees who what@@@@0@3@@@ +6@@@@1@@what who sees@@@@1@3@@@ +7@@@@1@@where who sleeps@@@@1@3@@@ +8@@@@1@@who sleeps where@@@@0@3@@@ +9@@@@1@@who where sleeps@@@@0@3@@@ +10@@@@1@@sleeps who where@@@@0@3@@@ diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/item-set b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/parse b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/parse new file mode 100644 index 000000000..1cf316d3e --- /dev/null +++ b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/parse @@ -0,0 +1,10 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@0@12@-1@-1@-1@-1@-1@-1@-1@448@14@-1@-1@118792@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@8@-1@-1@-1@-1@-1@-1@-1@545@36@-1@-1@237276@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@63@59@-1@-1@-1@-1@-1@-1@-1@707@173@-1@-1@1681196@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@35@-1@-1@-1@-1@-1@-1@-1@777@216@-1@-1@431160@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@87@44@-1@-1@-1@-1@-1@-1@-1@1037@356@-1@-1@1915620@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@1@35@-1@-1@-1@-1@-1@-1@-1@1097@399@-1@-1@431160@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@2@18@-1@-1@-1@-1@-1@-1@-1@1241@426@-1@-1@232312@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@19@26@-1@-1@-1@-1@-1@-1@-1@1442@478@-1@-1@466936@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@2@23@-1@-1@-1@-1@-1@-1@-1@1500@506@-1@-1@262112@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@9@-1@-1@-1@-1@-1@-1@-1@1664@533@-1@-1@275212@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/preference b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/relations b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/result b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/result new file mode 100644 index 000000000..cae0b484f --- /dev/null +++ b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/result @@ -0,0 +1,5 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (34 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (77 wh-ques 0.000000 1 3 (5 what 0.000000 1 2 ("what")) (76 ex-subj 0.000000 2 3 (75 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees"))))))@@("S" ("NP" ("who")) ("S" ("NP" ("what")) ("S" ("VP" ("V" ("sees"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (77 wh-ques 0.000000 1 3 (5 who 0.000000 1 2 ("who")) (76 ex-subj 0.000000 2 3 (75 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees"))))))@@("S" ("NP" ("what")) ("S" ("NP" ("who")) ("S" ("VP" ("V" ("sees"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_person_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(58 wh-ques 0.000000 0 3 (4 where 0.000000 0 1 ("where")) (57 wh-ques 0.000000 1 3 (5 who 0.000000 1 2 ("who")) (56 ex-subj 0.000000 2 3 (55 ex-adj-last 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps"))))))@@("S" ("ADV" ("where")) ("S" ("NP" ("who")) ("S" ("VP" ("VP" ("sleeps"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_where_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(63 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (62 wh-ques 0.000000 1 3 (5 where 0.000000 1 2 ("where")) (61 ex-subj 0.000000 2 3 (60 ex-adj-first 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps"))))))@@("S" ("NP" ("who")) ("S" ("ADV" ("where")) ("S" ("VP" ("VP" ("sleeps"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_where_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/run b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/run new file mode 100644 index 000000000..c0265f28c --- /dev/null +++ b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.3.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1499@-1@-1@8@0@11@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@16-jul-2020 12:15:59@16-jul-2020 12:15:59@-1@ diff --git a/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/tree b/tests/regression/home/gold/wh10-svo-multi-all-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/decision b/tests/regression/home/gold/wh11-svo-multi-one-oblig/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/edge b/tests/regression/home/gold/wh11-svo-multi-one-oblig/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/item b/tests/regression/home/gold/wh11-svo-multi-one-oblig/item new file mode 100644 index 000000000..608c59933 --- /dev/null +++ b/tests/regression/home/gold/wh11-svo-multi-one-oblig/item @@ -0,0 +1,10 @@ +1@@@@1@@who sleeps@@@@1@2@@@ +2@@@@1@@sleeps who@@@@0@2@@@ +3@@@@1@@who sees what@@@@1@3@@@ +4@@@@1@@who what sees@@@@1@3@@@ +5@@@@1@@sees who what@@@@0@3@@@ +6@@@@1@@what who sees@@@@1@3@@@ +7@@@@1@@where who sleeps@@@@1@3@@@ +8@@@@1@@who sleeps where@@@@1@3@@@ +9@@@@1@@who where sleeps@@@@1@3@@@ +10@@@@1@@sleeps who where@@@@0@3@@@ diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/item-set b/tests/regression/home/gold/wh11-svo-multi-one-oblig/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/parse b/tests/regression/home/gold/wh11-svo-multi-one-oblig/parse new file mode 100644 index 000000000..a46dbaeb1 --- /dev/null +++ b/tests/regression/home/gold/wh11-svo-multi-one-oblig/parse @@ -0,0 +1,10 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@-1@10@-1@-1@-1@-1@-1@-1@-1@486@11@-1@-1@100688@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@8@-1@-1@-1@-1@-1@-1@-1@582@33@-1@-1@236292@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@45@51@-1@-1@-1@-1@-1@-1@-1@724@134@-1@-1@1243544@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@-1@28@-1@-1@-1@-1@-1@-1@-1@869@169@-1@-1@329456@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@64@44@-1@-1@-1@-1@-1@-1@-1@1145@286@-1@-1@1569260@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@-1@28@-1@-1@-1@-1@-1@-1@-1@1196@318@-1@-1@329456@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@0@14@-1@-1@-1@-1@-1@-1@-1@1335@339@-1@-1@189288@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@20@-1@-1@-1@-1@-1@-1@-1@1522@378@-1@-1@375528@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@0@19@-1@-1@-1@-1@-1@-1@-1@1682@405@-1@-1@253248@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@9@-1@-1@-1@-1@-1@-1@-1@1962@434@-1@-1@263708@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/preference b/tests/regression/home/gold/wh11-svo-multi-one-oblig/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/relations b/tests/regression/home/gold/wh11-svo-multi-one-oblig/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh11-svo-multi-one-oblig/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/result b/tests/regression/home/gold/wh11-svo-multi-one-oblig/result new file mode 100644 index 000000000..aa508bfe6 --- /dev/null +++ b/tests/regression/home/gold/wh11-svo-multi-one-oblig/result @@ -0,0 +1,8 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(34 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (33 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(138 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (137 ex-subj 0.000000 1 3 (136 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (6 what 0.000000 2 3 ("what")))))@@("S" ("NP" ("who")) ("S" ("VP" ("V" ("sees")) ("NP" ("what")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (69 wh-ques 0.000000 1 3 (5 what 0.000000 1 2 ("what")) (68 ex-subj 0.000000 2 3 (67 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees"))))))@@("S" ("NP" ("who")) ("S" ("NP" ("what")) ("S" ("VP" ("V" ("sees"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(70 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (69 wh-ques 0.000000 1 3 (5 who 0.000000 1 2 ("who")) (68 ex-subj 0.000000 2 3 (67 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees"))))))@@("S" ("NP" ("what")) ("S" ("NP" ("who")) ("S" ("VP" ("V" ("sees"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_person_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 wh-ques 0.000000 0 3 (4 where 0.000000 0 1 ("where")) (54 wh-ques 0.000000 1 3 (5 who 0.000000 1 2 ("who")) (53 ex-subj 0.000000 2 3 (52 ex-adj-last 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps"))))))@@("S" ("ADV" ("where")) ("S" ("NP" ("who")) ("S" ("VP" ("VP" ("sleeps"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_where_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_person_n_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(72 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (71 head-adj 0.000000 1 3 (70 ex-subj 0.000000 1 2 (5 sleeps 0.000000 1 2 ("sleeps"))) (6 where 0.000000 2 3 ("where"))))@@("S" ("NP" ("who")) ("S" ("S" ("VP" ("sleeps"))) ("ADV" ("where"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_where_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (61 wh-ques 0.000000 1 3 (5 where 0.000000 1 2 ("where")) (60 ex-subj 0.000000 2 3 (59 ex-adj-first 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps"))))))@@("S" ("NP" ("who")) ("S" ("ADV" ("where")) ("S" ("VP" ("VP" ("sleeps"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_where_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@1@-1@-1@-1@-1@-1@-1@-1@-1@(65 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (64 adj-head 0.000000 1 3 (5 where 0.000000 1 2 ("where")) (63 ex-subj 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("NP" ("who")) ("S" ("ADV" ("where")) ("S" ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_where_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/run b/tests/regression/home/gold/wh11-svo-multi-one-oblig/run new file mode 100644 index 000000000..4bc3c10c0 --- /dev/null +++ b/tests/regression/home/gold/wh11-svo-multi-one-oblig/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.3.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1503@-1@-1@8@0@12@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@16-jul-2020 12:20:16@16-jul-2020 12:20:16@-1@ diff --git a/tests/regression/home/gold/wh11-svo-multi-one-oblig/tree b/tests/regression/home/gold/wh11-svo-multi-one-oblig/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/decision b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/edge b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/item b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/item new file mode 100644 index 000000000..10c711343 --- /dev/null +++ b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/item @@ -0,0 +1,12 @@ +1@@@@1@@which cat sleeps?@@@@1@3@@@ +2@@@@1@@cat which sleeps?@@@@0@3@@@ +3@@@@1@@sleeps which cat?@@@@0@3@@@ +4@@@@1@@sleeps cat which?@@@@0@3@@@ +5@@@@1@@which house sees the cat?@@@@1@5@@@ +6@@@@1@@the house which cat sees?@@@@0@5@@@ +7@@@@1@@sees the cat which house?@@@@0@5@@@ +8@@@@1@@which sees the cat house?@@@@0@5@@@ +9@@@@1@@in which house sleeps the cat?@@@@1@6@@@ +10@@@@1@@which house sleeps the cat in?@@@@1@6@@@ +11@@@@1@@which in house sleeps the cat?@@@@0@6@@@ +12@@@@1@@which house in sleeps the cat?@@@@0@6@@@ diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/item-set b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/parse b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/parse new file mode 100644 index 000000000..3a33bb60f --- /dev/null +++ b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/parse @@ -0,0 +1,12 @@ +1@0@1@3@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@407@11@-1@-1@140520@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@4@-1@-1@-1@-1@-1@-1@-1@519@21@-1@-1@82008@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:12>, 1, "which", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:12>, 1, "which", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@7@-1@-1@-1@-1@-1@-1@-1@537@33@-1@-1@122412@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@557@41@-1@-1@96212@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:24>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:24>, 1, "cat", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@5@16@-1@-1@-1@-1@-1@-1@-1@600@67@-1@-1@391248@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:15>, 1, "which", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:15>, 1, "which", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@927@92@-1@-1@181824@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:18>, 1, "which", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:18>, 1, "which", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@9@14@-1@-1@-1@-1@-1@-1@-1@977@120@-1@-1@325624@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:18>, 1, "cat", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:18>, 1, "cat", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@11@-1@-1@-1@-1@-1@-1@-1@1031@145@-1@-1@302184@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@7@21@-1@-1@-1@-1@-1@-1@-1@1093@179@-1@-1@410392@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:18>, 1, "sleeps", 0, "null") (4, 3, 4, <19:22>, 1, "the", 0, "null") (5, 4, 5, <23:26>, 1, "cat", 0, "null") (6, 5, 6, <27:29>, 1, "in", 0, "null")@6@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:18>, 1, "sleeps", 0, "null") (4, 3, 4, <19:22>, 1, "the", 0, "null") (5, 4, 5, <23:26>, 1, "cat", 0, "null") (6, 5, 6, <27:29>, 1, "in", 0, "null")@2@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@6@23@-1@-1@-1@-1@-1@-1@-1@1363@220@-1@-1@503144@-1@-1@-1@@@ +11@0@11@6@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:8>, 1, "in", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:8>, 1, "in", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@11@-1@-1@-1@-1@-1@-1@-1@1785@250@-1@-1@203520@-1@-1@-1@@@ +12@0@12@6@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:14>, 1, "in", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:14>, 1, "in", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@1832@274@-1@-1@245564@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/preference b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/relations b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/result b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/result new file mode 100644 index 000000000..2ccd3c89c --- /dev/null +++ b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/result @@ -0,0 +1,6 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(41 wh-ques 0.000000 0 3 (39 head-spec 0.000000 0 2 (4 which 0.000000 0 1 ("which")) (5 cat 0.000000 1 2 ("cat"))) (40 ex-subj 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps"))))@@("S" ("NP" ("D" ("which")) ("N" ("cat"))) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < i8 info-str i9 > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(80 wh-ques 0.000000 0 5 (76 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 house 0.000000 1 2 ("house"))) (79 ex-subj 0.000000 2 5 (78 head-comp 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (77 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 cat 0.000000 4 5 ("cat"))))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("cat"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_house_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +5@1@-1@-1@-1@-1@-1@-1@-1@-1@(84 wh-ques 0.000000 0 5 (76 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 house 0.000000 1 2 ("house"))) (83 head-subj 0.000000 2 5 (81 ex-comp 0.000000 2 3 (8 sees 0.000000 2 3 ("sees"))) (82 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 cat 0.000000 4 5 ("cat")))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("VP" ("V" ("sees"))) ("NP" ("D" ("the")) ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(100 wh-ques 0.000000 0 6 (96 head-comp 0.000000 0 3 (7 in 0.000000 0 1 ("in")) (95 head-spec 0.000000 1 3 (8 which 0.000000 1 2 ("which")) (9 house 0.000000 2 3 ("house")))) (99 ex-adj 0.000000 3 6 (98 head-subj 0.000000 3 6 (10 sleeps 0.000000 3 4 ("sleeps")) (97 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 cat 0.000000 5 6 ("cat"))))))@@("S" ("PP" ("P" ("in")) ("NP" ("D" ("which")) ("N" ("house")))) ("S" ("S" ("VP" ("sleeps")) ("NP" ("D" ("the")) ("N" ("cat"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_cat_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(101 wh-ques 0.000000 0 6 (96 head-spec 0.000000 0 2 (7 which 0.000000 0 1 ("which")) (8 house 0.000000 1 2 ("house"))) (100 head-adj 0.000000 2 6 (98 head-subj 0.000000 2 5 (9 sleeps 0.000000 2 3 ("sleeps")) (97 head-spec 0.000000 3 5 (10 the 0.000000 3 4 ("the")) (11 cat 0.000000 4 5 ("cat")))) (99 ex-comp 0.000000 5 6 (12 in 0.000000 5 6 ("in")))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("S" ("VP" ("sleeps")) ("NP" ("D" ("the")) ("N" ("cat")))) ("PP" ("P" ("in")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.5)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(106 wh-ques 0.000000 0 6 (96 head-spec 0.000000 0 2 (7 which 0.000000 0 1 ("which")) (8 house 0.000000 1 2 ("house"))) (105 head-subj 0.000000 2 6 (9 sleeps 0.000000 2 3 ("sleeps")) (104 head-spec 0.000000 3 6 (10 the 0.000000 3 4 ("the")) (103 head-adj 0.000000 4 6 (11 cat 0.000000 4 5 ("cat")) (102 ex-comp 0.000000 5 6 (12 in 0.000000 5 6 ("in")))))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("VP" ("sleeps")) ("NP" ("D" ("the")) ("N" ("N" ("cat")) ("PP" ("P" ("in")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h12 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/run b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/run new file mode 100644 index 000000000..10f90a455 --- /dev/null +++ b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1504@-1@-1@9@0@10@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@6-jul-2020 11:02:45@6-jul-2020 11:02:45@-1@ diff --git a/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/tree b/tests/regression/home/gold/wh12-vos-sg-oblig-pied-adp-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/decision b/tests/regression/home/gold/wh13-oblig-particle-osv/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/edge b/tests/regression/home/gold/wh13-oblig-particle-osv/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/item b/tests/regression/home/gold/wh13-oblig-particle-osv/item new file mode 100644 index 000000000..f6015e54f --- /dev/null +++ b/tests/regression/home/gold/wh13-oblig-particle-osv/item @@ -0,0 +1,20 @@ +1@@@@1@@Q who iv@@@@1@3@@@ +2@@@@1@@Q what who tv@@@@1@4@@@ +3@@@@1@@Q iv who@@@@0@3@@@ +4@@@@1@@Q what tv who@@@@0@4@@@ +5@@@@1@@Q where n1 iv@@@@1@4@@@ +6@@@@1@@Q n1 iv where@@@@1@4@@@ +7@@@@1@@Q n1 where iv@@@@1@4@@@ +8@@@@1@@who iv@@@@0@2@@@ +9@@@@1@@who iv Q@@@@0@3@@@ +10@@@@1@@what who tv@@@@0@3@@@ +11@@@@1@@what who tv Q@@@@0@4@@@ +12@@@@1@@who Q iv@@@@0@3@@@ +13@@@@1@@what who Q tv@@@@0@4@@@ +14@@@@1@@where n1 iv@@@@0@3@@@ +15@@@@1@@ni iv where@@@@0@3@@@ +16@@@@1@@n1 where iv@@@@0@3@@@ +17@@@@1@@where n1 iv Q@@@@0@4@@@ +18@@@@1@@n1 iv where Q@@@@0@4@@@ +19@@@@1@@n1 Q where iv@@@@0@4@@@ +20@@@@1@@n1 where Q iv@@@@0@4@@@ diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/item-set b/tests/regression/home/gold/wh13-oblig-particle-osv/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/parse b/tests/regression/home/gold/wh13-oblig-particle-osv/parse new file mode 100644 index 000000000..f813a66f7 --- /dev/null +++ b/tests/regression/home/gold/wh13-oblig-particle-osv/parse @@ -0,0 +1,20 @@ +1@0@1@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:5>, 1, "who", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:5>, 1, "who", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@286@13@-1@-1@125952@-1@-1@-1@@@ +2@0@2@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:6>, 1, "what", 0, "null") (3, 2, 3, <7:10>, 1, "who", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:6>, 1, "what", 0, "null") (3, 2, 3, <7:10>, 1, "who", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@9@-1@-1@-1@-1@-1@-1@-1@423@34@-1@-1@207528@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "iv", 0, "null") (3, 2, 3, <5:8>, 1, "who", 0, "null")@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "iv", 0, "null") (3, 2, 3, <5:8>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@3@-1@-1@-1@-1@-1@-1@-1@568@47@-1@-1@87060@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:6>, 1, "what", 0, "null") (3, 2, 3, <7:9>, 1, "tv", 0, "null") (4, 3, 4, <10:13>, 1, "who", 0, "null")@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:6>, 1, "what", 0, "null") (3, 2, 3, <7:9>, 1, "tv", 0, "null") (4, 3, 4, <10:13>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@5@-1@-1@-1@-1@-1@-1@-1@586@64@-1@-1@174396@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:7>, 1, "where", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:7>, 1, "where", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@10@-1@-1@-1@-1@-1@-1@-1@610@86@-1@-1@243072@-1@-1@-1@@@ +6@0@6@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:7>, 1, "iv", 0, "null") (4, 3, 4, <8:13>, 1, "where", 0, "null")@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:7>, 1, "iv", 0, "null") (4, 3, 4, <8:13>, 1, "where", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@13@16@-1@-1@-1@-1@-1@-1@-1@818@124@-1@-1@390320@-1@-1@-1@@@ +7@0@7@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:10>, 1, "where", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:10>, 1, "where", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@10@-1@-1@-1@-1@-1@-1@-1@1184@156@-1@-1@248672@-1@-1@-1@@@ +8@0@8@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@3@-1@-1@-1@-1@-1@-1@-1@1358@167@-1@-1@53208@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null") (3, 2, 3, <7:8>, 1, "Q", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null") (3, 2, 3, <7:8>, 1, "Q", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@5@-1@-1@-1@-1@-1@-1@-1@1377@184@-1@-1@161140@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@1388@195@-1@-1@105920@-1@-1@-1@@@ +11@0@11@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@7@-1@-1@-1@-1@-1@-1@-1@1415@220@-1@-1@257716@-1@-1@-1@@@ +12@0@12@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:5>, 1, "Q", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:5>, 1, "Q", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@3@-1@-1@-1@-1@-1@-1@-1@1425@229@-1@-1@85020@-1@-1@-1@@@ +13@0@13@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:10>, 1, "Q", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:10>, 1, "Q", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@4@-1@-1@-1@-1@-1@-1@-1@1439@242@-1@-1@130000@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@1456@257@-1@-1@136632@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null") (3, 2, 3, <6:11>, 1, "where", 0, "null")@3@(1, 0, 1, <0:2>, 1, "ni", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null") (3, 2, 3, <6:11>, 1, "where", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@0@-1@-1@-1@-1@-1@-1@-1@1460@259@-1@-1@25784@-1@-1@-1@@post-reduction lexical gap@ +16@0@16@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:8>, 1, "where", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:8>, 1, "where", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@1479@274@-1@-1@135724@-1@-1@-1@@@ +17@0@17@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@8@-1@-1@-1@-1@-1@-1@-1@1512@303@-1@-1@275756@-1@-1@-1@@@ +18@0@18@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null") (3, 2, 3, <6:11>, 1, "where", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null") (3, 2, 3, <6:11>, 1, "where", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@26@11@-1@-1@-1@-1@-1@-1@-1@1556@344@-1@-1@398560@-1@-1@-1@@@ +19@0@19@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:4>, 1, "Q", 0, "null") (3, 2, 3, <5:10>, 1, "where", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:4>, 1, "Q", 0, "null") (3, 2, 3, <5:10>, 1, "where", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@6@-1@-1@-1@-1@-1@-1@-1@1576@362@-1@-1@166584@-1@-1@-1@@@ +20@0@20@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:8>, 1, "where", 0, "null") (3, 2, 3, <9:10>, 1, "Q", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:8>, 1, "where", 0, "null") (3, 2, 3, <9:10>, 1, "Q", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@5@-1@-1@-1@-1@-1@-1@-1@1596@379@-1@-1@163520@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/preference b/tests/regression/home/gold/wh13-oblig-particle-osv/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/relations b/tests/regression/home/gold/wh13-oblig-particle-osv/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh13-oblig-particle-osv/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/result b/tests/regression/home/gold/wh13-oblig-particle-osv/result new file mode 100644 index 000000000..08f21f579 --- /dev/null +++ b/tests/regression/home/gold/wh13-oblig-particle-osv/result @@ -0,0 +1,6 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(35 head-comp 0.000000 0 3 (4 Q 0.000000 0 1 ("Q")) (34 in-situ-ques 0.000000 1 3 (33 subj-head 0.000000 1 3 (5 who 0.000000 1 2 ("who")) (6 iv 0.000000 2 3 ("iv")))))@@("CP" ("C" ("Q")) ("S" ("S" ("NP" ("who")) ("VP" ("iv")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 head-comp 0.000000 0 4 (5 Q 0.000000 0 1 ("Q")) (48 in-situ-ques 0.000000 1 4 (47 comp-head 0.000000 1 4 (6 what 0.000000 1 2 ("what")) (46 subj-head 0.000000 2 4 (7 who 0.000000 2 3 ("who")) (8 tv 0.000000 3 4 ("tv"))))))@@("CP" ("C" ("Q")) ("S" ("S" ("NP" ("what")) ("V" ("NP" ("who")) ("V" ("tv"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 head-comp 0.000000 0 4 (5 Q 0.000000 0 1 ("Q")) (53 in-situ-ques 0.000000 1 4 (52 adj-head 0.000000 1 4 (6 where 0.000000 1 2 ("where")) (51 subj-head 0.000000 2 4 (50 bare-np 0.000000 2 3 (7 n1 0.000000 2 3 ("n1"))) (8 iv 0.000000 3 4 ("iv"))))))@@("CP" ("C" ("Q")) ("S" ("S" ("ADV" ("where")) ("S" ("NP" ("N" ("n1"))) ("VP" ("iv"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(65 head-comp 0.000000 0 4 (5 Q 0.000000 0 1 ("Q")) (64 in-situ-ques 0.000000 1 4 (63 head-adj 0.000000 1 4 (62 subj-head 0.000000 1 3 (61 bare-np 0.000000 1 2 (6 n1 0.000000 1 2 ("n1"))) (7 iv 0.000000 2 3 ("iv"))) (8 where 0.000000 3 4 ("where")))))@@("CP" ("C" ("Q")) ("S" ("S" ("S" ("NP" ("N" ("n1"))) ("VP" ("iv"))) ("ADV" ("where")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(70 head-comp 0.000000 0 4 (5 Q 0.000000 0 1 ("Q")) (69 in-situ-ques 0.000000 1 4 (68 subj-head 0.000000 1 4 (66 bare-np 0.000000 1 2 (6 n1 0.000000 1 2 ("n1"))) (67 head-adj 0.000000 2 4 (7 iv 0.000000 2 3 ("iv")) (8 where 0.000000 3 4 ("where"))))))@@("CP" ("C" ("Q")) ("S" ("S" ("NP" ("N" ("n1"))) ("VP" ("VP" ("iv")) ("ADV" ("where"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 head-comp 0.000000 0 4 (5 Q 0.000000 0 1 ("Q")) (53 in-situ-ques 0.000000 1 4 (52 subj-head 0.000000 1 4 (50 bare-np 0.000000 1 2 (6 n1 0.000000 1 2 ("n1"))) (51 adj-head 0.000000 2 4 (7 where 0.000000 2 3 ("where")) (8 iv 0.000000 3 4 ("iv"))))))@@("CP" ("C" ("Q")) ("S" ("S" ("NP" ("N" ("n1"))) ("VP" ("ADV" ("where")) ("VP" ("iv"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/run b/tests/regression/home/gold/wh13-oblig-particle-osv/run new file mode 100644 index 000000000..4df2ed948 --- /dev/null +++ b/tests/regression/home/gold/wh13-oblig-particle-osv/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1443@-1@-1@8@0@7@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@30-mar-2020 12:14:54@30-mar-2020 12:14:54@-1@ diff --git a/tests/regression/home/gold/wh13-oblig-particle-osv/tree b/tests/regression/home/gold/wh13-oblig-particle-osv/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/decision b/tests/regression/home/gold/wh14-oblig-imposs-part/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/edge b/tests/regression/home/gold/wh14-oblig-imposs-part/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/item b/tests/regression/home/gold/wh14-oblig-imposs-part/item new file mode 100644 index 000000000..5987dad3a --- /dev/null +++ b/tests/regression/home/gold/wh14-oblig-imposs-part/item @@ -0,0 +1,6 @@ +1@@@@1@@Q-oblig who iv@@@@1@3@@@ +2@@@@1@@Q-oblig what who tv@@@@1@4@@@ +3@@@@1@@Q-imp who iv@@@@0@3@@@ +4@@@@1@@Q-imp what who tv@@@@0@4@@@ +5@@@@1@@Q-imp n1 iv@@@@1@3@@@ +6@@@@1@@Q-oblig n1 iv@@@@1@3@@@ diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/item-set b/tests/regression/home/gold/wh14-oblig-imposs-part/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/parse b/tests/regression/home/gold/wh14-oblig-imposs-part/parse new file mode 100644 index 000000000..f4374b5eb --- /dev/null +++ b/tests/regression/home/gold/wh14-oblig-imposs-part/parse @@ -0,0 +1,6 @@ +1@0@1@3@(1, 0, 1, <0:7>, 1, "Q-oblig", 0, "null") (2, 1, 2, <8:11>, 1, "who", 0, "null") (3, 2, 3, <12:14>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:7>, 1, "Q-oblig", 0, "null") (2, 1, 2, <8:11>, 1, "who", 0, "null") (3, 2, 3, <12:14>, 1, "iv", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@3@6@-1@-1@-1@-1@-1@-1@-1@286@12@-1@-1@144560@-1@-1@-1@@@ +2@0@2@4@(1, 0, 1, <0:7>, 1, "Q-oblig", 0, "null") (2, 1, 2, <8:12>, 1, "what", 0, "null") (3, 2, 3, <13:16>, 1, "who", 0, "null") (4, 3, 4, <17:19>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:7>, 1, "Q-oblig", 0, "null") (2, 1, 2, <8:12>, 1, "what", 0, "null") (3, 2, 3, <13:16>, 1, "who", 0, "null") (4, 3, 4, <17:19>, 1, "tv", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@8@-1@-1@-1@-1@-1@-1@-1@421@32@-1@-1@236976@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "Q-imp", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null") (3, 2, 3, <10:12>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Q-imp", 0, "null") (2, 1, 2, <6:9>, 1, "who", 0, "null") (3, 2, 3, <10:12>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@567@47@-1@-1@107984@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:5>, 1, "Q-imp", 0, "null") (2, 1, 2, <6:10>, 1, "what", 0, "null") (3, 2, 3, <11:14>, 1, "who", 0, "null") (4, 3, 4, <15:17>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:5>, 1, "Q-imp", 0, "null") (2, 1, 2, <6:10>, 1, "what", 0, "null") (3, 2, 3, <11:14>, 1, "who", 0, "null") (4, 3, 4, <15:17>, 1, "tv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@585@63@-1@-1@170680@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:5>, 1, "Q-imp", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:5>, 1, "Q-imp", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "iv", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@602@78@-1@-1@186312@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:7>, 1, "Q-oblig", 0, "null") (2, 1, 2, <8:10>, 1, "n1", 0, "null") (3, 2, 3, <11:13>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:7>, 1, "Q-oblig", 0, "null") (2, 1, 2, <8:10>, 1, "n1", 0, "null") (3, 2, 3, <11:13>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@5@-1@-1@-1@-1@-1@-1@-1@720@95@-1@-1@148156@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/preference b/tests/regression/home/gold/wh14-oblig-imposs-part/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/relations b/tests/regression/home/gold/wh14-oblig-imposs-part/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh14-oblig-imposs-part/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/result b/tests/regression/home/gold/wh14-oblig-imposs-part/result new file mode 100644 index 000000000..841e32416 --- /dev/null +++ b/tests/regression/home/gold/wh14-oblig-imposs-part/result @@ -0,0 +1,3 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(34 head-comp 0.000000 0 3 (4 Q-oblig 0.000000 0 1 ("Q-oblig")) (33 in-situ-ques 0.000000 1 3 (32 subj-head 0.000000 1 3 (5 who 0.000000 1 2 ("who")) (6 iv 0.000000 2 3 ("iv")))))@@("CP" ("C" ("Q-oblig")) ("S" ("S" ("NP" ("who")) ("VP" ("iv")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(48 head-comp 0.000000 0 4 (5 Q-oblig 0.000000 0 1 ("Q-oblig")) (47 in-situ-ques 0.000000 1 4 (46 comp-head 0.000000 1 4 (6 what 0.000000 1 2 ("what")) (45 subj-head 0.000000 2 4 (7 who 0.000000 2 3 ("who")) (8 tv 0.000000 3 4 ("tv"))))))@@("CP" ("C" ("Q-oblig")) ("S" ("S" ("NP" ("what")) ("V" ("NP" ("who")) ("V" ("tv"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(37 head-comp 0.000000 0 3 (4 Q-imp 0.000000 0 1 ("Q-imp")) (36 subj-head 0.000000 1 3 (35 bare-np 0.000000 1 2 (5 n1 0.000000 1 2 ("n1"))) (6 iv 0.000000 2 3 ("iv"))))@@("CP" ("C" ("Q-imp")) ("S" ("NP" ("N" ("n1"))) ("VP" ("iv"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/run b/tests/regression/home/gold/wh14-oblig-imposs-part/run new file mode 100644 index 000000000..7fe952b3f --- /dev/null +++ b/tests/regression/home/gold/wh14-oblig-imposs-part/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1484@-1@-1@9@0@7@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@6-jul-2020 17:16:06@6-jul-2020 17:16:06@-1@ diff --git a/tests/regression/home/gold/wh14-oblig-imposs-part/tree b/tests/regression/home/gold/wh14-oblig-imposs-part/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/decision b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/edge b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/item b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/item new file mode 100644 index 000000000..eb855dde3 --- /dev/null +++ b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/item @@ -0,0 +1,20 @@ +1@@@@1@@n1 iv@@@@1@2@@@ +2@@@@1@@iv n1@@@@0@2@@@ +3@@@@1@@n1 Q iv@@@@1@3@@@ +4@@@@1@@n1 iv Q@@@@0@3@@@ +5@@@@1@@Q n1 iv@@@@0@3@@@ +6@@@@1@@n1 n2 tv@@@@1@3@@@ +7@@@@1@@n1 tv n2@@@@0@3@@@ +8@@@@1@@tv n1 n2@@@@0@3@@@ +9@@@@1@@n1 Q n2 tv@@@@1@4@@@ +10@@@@1@@Q n1 n2 tv@@@@0@4@@@ +11@@@@1@@n1 n2 Q tv@@@@0@4@@@ +12@@@@1@@n1 n2 tv Q@@@@0@4@@@ +13@@@@1@@who Q iv@@@@1@3@@@ +14@@@@1@@who iv@@@@0@2@@@ +15@@@@1@@who Q what tv@@@@1@4@@@ +16@@@@1@@who what Q tv@@@@0@4@@@ +17@@@@1@@Q who iv@@@@0@3@@@ +18@@@@1@@Q who what tv@@@@0@4@@@ +19@@@@1@@who what tv Q@@@@0@4@@@ +20@@@@1@@where Q n1 iv@@@@1@4@@@ diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/item-set b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/parse b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/parse new file mode 100644 index 000000000..215b5408e --- /dev/null +++ b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/parse @@ -0,0 +1,20 @@ +1@0@1@2@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@3@4@-1@-1@-1@-1@-1@-1@-1@402@9@-1@-1@108480@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:5>, 1, "n1", 0, "null")@2@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:5>, 1, "n1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@3@-1@-1@-1@-1@-1@-1@-1@460@17@-1@-1@65320@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:4>, 1, "Q", 0, "null") (3, 2, 3, <5:7>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:4>, 1, "Q", 0, "null") (3, 2, 3, <5:7>, 1, "iv", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@8@-1@-1@-1@-1@-1@-1@-1@485@37@-1@-1@247488@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null") (3, 2, 3, <6:7>, 1, "Q", 0, "null")@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "iv", 0, "null") (3, 2, 3, <6:7>, 1, "Q", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@6@-1@-1@-1@-1@-1@-1@-1@615@58@-1@-1@179116@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:7>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:7>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@5@-1@-1@-1@-1@-1@-1@-1@633@71@-1@-1@134244@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "n2", 0, "null") (3, 2, 3, <6:8>, 1, "tv", 0, "null")@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "n2", 0, "null") (3, 2, 3, <6:8>, 1, "tv", 0, "null")@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@9@-1@-1@-1@-1@-1@-1@-1@660@90@-1@-1@289264@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "tv", 0, "null") (3, 2, 3, <6:8>, 1, "n2", 0, "null")@3@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "tv", 0, "null") (3, 2, 3, <6:8>, 1, "n2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@7@-1@-1@-1@-1@-1@-1@-1@831@119@-1@-1@246764@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:5>, 1, "n1", 0, "null") (3, 2, 3, <6:8>, 1, "n2", 0, "null")@3@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:5>, 1, "n1", 0, "null") (3, 2, 3, <6:8>, 1, "n2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@5@-1@-1@-1@-1@-1@-1@-1@844@132@-1@-1@148684@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:4>, 1, "Q", 0, "null") (3, 2, 3, <5:7>, 1, "n2", 0, "null") (4, 3, 4, <8:10>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:4>, 1, "Q", 0, "null") (3, 2, 3, <5:7>, 1, "n2", 0, "null") (4, 3, 4, <8:10>, 1, "tv", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@13@-1@-1@-1@-1@-1@-1@-1@887@164@-1@-1@478032@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:7>, 1, "n2", 0, "null") (4, 3, 4, <8:10>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:4>, 1, "n1", 0, "null") (3, 2, 3, <5:7>, 1, "n2", 0, "null") (4, 3, 4, <8:10>, 1, "tv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@10@-1@-1@-1@-1@-1@-1@-1@1176@199@-1@-1@237920@-1@-1@-1@@@ +11@0@11@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "n2", 0, "null") (3, 2, 3, <6:7>, 1, "Q", 0, "null") (4, 3, 4, <8:10>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "n2", 0, "null") (3, 2, 3, <6:7>, 1, "Q", 0, "null") (4, 3, 4, <8:10>, 1, "tv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@10@-1@-1@-1@-1@-1@-1@-1@1213@226@-1@-1@284520@-1@-1@-1@@@ +12@0@12@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "n2", 0, "null") (3, 2, 3, <6:8>, 1, "tv", 0, "null") (4, 3, 4, <9:10>, 1, "Q", 0, "null")@4@(1, 0, 1, <0:2>, 1, "n1", 0, "null") (2, 1, 2, <3:5>, 1, "n2", 0, "null") (3, 2, 3, <6:8>, 1, "tv", 0, "null") (4, 3, 4, <9:10>, 1, "Q", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@21@11@-1@-1@-1@-1@-1@-1@-1@1265@262@-1@-1@428124@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:5>, 1, "Q", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:5>, 1, "Q", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@1284@277@-1@-1@192568@-1@-1@-1@@@ +14@0@14@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@1422@288@-1@-1@64720@-1@-1@-1@@@ +15@0@15@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:5>, 1, "Q", 0, "null") (3, 2, 3, <6:10>, 1, "what", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:5>, 1, "Q", 0, "null") (3, 2, 3, <6:10>, 1, "what", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@7@11@-1@-1@-1@-1@-1@-1@-1@1457@313@-1@-1@384704@-1@-1@-1@@@ +16@0@16@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:10>, 1, "Q", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:10>, 1, "Q", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@7@-1@-1@-1@-1@-1@-1@-1@1769@341@-1@-1@196456@-1@-1@-1@@@ +17@0@17@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:5>, 1, "who", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@3@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:5>, 1, "who", 0, "null") (3, 2, 3, <6:8>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@1784@352@-1@-1@109956@-1@-1@-1@@@ +18@0@18@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:5>, 1, "who", 0, "null") (3, 2, 3, <6:10>, 1, "what", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@4@(1, 0, 1, <0:1>, 1, "Q", 0, "null") (2, 1, 2, <2:5>, 1, "who", 0, "null") (3, 2, 3, <6:10>, 1, "what", 0, "null") (4, 3, 4, <11:13>, 1, "tv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@9@-1@-1@-1@-1@-1@-1@-1@1810@372@-1@-1@190156@-1@-1@-1@@@ +19@0@19@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:13>, 1, "Q", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@23@10@-1@-1@-1@-1@-1@-1@-1@1861@411@-1@-1@456172@-1@-1@-1@@@ +20@0@20@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:7>, 1, "Q", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:7>, 1, "Q", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@11@10@-1@-1@-1@-1@-1@-1@-1@1894@436@-1@-1@342488@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/preference b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/relations b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/result b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/result new file mode 100644 index 000000000..3e7df08f8 --- /dev/null +++ b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/result @@ -0,0 +1,10 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(26 subj-head 0.000000 0 2 (25 bare-np 0.000000 0 1 (3 n1 0.000000 0 1 ("n1"))) (4 iv 0.000000 1 2 ("iv")))@@("S" ("NP" ("N" ("n1"))) ("VP" ("iv")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(50 int-cl 0.000000 0 3 (49 subj-head 0.000000 0 3 (48 bare-np 0.000000 0 2 (47 headn-adj 0.000000 0 2 (4 n1 0.000000 0 1 ("n1")) (5 Q 0.000000 1 2 ("Q")))) (6 iv 0.000000 2 3 ("iv"))))@@("S" ("S" ("NP" ("N" ("N" ("n1")) ("ADV" ("Q")))) ("VP" ("iv"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 comp-head 0.000000 0 3 (46 bare-np 0.000000 0 1 (4 n1 0.000000 0 1 ("n1"))) (48 subj-head 0.000000 1 3 (47 bare-np 0.000000 1 2 (5 n2 0.000000 1 2 ("n2"))) (6 tv 0.000000 2 3 ("tv"))))@@("S" ("NP" ("N" ("n1"))) ("V" ("NP" ("N" ("n2"))) ("V" ("tv"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(53 subj-head 0.000000 0 3 (50 bare-np 0.000000 0 1 (4 n1 0.000000 0 1 ("n1"))) (52 comp-head 0.000000 1 3 (51 bare-np 0.000000 1 2 (5 n2 0.000000 1 2 ("n2"))) (6 tv 0.000000 2 3 ("tv"))))@@("S" ("NP" ("N" ("n1"))) ("VP" ("NP" ("N" ("n2"))) ("V" ("tv"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(75 int-cl 0.000000 0 4 (74 comp-head 0.000000 0 4 (71 bare-np 0.000000 0 2 (70 headn-adj 0.000000 0 2 (5 n1 0.000000 0 1 ("n1")) (6 Q 0.000000 1 2 ("Q")))) (73 subj-head 0.000000 2 4 (72 bare-np 0.000000 2 3 (7 n2 0.000000 2 3 ("n2"))) (8 tv 0.000000 3 4 ("tv")))))@@("S" ("S" ("NP" ("N" ("N" ("n1")) ("ADV" ("Q")))) ("V" ("NP" ("N" ("n2"))) ("V" ("tv")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@1@-1@-1@-1@-1@-1@-1@-1@-1@(81 int-cl 0.000000 0 4 (80 subj-head 0.000000 0 4 (77 bare-np 0.000000 0 2 (76 headn-adj 0.000000 0 2 (5 n1 0.000000 0 1 ("n1")) (6 Q 0.000000 1 2 ("Q")))) (79 comp-head 0.000000 2 4 (78 bare-np 0.000000 2 3 (7 n2 0.000000 2 3 ("n2"))) (8 tv 0.000000 3 4 ("tv")))))@@("S" ("S" ("NP" ("N" ("N" ("n1")) ("ADV" ("Q")))) ("VP" ("NP" ("N" ("n2"))) ("V" ("tv")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(45 int-cl 0.000000 0 3 (44 in-situ-ques 0.000000 0 3 (43 subj-head 0.000000 0 3 (42 headn-adj 0.000000 0 2 (4 who 0.000000 0 1 ("who")) (5 Q 0.000000 1 2 ("Q"))) (6 iv 0.000000 2 3 ("iv")))))@@("S" ("S" ("S" ("NP" ("NP" ("who")) ("ADV" ("Q"))) ("VP" ("iv")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +15@0@-1@-1@-1@-1@-1@-1@-1@-1@(67 int-cl 0.000000 0 4 (66 in-situ-ques 0.000000 0 4 (65 comp-head 0.000000 0 4 (63 headn-adj 0.000000 0 2 (5 who 0.000000 0 1 ("who")) (6 Q 0.000000 1 2 ("Q"))) (64 subj-head 0.000000 2 4 (7 what 0.000000 2 3 ("what")) (8 tv 0.000000 3 4 ("tv"))))))@@("S" ("S" ("S" ("NP" ("NP" ("who")) ("ADV" ("Q"))) ("V" ("NP" ("what")) ("V" ("tv"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +15@1@-1@-1@-1@-1@-1@-1@-1@-1@(72 int-cl 0.000000 0 4 (71 in-situ-ques 0.000000 0 4 (70 subj-head 0.000000 0 4 (68 headn-adj 0.000000 0 2 (5 who 0.000000 0 1 ("who")) (6 Q 0.000000 1 2 ("Q"))) (69 comp-head 0.000000 2 4 (7 what 0.000000 2 3 ("what")) (8 tv 0.000000 3 4 ("tv"))))))@@("S" ("S" ("S" ("NP" ("NP" ("who")) ("ADV" ("Q"))) ("VP" ("NP" ("what")) ("V" ("tv"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +20@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 int-cl 0.000000 0 4 (67 in-situ-ques 0.000000 0 4 (66 adj-headv 0.000000 0 4 (63 headadv-adj 0.000000 0 2 (5 where 0.000000 0 1 ("where")) (6 Q 0.000000 1 2 ("Q"))) (65 subj-head 0.000000 2 4 (64 bare-np 0.000000 2 3 (7 n1 0.000000 2 3 ("n1"))) (8 iv 0.000000 3 4 ("iv"))))))@@("S" ("S" ("S" ("ADV" ("ADV" ("where")) ("ADV" ("Q"))) ("S" ("NP" ("N" ("n1"))) ("VP" ("iv"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/run b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/run new file mode 100644 index 000000000..b7090deac --- /dev/null +++ b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1497@-1@-1@8@0@10@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@4-jun-2020 18:09:10@4-jun-2020 18:09:10@-1@ diff --git a/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/tree b/tests/regression/home/gold/wh15-insitu-oblig-part-vfinal/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/decision b/tests/regression/home/gold/wh16-morph-sep-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/edge b/tests/regression/home/gold/wh16-morph-sep-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/item b/tests/regression/home/gold/wh16-morph-sep-opt/item new file mode 100644 index 000000000..1fb6640c3 --- /dev/null +++ b/tests/regression/home/gold/wh16-morph-sep-opt/item @@ -0,0 +1,9 @@ +1@@@@1@@n iv@@@@1@2@@@ +2@@@@1@@n tv n@@@@1@3@@@ +3@@@@1@@n iv-PQ@@@@1@2@@@ +4@@@@1@@n tv-PQ n@@@@1@3@@@ +5@@@@1@@n iv-WHQ@@@@0@2@@@ +6@@@@1@@n tv-WHQ n@@@@0@3@@@ +7@@@@1@@who iv@@@@1@2@@@ +8@@@@1@@who iv-WHQ@@@@1@2@@@ +9@@@@1@@who iv-PQ@@@@0@2@@@ diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/item-set b/tests/regression/home/gold/wh16-morph-sep-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/parse b/tests/regression/home/gold/wh16-morph-sep-opt/parse new file mode 100644 index 000000000..7d9fd1f7b --- /dev/null +++ b/tests/regression/home/gold/wh16-morph-sep-opt/parse @@ -0,0 +1,9 @@ +1@0@1@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "iv", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@0@4@-1@-1@-1@-1@-1@-1@-1@242@6@-1@-1@72112@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "tv", 0, "null") (3, 2, 3, <5:6>, 1, "n", 0, "null")@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "tv", 0, "null") (3, 2, 3, <5:6>, 1, "n", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@307@19@-1@-1@150112@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "iv-PQ", 0, "null")@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "iv-PQ", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@392@30@-1@-1@85920@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "tv-PQ", 0, "null") (3, 2, 3, <8:9>, 1, "n", 0, "null")@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "tv-PQ", 0, "null") (3, 2, 3, <8:9>, 1, "n", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@7@-1@-1@-1@-1@-1@-1@-1@474@45@-1@-1@168440@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "iv-WHQ", 0, "null")@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "iv-WHQ", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@3@-1@-1@-1@-1@-1@-1@-1@570@56@-1@-1@56488@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "tv-WHQ", 0, "null") (3, 2, 3, <9:10>, 1, "n", 0, "null")@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "tv-WHQ", 0, "null") (3, 2, 3, <9:10>, 1, "n", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@583@66@-1@-1@90248@-1@-1@-1@@@ +7@0@7@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@4@-1@-1@-1@-1@-1@-1@-1@588@71@-1@-1@59360@-1@-1@-1@@@ +8@0@8@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "iv-WHQ", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "iv-WHQ", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@4@-1@-1@-1@-1@-1@-1@-1@664@79@-1@-1@74896@-1@-1@-1@@@ +9@0@9@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "iv-PQ", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "iv-PQ", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@2@-1@-1@-1@-1@-1@-1@-1@755@86@-1@-1@39128@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/preference b/tests/regression/home/gold/wh16-morph-sep-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/relations b/tests/regression/home/gold/wh16-morph-sep-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh16-morph-sep-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/result b/tests/regression/home/gold/wh16-morph-sep-opt/result new file mode 100644 index 000000000..a5e26db51 --- /dev/null +++ b/tests/regression/home/gold/wh16-morph-sep-opt/result @@ -0,0 +1,6 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(18 subj-head 0.000000 0 2 (17 bare-np 0.000000 0 1 (3 n 0.000000 0 1 ("n"))) (4 iv 0.000000 1 2 ("iv")))@@("S" ("NP" ("N" ("n"))) ("VP" ("iv")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 subj-head 0.000000 0 3 (27 bare-np 0.000000 0 1 (4 n 0.000000 0 1 ("n"))) (29 head-comp 0.000000 1 3 (5 tv 0.000000 1 2 ("tv")) (28 bare-np 0.000000 2 3 (6 n 0.000000 2 3 ("n")))))@@("S" ("NP" ("N" ("n"))) ("VP" ("V" ("tv")) ("NP" ("N" ("n")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(20 subj-head 0.000000 0 2 (18 bare-np 0.000000 0 1 (3 n 0.000000 0 1 ("n"))) (19 PQ-suffix 0.000000 1 2 (4 iv 0.000000 1 2 ("iv-PQ"))))@@("S" ("NP" ("N" ("n"))) ("VP" ("VP" ("iv-PQ"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(32 subj-head 0.000000 0 3 (28 bare-np 0.000000 0 1 (4 n 0.000000 0 1 ("n"))) (31 head-comp 0.000000 1 3 (29 PQ-suffix 0.000000 1 2 (5 tv 0.000000 1 2 ("tv-PQ"))) (30 bare-np 0.000000 2 3 (6 n 0.000000 2 3 ("n")))))@@("S" ("NP" ("N" ("n"))) ("VP" ("V" ("V" ("tv-PQ"))) ("NP" ("N" ("n")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(17 in-situ-ques 0.000000 0 2 (16 subj-head 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (4 iv 0.000000 1 2 ("iv"))))@@("S" ("S" ("NP" ("who")) ("VP" ("iv"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(19 in-situ-ques 0.000000 0 2 (18 subj-head 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (17 WHQ-suffix 0.000000 1 2 (4 iv 0.000000 1 2 ("iv-WHQ")))))@@("S" ("S" ("NP" ("who")) ("VP" ("VP" ("iv-WHQ")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/run b/tests/regression/home/gold/wh16-morph-sep-opt/run new file mode 100644 index 000000000..63af25219 --- /dev/null +++ b/tests/regression/home/gold/wh16-morph-sep-opt/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1470@-1@-1@5@2@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@10-jun-2020 16:50:20@10-jun-2020 16:50:20@-1@ diff --git a/tests/regression/home/gold/wh16-morph-sep-opt/tree b/tests/regression/home/gold/wh16-morph-sep-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/decision b/tests/regression/home/gold/wh17-morph-sep-oblig/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/edge b/tests/regression/home/gold/wh17-morph-sep-oblig/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/item b/tests/regression/home/gold/wh17-morph-sep-oblig/item new file mode 100644 index 000000000..933eeb0d4 --- /dev/null +++ b/tests/regression/home/gold/wh17-morph-sep-oblig/item @@ -0,0 +1,9 @@ +1@@@@1@@n iv@@@@1@2@@@ +2@@@@1@@n tv n@@@@1@3@@@ +3@@@@1@@n iv-PQ@@@@1@2@@@ +4@@@@1@@n tv-PQ n@@@@1@3@@@ +5@@@@1@@n iv-WHQ@@@@0@2@@@ +6@@@@1@@n tv-WHQ n@@@@0@3@@@ +7@@@@1@@who iv@@@@0@2@@@ +8@@@@1@@who iv-WHQ@@@@1@2@@@ +9@@@@1@@who iv-PQ@@@@0@2@@@ diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/item-set b/tests/regression/home/gold/wh17-morph-sep-oblig/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/parse b/tests/regression/home/gold/wh17-morph-sep-oblig/parse new file mode 100644 index 000000000..7dcae33d7 --- /dev/null +++ b/tests/regression/home/gold/wh17-morph-sep-oblig/parse @@ -0,0 +1,9 @@ +1@0@1@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "iv", 0, "null")@1@-1@2@2@-1@3@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@284@7@-1@-1@84632@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "tv", 0, "null") (3, 2, 3, <5:6>, 1, "n", 0, "null")@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:4>, 1, "tv", 0, "null") (3, 2, 3, <5:6>, 1, "n", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@8@-1@-1@-1@-1@-1@-1@-1@368@22@-1@-1@166272@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "iv-PQ", 0, "null")@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "iv-PQ", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@465@34@-1@-1@86880@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "tv-PQ", 0, "null") (3, 2, 3, <8:9>, 1, "n", 0, "null")@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:7>, 1, "tv-PQ", 0, "null") (3, 2, 3, <8:9>, 1, "n", 0, "null")@1@-1@0@0@-1@1@-1@-1@-1@-1@-1@-1@2@7@-1@-1@-1@-1@-1@-1@-1@547@49@-1@-1@169960@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "iv-WHQ", 0, "null")@2@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "iv-WHQ", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@3@-1@-1@-1@-1@-1@-1@-1@643@60@-1@-1@57248@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "tv-WHQ", 0, "null") (3, 2, 3, <9:10>, 1, "n", 0, "null")@3@(1, 0, 1, <0:1>, 1, "n", 0, "null") (2, 1, 2, <2:8>, 1, "tv-WHQ", 0, "null") (3, 2, 3, <9:10>, 1, "n", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@656@70@-1@-1@91320@-1@-1@-1@@@ +7@0@7@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@4@-1@-1@-1@-1@-1@-1@-1@663@75@-1@-1@41460@-1@-1@-1@@@ +8@0@8@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "iv-WHQ", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "iv-WHQ", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@4@-1@-1@-1@-1@-1@-1@-1@671@81@-1@-1@75736@-1@-1@-1@@@ +9@0@9@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "iv-PQ", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "iv-PQ", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@2@-1@-1@-1@-1@-1@-1@-1@762@88@-1@-1@39688@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/preference b/tests/regression/home/gold/wh17-morph-sep-oblig/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/relations b/tests/regression/home/gold/wh17-morph-sep-oblig/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh17-morph-sep-oblig/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/result b/tests/regression/home/gold/wh17-morph-sep-oblig/result new file mode 100644 index 000000000..280df249b --- /dev/null +++ b/tests/regression/home/gold/wh17-morph-sep-oblig/result @@ -0,0 +1,5 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(21 subj-head 0.000000 0 2 (19 bare-np 0.000000 0 1 (3 n 0.000000 0 1 ("n"))) (20 decl-lex 0.000000 1 2 (4 iv 0.000000 1 2 ("iv"))))@@("S" ("NP" ("N" ("n"))) ("VP" ("VP" ("iv"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 subj-head 0.000000 0 3 (29 bare-np 0.000000 0 1 (4 n 0.000000 0 1 ("n"))) (32 head-comp 0.000000 1 3 (30 decl-lex 0.000000 1 2 (5 tv 0.000000 1 2 ("tv"))) (31 bare-np 0.000000 2 3 (6 n 0.000000 2 3 ("n")))))@@("S" ("NP" ("N" ("n"))) ("VP" ("V" ("V" ("tv"))) ("NP" ("N" ("n")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(21 subj-head 0.000000 0 2 (19 bare-np 0.000000 0 1 (3 n 0.000000 0 1 ("n"))) (20 PQ-suffix 0.000000 1 2 (4 iv 0.000000 1 2 ("iv-PQ"))))@@("S" ("NP" ("N" ("n"))) ("VP" ("VP" ("iv-PQ"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 subj-head 0.000000 0 3 (29 bare-np 0.000000 0 1 (4 n 0.000000 0 1 ("n"))) (32 head-comp 0.000000 1 3 (30 PQ-suffix 0.000000 1 2 (5 tv 0.000000 1 2 ("tv-PQ"))) (31 bare-np 0.000000 2 3 (6 n 0.000000 2 3 ("n")))))@@("S" ("NP" ("N" ("n"))) ("VP" ("V" ("V" ("tv-PQ"))) ("NP" ("N" ("n")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(20 in-situ-ques 0.000000 0 2 (19 subj-head 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (18 WHQ-suffix 0.000000 1 2 (4 iv 0.000000 1 2 ("iv-WHQ")))))@@("S" ("S" ("NP" ("who")) ("VP" ("VP" ("iv-WHQ")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/run b/tests/regression/home/gold/wh17-morph-sep-oblig/run new file mode 100644 index 000000000..3888a6879 --- /dev/null +++ b/tests/regression/home/gold/wh17-morph-sep-oblig/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1473@-1@-1@5@3@4@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@10-jun-2020 17:46:32@10-jun-2020 17:46:32@-1@ diff --git a/tests/regression/home/gold/wh17-morph-sep-oblig/tree b/tests/regression/home/gold/wh17-morph-sep-oblig/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh18-aux-inv-both/decision b/tests/regression/home/gold/wh18-aux-inv-both/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh18-aux-inv-both/edge b/tests/regression/home/gold/wh18-aux-inv-both/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh18-aux-inv-both/item b/tests/regression/home/gold/wh18-aux-inv-both/item new file mode 100644 index 000000000..98d8575c0 --- /dev/null +++ b/tests/regression/home/gold/wh18-aux-inv-both/item @@ -0,0 +1,11 @@ +1@@@@1@@do the dogs sleep@@@@1@4@@@ +2@@@@1@@I wonder whether do the dogs sleep@@@@0@7@@@ +3@@@@1@@I wonder whether the dogs sleep@@@@1@6@@@ +4@@@@1@@who do sleep@@@@1@3@@@ +5@@@@1@@who sleep@@@@0@2@@@ +6@@@@1@@I wonder who do sleep@@@@1@5@@@ +7@@@@1@@I wonder who sleep@@@@0@4@@@ +8@@@@1@@what do the dogs chase@@@@1@5@@@ +9@@@@1@@what the dogs chase@@@@0@4@@@ +10@@@@1@@I wonder what do the dogs chase@@@@1@7@@@ +11@@@@1@@I wonder what the dogs chase@@@@0@6@@@ diff --git a/tests/regression/home/gold/wh18-aux-inv-both/item-set b/tests/regression/home/gold/wh18-aux-inv-both/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh18-aux-inv-both/parse b/tests/regression/home/gold/wh18-aux-inv-both/parse new file mode 100644 index 000000000..e9758b8e6 --- /dev/null +++ b/tests/regression/home/gold/wh18-aux-inv-both/parse @@ -0,0 +1,11 @@ +1@0@1@4@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "dogs", 0, "null") (4, 3, 4, <12:17>, 1, "sleep", 0, "null")@4@(1, 0, 1, <0:2>, 1, "do", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:11>, 1, "dogs", 0, "null") (4, 3, 4, <12:17>, 1, "sleep", 0, "null")@1@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@48@41@-1@-1@-1@-1@-1@-1@-1@957@108@-1@-1@1283880@-1@-1@-1@@@ +2@0@2@7@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:16>, 1, "whether", 0, "null") (4, 3, 4, <17:19>, 1, "do", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null") (6, 5, 6, <24:28>, 1, "dogs", 0, "null") (7, 6, 7, <29:34>, 1, "sleep", 0, "null")@7@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:16>, 1, "whether", 0, "null") (4, 3, 4, <17:19>, 1, "do", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null") (6, 5, 6, <24:28>, 1, "dogs", 0, "null") (7, 6, 7, <29:34>, 1, "sleep", 0, "null")@0@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@106@68@-1@-1@-1@-1@-1@-1@-1@1577@325@-1@-1@2502040@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:16>, 1, "whether", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:25>, 1, "dogs", 0, "null") (6, 5, 6, <26:31>, 1, "sleep", 0, "null")@6@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:16>, 1, "whether", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:25>, 1, "dogs", 0, "null") (6, 5, 6, <26:31>, 1, "sleep", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@44@53@-1@-1@-1@-1@-1@-1@-1@1822@451@-1@-1@1527456@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:12>, 1, "sleep", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "do", 0, "null") (3, 2, 3, <7:12>, 1, "sleep", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@37@51@-1@-1@-1@-1@-1@-1@-1@2381@576@-1@-1@1306056@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "sleep", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:9>, 1, "sleep", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@13@-1@-1@-1@-1@-1@-1@-1@2706@614@-1@-1@135736@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:15>, 1, "do", 0, "null") (5, 4, 5, <16:21>, 1, "sleep", 0, "null")@5@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:15>, 1, "do", 0, "null") (5, 4, 5, <16:21>, 1, "sleep", 0, "null")@2@-1@9@9@-1@10@-1@-1@-1@-1@-1@-1@76@111@-1@-1@-1@-1@-1@-1@-1@3358@864@-1@-1@3118040@-1@-1@-1@@@ +7@0@7@4@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:18>, 1, "sleep", 0, "null")@4@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:18>, 1, "sleep", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@23@25@-1@-1@-1@-1@-1@-1@-1@3938@953@-1@-1@638904@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:16>, 1, "dogs", 0, "null") (5, 4, 5, <17:22>, 1, "chase", 0, "null")@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "do", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:16>, 1, "dogs", 0, "null") (5, 4, 5, <17:22>, 1, "chase", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@51@40@-1@-1@-1@-1@-1@-1@-1@4149@1064@-1@-1@1349528@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:13>, 1, "dogs", 0, "null") (4, 3, 4, <14:19>, 1, "chase", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:13>, 1, "dogs", 0, "null") (4, 3, 4, <14:19>, 1, "chase", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@14@-1@-1@-1@-1@-1@-1@-1@4374@1098@-1@-1@228836@-1@-1@-1@@@ +10@0@10@7@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "do", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "dogs", 0, "null") (7, 6, 7, <26:31>, 1, "chase", 0, "null")@7@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "do", 0, "null") (5, 4, 5, <17:20>, 1, "the", 0, "null") (6, 5, 6, <21:25>, 1, "dogs", 0, "null") (7, 6, 7, <26:31>, 1, "chase", 0, "null")@1@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@90@68@-1@-1@-1@-1@-1@-1@-1@4754@1293@-1@-1@2578168@-1@-1@-1@@@ +11@0@11@6@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "dogs", 0, "null") (6, 5, 6, <23:28>, 1, "chase", 0, "null")@6@(1, 0, 1, <0:1>, 1, "I", 0, "null") (2, 1, 2, <2:8>, 1, "wonder", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "dogs", 0, "null") (6, 5, 6, <23:28>, 1, "chase", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@27@26@-1@-1@-1@-1@-1@-1@-1@5146@1375@-1@-1@732100@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh18-aux-inv-both/preference b/tests/regression/home/gold/wh18-aux-inv-both/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh18-aux-inv-both/relations b/tests/regression/home/gold/wh18-aux-inv-both/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh18-aux-inv-both/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh18-aux-inv-both/result b/tests/regression/home/gold/wh18-aux-inv-both/result new file mode 100644 index 000000000..63ac82e1f --- /dev/null +++ b/tests/regression/home/gold/wh18-aux-inv-both/result @@ -0,0 +1,8 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(166 int 0.000000 0 4 (165 head-comp 0.000000 0 4 (163 head-comp 0.000000 0 3 (160 inv-lr 0.000000 0 1 (159 pl-lex 0.000000 0 1 (5 do 0.000000 0 1 ("do")))) (162 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (161 plural-suffix 0.000000 2 3 (7 dog 0.000000 2 3 ("dogs"))))) (164 nonfin-lex 0.000000 3 4 (8 sleep 0.000000 3 4 ("sleep")))))@@("S" ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))) ("VP" ("VP" ("sleep")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_def_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(212 subj-head 0.000000 0 6 (201 bare-np 0.000000 0 1 (7 I 0.000000 0 1 ("I"))) (211 head-comp 0.000000 1 6 (210 non-3rd-lex 0.000000 1 2 (8 wonder 0.000000 1 2 ("wonder"))) (207 head-comp 0.000000 2 6 (9 whether 0.000000 2 3 ("whether")) (206 subj-head 0.000000 3 6 (204 head-spec 0.000000 3 5 (10 the 0.000000 3 4 ("the")) (203 plural-suffix 0.000000 4 5 (11 dog 0.000000 4 5 ("dogs")))) (205 pl-lex 0.000000 5 6 (12 sleep 0.000000 5 6 ("sleep")))))))@@("S" ("NP" ("N" ("I"))) ("VP" ("V" ("V" ("wonder"))) ("CP" ("C" ("whether")) ("S" ("NP" ("D" ("the")) ("N" ("N" ("dogs")))) ("VP" ("VP" ("sleep")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h11 BODY: h12 ] [ "_dog_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_sleep_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(160 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (156 ex-subj 0.000000 1 3 (155 head-comp 0.000000 1 3 (153 pl-lex 0.000000 1 2 (5 do 0.000000 1 2 ("do"))) (154 nonfin-lex 0.000000 2 3 (6 sleep 0.000000 2 3 ("sleep"))))))@@("S" ("NP" ("who")) ("S" ("VP" ("V" ("V" ("do"))) ("VP" ("VP" ("sleep"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(172 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (169 head-comp 0.000000 1 3 (168 ex-comp 0.000000 1 2 (167 inv-lr 0.000000 1 2 (166 pl-lex 0.000000 1 2 (5 do 0.000000 1 2 ("do"))))) (164 nonfin-lex 0.000000 2 3 (6 sleep 0.000000 2 3 ("sleep")))))@@("S" ("NP" ("who")) ("S" ("V" ("V-M" ("V" ("V" ("do"))))) ("VP" ("VP" ("sleep")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.25)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(330 subj-head 0.000000 0 5 (313 bare-np 0.000000 0 1 (6 I 0.000000 0 1 ("I"))) (328 head-comp 0.000000 1 5 (327 non-3rd-lex 0.000000 1 2 (7 wonder 0.000000 1 2 ("wonder"))) (322 wh-ques 0.000000 2 5 (8 who 0.000000 2 3 ("who")) (318 ex-subj 0.000000 3 5 (317 head-comp 0.000000 3 5 (315 pl-lex 0.000000 3 4 (9 do 0.000000 3 4 ("do"))) (316 nonfin-lex 0.000000 4 5 (10 sleep 0.000000 4 5 ("sleep"))))))))@@("S" ("NP" ("N" ("I"))) ("VP" ("V" ("V" ("wonder"))) ("S" ("NP" ("who")) ("S" ("VP" ("V" ("V" ("do"))) ("VP" ("VP" ("sleep"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(350 subj-head 0.000000 0 5 (313 bare-np 0.000000 0 1 (6 I 0.000000 0 1 ("I"))) (346 head-comp 0.000000 1 5 (327 non-3rd-lex 0.000000 1 2 (7 wonder 0.000000 1 2 ("wonder"))) (341 wh-ques 0.000000 2 5 (8 who 0.000000 2 3 ("who")) (339 head-comp 0.000000 3 5 (338 ex-comp 0.000000 3 4 (337 inv-lr 0.000000 3 4 (336 pl-lex 0.000000 3 4 (9 do 0.000000 3 4 ("do"))))) (334 nonfin-lex 0.000000 4 5 (10 sleep 0.000000 4 5 ("sleep")))))))@@("S" ("NP" ("N" ("I"))) ("VP" ("V" ("V" ("wonder"))) ("S" ("NP" ("who")) ("S" ("V" ("V-M" ("V" ("V" ("do"))))) ("VP" ("VP" ("sleep")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.125)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(182 wh-ques 0.000000 0 5 (6 what 0.000000 0 1 ("what")) (181 head-comp 0.000000 1 5 (178 head-comp 0.000000 1 4 (175 inv-lr 0.000000 1 2 (174 pl-lex 0.000000 1 2 (7 do 0.000000 1 2 ("do")))) (177 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (176 plural-suffix 0.000000 3 4 (9 dog 0.000000 3 4 ("dogs"))))) (180 ex-comp 0.000000 4 5 (179 nonfin-lex 0.000000 4 5 (10 chase 0.000000 4 5 ("chase"))))))@@("S" ("NP" ("what")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))) ("VP" ("V" ("V" ("chase"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_def_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(297 subj-head 0.000000 0 7 (282 bare-np 0.000000 0 1 (8 I 0.000000 0 1 ("I"))) (296 head-comp 0.000000 1 7 (295 non-3rd-lex 0.000000 1 2 (9 wonder 0.000000 1 2 ("wonder"))) (292 wh-ques 0.000000 2 7 (10 what 0.000000 2 3 ("what")) (291 head-comp 0.000000 3 7 (288 head-comp 0.000000 3 6 (285 inv-lr 0.000000 3 4 (284 pl-lex 0.000000 3 4 (11 do 0.000000 3 4 ("do")))) (287 head-spec 0.000000 4 6 (12 the 0.000000 4 5 ("the")) (286 plural-suffix 0.000000 5 6 (13 dog 0.000000 5 6 ("dogs"))))) (290 ex-comp 0.000000 6 7 (289 nonfin-lex 0.000000 6 7 (14 chase 0.000000 6 7 ("chase"))))))))@@("S" ("NP" ("N" ("I"))) ("VP" ("V" ("V" ("wonder"))) ("S" ("NP" ("what")) ("S" ("V" ("V-M" ("V" ("V" ("do")))) ("NP" ("D" ("the")) ("N" ("N" ("dogs"))))) ("VP" ("V" ("V" ("chase"))))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 1st PNG.NUM: sg ] RSTR: h5 BODY: h6 ] [ "_pronoun_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_wonder_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_def_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: pl ] RSTR: h16 BODY: h17 ] [ "_dog_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_chase_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh18-aux-inv-both/run b/tests/regression/home/gold/wh18-aux-inv-both/run new file mode 100644 index 000000000..3b04d2957 --- /dev/null +++ b/tests/regression/home/gold/wh18-aux-inv-both/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1626@-1@-1@21@8@11@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 16:05:13@26-aug-2020 16:05:13@-1@ diff --git a/tests/regression/home/gold/wh18-aux-inv-both/tree b/tests/regression/home/gold/wh18-aux-inv-both/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh19-cfocus-marking/decision b/tests/regression/home/gold/wh19-cfocus-marking/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh19-cfocus-marking/edge b/tests/regression/home/gold/wh19-cfocus-marking/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh19-cfocus-marking/item b/tests/regression/home/gold/wh19-cfocus-marking/item new file mode 100644 index 000000000..0594b897d --- /dev/null +++ b/tests/regression/home/gold/wh19-cfocus-marking/item @@ -0,0 +1,10 @@ +1@@@@1@@CN IV@@@@1@2@@@ +2@@@@1@@CN CF IV@@@@1@3@@@ +3@@@@1@@who IV@@@@1@2@@@ +4@@@@1@@CN what TV@@@@1@3@@@ +5@@@@1@@CN what CF TV@@@@1@4@@@ +6@@@@1@@who CF IV@@@@1@3@@@ +7@@@@1@@who CF CN TV@@@@1@4@@@ +8@@@@1@@CN CN TV@@@@1@3@@@ +9@@@@1@@CN CF CN TV@@@@1@4@@@ +10@@@@1@@CN CN CF TV@@@@1@4@@@ diff --git a/tests/regression/home/gold/wh19-cfocus-marking/item-set b/tests/regression/home/gold/wh19-cfocus-marking/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh19-cfocus-marking/parse b/tests/regression/home/gold/wh19-cfocus-marking/parse new file mode 100644 index 000000000..382570f40 --- /dev/null +++ b/tests/regression/home/gold/wh19-cfocus-marking/parse @@ -0,0 +1,10 @@ +1@0@1@2@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "IV", 0, "null")@2@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "IV", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@5@4@-1@-1@-1@-1@-1@-1@-1@248@11@-1@-1@131496@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "IV", 0, "null")@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "IV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@7@-1@-1@-1@-1@-1@-1@-1@331@38@-1@-1@312176@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "IV", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "IV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@424@48@-1@-1@82416@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "TV", 0, "null")@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "TV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@7@-1@-1@-1@-1@-1@-1@-1@514@67@-1@-1@227776@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "CF", 0, "null") (4, 3, 4, <11:13>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "CF", 0, "null") (4, 3, 4, <11:13>, 1, "TV", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@9@-1@-1@-1@-1@-1@-1@-1@639@97@-1@-1@358376@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "IV", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "IV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@6@-1@-1@-1@-1@-1@-1@-1@789@118@-1@-1@203776@-1@-1@-1@@@ +7@0@7@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "CN", 0, "null") (4, 3, 4, <10:12>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "CN", 0, "null") (4, 3, 4, <10:12>, 1, "TV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@9@-1@-1@-1@-1@-1@-1@-1@928@147@-1@-1@352888@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "TV", 0, "null")@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "TV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@7@-1@-1@-1@-1@-1@-1@-1@1086@173@-1@-1@271288@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "CN", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "CN", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@21@10@-1@-1@-1@-1@-1@-1@-1@1207@212@-1@-1@454288@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "CF", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "CF", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@21@10@-1@-1@-1@-1@-1@-1@-1@1361@252@-1@-1@461088@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh19-cfocus-marking/preference b/tests/regression/home/gold/wh19-cfocus-marking/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh19-cfocus-marking/relations b/tests/regression/home/gold/wh19-cfocus-marking/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh19-cfocus-marking/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh19-cfocus-marking/result b/tests/regression/home/gold/wh19-cfocus-marking/result new file mode 100644 index 000000000..186727e14 --- /dev/null +++ b/tests/regression/home/gold/wh19-cfocus-marking/result @@ -0,0 +1,10 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(23 subj-head 0.000000 0 2 (22 bare-np 0.000000 0 1 (3 CN 0.000000 0 1 ("CN"))) (4 IV 0.000000 1 2 ("IV")))@@("S" ("NP" ("N" ("CN"))) ("VP" ("IV")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_bark_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(45 subj-head 0.000000 0 3 (44 bare-np 0.000000 0 2 (43 head-adj-int 0.000000 0 2 (4 CN 0.000000 0 1 ("CN")) (5 CF-marker 0.000000 1 2 ("CF")))) (6 IV 0.000000 2 3 ("IV")))@@("S" ("NP" ("N" ("N" ("CN")) ("ADV" ("CF")))) ("VP" ("IV")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_bark_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < e2 contrast-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(19 in-situ-ques 0.000000 0 2 (18 subj-head 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (4 IV 0.000000 1 2 ("IV"))))@@("S" ("S" ("NP" ("who")) ("VP" ("IV"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_bark_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(38 in-situ-ques 0.000000 0 3 (37 subj-head 0.000000 0 3 (35 bare-np 0.000000 0 1 (4 CN 0.000000 0 1 ("CN"))) (36 comp-head 0.000000 1 3 (5 what 0.000000 1 2 ("what")) (6 TV 0.000000 2 3 ("TV")))))@@("S" ("S" ("NP" ("N" ("CN"))) ("VP" ("NP" ("what")) ("V" ("TV")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 in-situ-ques 0.000000 0 4 (54 subj-head 0.000000 0 4 (51 bare-np 0.000000 0 1 (5 CN 0.000000 0 1 ("CN"))) (53 comp-head 0.000000 1 4 (52 head-adj-int 0.000000 1 3 (6 what 0.000000 1 2 ("what")) (7 CF-marker 0.000000 2 3 ("CF"))) (8 TV 0.000000 3 4 ("TV")))))@@("S" ("S" ("NP" ("N" ("CN"))) ("VP" ("NP" ("NP" ("what")) ("ADV" ("CF"))) ("V" ("TV")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 > ICONS: < e2 contrast-focus x9 > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(36 in-situ-ques 0.000000 0 3 (35 subj-head 0.000000 0 3 (34 head-adj-int 0.000000 0 2 (4 who 0.000000 0 1 ("who")) (5 CF-marker 0.000000 1 2 ("CF"))) (6 IV 0.000000 2 3 ("IV"))))@@("S" ("S" ("NP" ("NP" ("who")) ("ADV" ("CF"))) ("VP" ("IV"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_bark_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < e2 contrast-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 in-situ-ques 0.000000 0 4 (54 subj-head 0.000000 0 4 (51 head-adj-int 0.000000 0 2 (5 who 0.000000 0 1 ("who")) (6 CF-marker 0.000000 1 2 ("CF"))) (53 comp-head 0.000000 2 4 (52 bare-np 0.000000 2 3 (7 CN 0.000000 2 3 ("CN"))) (8 TV 0.000000 3 4 ("TV")))))@@("S" ("S" ("NP" ("NP" ("who")) ("ADV" ("CF"))) ("VP" ("NP" ("N" ("CN"))) ("V" ("TV")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < e2 contrast-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(42 subj-head 0.000000 0 3 (39 bare-np 0.000000 0 1 (4 CN 0.000000 0 1 ("CN"))) (41 comp-head 0.000000 1 3 (40 bare-np 0.000000 1 2 (5 CN 0.000000 1 2 ("CN"))) (6 TV 0.000000 2 3 ("TV"))))@@("S" ("NP" ("N" ("CN"))) ("VP" ("NP" ("N" ("CN"))) ("V" ("TV"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(64 subj-head 0.000000 0 4 (61 bare-np 0.000000 0 2 (60 head-adj-int 0.000000 0 2 (5 CN 0.000000 0 1 ("CN")) (6 CF-marker 0.000000 1 2 ("CF")))) (63 comp-head 0.000000 2 4 (62 bare-np 0.000000 2 3 (7 CN 0.000000 2 3 ("CN"))) (8 TV 0.000000 3 4 ("TV"))))@@("S" ("NP" ("N" ("N" ("CN")) ("ADV" ("CF")))) ("VP" ("NP" ("N" ("CN"))) ("V" ("TV"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < e2 contrast-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(64 subj-head 0.000000 0 4 (60 bare-np 0.000000 0 1 (5 CN 0.000000 0 1 ("CN"))) (63 comp-head 0.000000 1 4 (62 bare-np 0.000000 1 3 (61 head-adj-int 0.000000 1 3 (6 CN 0.000000 1 2 ("CN")) (7 CF-marker 0.000000 2 3 ("CF")))) (8 TV 0.000000 3 4 ("TV"))))@@("S" ("NP" ("N" ("CN"))) ("VP" ("NP" ("N" ("N" ("CN")) ("ADV" ("CF")))) ("V" ("TV"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < e2 contrast-focus x9 > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh19-cfocus-marking/run b/tests/regression/home/gold/wh19-cfocus-marking/run new file mode 100644 index 000000000..4400beb67 --- /dev/null +++ b/tests/regression/home/gold/wh19-cfocus-marking/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1489@-1@-1@9@0@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@18-jun-2020 18:08:16@18-jun-2020 18:08:16@-1@ diff --git a/tests/regression/home/gold/wh19-cfocus-marking/tree b/tests/regression/home/gold/wh19-cfocus-marking/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/decision b/tests/regression/home/gold/wh2-sov-sg-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/edge b/tests/regression/home/gold/wh2-sov-sg-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/item b/tests/regression/home/gold/wh2-sov-sg-oblig-min/item new file mode 100644 index 000000000..64be43309 --- /dev/null +++ b/tests/regression/home/gold/wh2-sov-sg-oblig-min/item @@ -0,0 +1,10 @@ +1@@@@1@@cat house sees@@@@1@3@@@ +2@@@@1@@cat sees house@@@@0@3@@@ +3@@@@1@@what cat sees?@@@@1@3@@@ +4@@@@1@@cat sees what?@@@@0@3@@@ +5@@@@1@@cat what sees?@@@@0@3@@@ +6@@@@1@@cat cat sees in house@@@@1@5@@@ +7@@@@1@@what cat sees in house?@@@@1@5@@@ +8@@@@1@@cat sees cat in house@@@@0@5@@@ +9@@@@1@@cat what sees in house?@@@@0@5@@@ +10@@@@1@@cat sees what in house?@@@@0@5@@@ diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/item-set b/tests/regression/home/gold/wh2-sov-sg-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/parse b/tests/regression/home/gold/wh2-sov-sg-oblig-min/parse new file mode 100644 index 000000000..9a525afdc --- /dev/null +++ b/tests/regression/home/gold/wh2-sov-sg-oblig-min/parse @@ -0,0 +1,10 @@ +1@0@1@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@9@11@-1@-1@-1@-1@-1@-1@-1@423@23@-1@-1@285400@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@21@10@-1@-1@-1@-1@-1@-1@-1@546@61@-1@-1@411720@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@6@12@-1@-1@-1@-1@-1@-1@-1@575@82@-1@-1@293952@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@21@9@-1@-1@-1@-1@-1@-1@-1@807@123@-1@-1@405476@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@10@-1@-1@-1@-1@-1@-1@-1@834@142@-1@-1@188196@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:15>, 1, "in", 0, "null") (5, 4, 5, <16:21>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:15>, 1, "in", 0, "null") (5, 4, 5, <16:21>, 1, "house", 0, "null")@3@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@34@28@-1@-1@-1@-1@-1@-1@-1@927@209@-1@-1@1045072@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@3@-1@7@7@-1@7@-1@-1@-1@-1@-1@-1@38@32@-1@-1@-1@-1@-1@-1@-1@1475@304@-1@-1@1099072@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:15>, 1, "in", 0, "null") (5, 4, 5, <16:21>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:15>, 1, "in", 0, "null") (5, 4, 5, <16:21>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@28@16@-1@-1@-1@-1@-1@-1@-1@2045@372@-1@-1@565696@-1@-1@-1@@@ +9@0@9@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@30@23@-1@-1@-1@-1@-1@-1@-1@2124@430@-1@-1@643092@-1@-1@-1@@@ +10@0@10@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:16>, 1, "in", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@25@13@-1@-1@-1@-1@-1@-1@-1@2188@473@-1@-1@508060@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/preference b/tests/regression/home/gold/wh2-sov-sg-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/relations b/tests/regression/home/gold/wh2-sov-sg-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh2-sov-sg-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/result b/tests/regression/home/gold/wh2-sov-sg-oblig-min/result new file mode 100644 index 000000000..b25aa9b8f --- /dev/null +++ b/tests/regression/home/gold/wh2-sov-sg-oblig-min/result @@ -0,0 +1,9 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 subj-head 0.000000 0 3 (51 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (53 comp-head 0.000000 1 3 (52 bare-np 0.000000 1 2 (5 house 0.000000 1 2 ("house"))) (6 sees 0.000000 2 3 ("sees"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("N" ("house"))) ("V" ("sees"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(52 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (51 subj-head 0.000000 1 3 (49 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (50 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@1@-1@-1@-1@-1@-1@-1@-1@-1@(56 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (55 ex-subj 0.000000 1 3 (54 comp-head 0.000000 1 3 (53 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("VP" ("NP" ("N" ("cat"))) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(123 subj-head 0.000000 0 5 (117 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (122 head-adj 0.000000 1 5 (119 comp-head 0.000000 1 3 (118 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (8 sees 0.000000 2 3 ("sees"))) (121 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (120 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house"))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("NP" ("N" ("cat"))) ("V" ("sees"))) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(136 head-adj 0.000000 0 5 (133 subj-head 0.000000 0 3 (130 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (132 comp-head 0.000000 1 3 (131 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (8 sees 0.000000 2 3 ("sees")))) (135 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (134 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("N" ("cat"))) ("V" ("sees")))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +6@2@-1@-1@-1@-1@-1@-1@-1@-1@(129 subj-head 0.000000 0 5 (117 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (128 comp-head 0.000000 1 5 (124 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (127 head-adj 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (126 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (125 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house")))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("N" ("cat"))) ("V" ("V" ("sees")) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(131 wh-ques 0.000000 0 5 (6 what 0.000000 0 1 ("what")) (130 head-adj 0.000000 1 5 (127 ex-subj 0.000000 1 3 (126 comp-head 0.000000 1 3 (125 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (8 sees 0.000000 2 3 ("sees")))) (129 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (128 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house"))))))@@("S" ("NP" ("what")) ("S" ("S" ("VP" ("NP" ("N" ("cat"))) ("V" ("sees")))) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(143 wh-ques 0.000000 0 5 (6 what 0.000000 0 1 ("what")) (142 subj-head 0.000000 1 5 (137 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (141 head-adj 0.000000 2 5 (138 ex-comp 0.000000 2 3 (8 sees 0.000000 2 3 ("sees"))) (140 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (139 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house")))))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("V" ("sees"))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +7@2@-1@-1@-1@-1@-1@-1@-1@-1@(136 wh-ques 0.000000 0 5 (6 what 0.000000 0 1 ("what")) (135 head-adj 0.000000 1 5 (134 subj-head 0.000000 1 3 (132 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (133 ex-comp 0.000000 2 3 (8 sees 0.000000 2 3 ("sees")))) (129 head-comp 0.000000 3 5 (9 in 0.000000 3 4 ("in")) (128 bare-np 0.000000 4 5 (10 house 0.000000 4 5 ("house"))))))@@("S" ("NP" ("what")) ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_house_n_rel"<-1:-1> LBL: h18 ARG0: x14 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/run b/tests/regression/home/gold/wh2-sov-sg-oblig-min/run new file mode 100644 index 000000000..4740dce54 --- /dev/null +++ b/tests/regression/home/gold/wh2-sov-sg-oblig-min/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1498@-1@-1@8@0@10@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@2-jul-2020 14:53:22@2-jul-2020 14:53:22@-1@ diff --git a/tests/regression/home/gold/wh2-sov-sg-oblig-min/tree b/tests/regression/home/gold/wh2-sov-sg-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/decision b/tests/regression/home/gold/wh20-no-cfocus-marking/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/edge b/tests/regression/home/gold/wh20-no-cfocus-marking/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/item b/tests/regression/home/gold/wh20-no-cfocus-marking/item new file mode 100644 index 000000000..9387bcff5 --- /dev/null +++ b/tests/regression/home/gold/wh20-no-cfocus-marking/item @@ -0,0 +1,10 @@ +1@@@@1@@CN IV@@@@1@2@@@ +2@@@@1@@CN CF IV@@@@1@3@@@ +3@@@@1@@who IV@@@@1@2@@@ +4@@@@1@@CN what TV@@@@1@3@@@ +5@@@@1@@CN what CF TV@@@@0@4@@@ +6@@@@1@@who CF IV@@@@0@3@@@ +7@@@@1@@who CF CN TV@@@@0@4@@@ +8@@@@1@@CN CN TV@@@@1@3@@@ +9@@@@1@@CN CF CN TV@@@@1@4@@@ +10@@@@1@@CN CN CF TV@@@@1@4@@@ diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/item-set b/tests/regression/home/gold/wh20-no-cfocus-marking/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/parse b/tests/regression/home/gold/wh20-no-cfocus-marking/parse new file mode 100644 index 000000000..8375a516f --- /dev/null +++ b/tests/regression/home/gold/wh20-no-cfocus-marking/parse @@ -0,0 +1,10 @@ +1@0@1@2@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "IV", 0, "null")@2@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "IV", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@4@-1@-1@-1@-1@-1@-1@-1@248@11@-1@-1@131360@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "IV", 0, "null")@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "IV", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@11@6@-1@-1@-1@-1@-1@-1@-1@325@33@-1@-1@252400@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "IV", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "IV", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@422@43@-1@-1@82400@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "TV", 0, "null")@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "TV", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@7@7@-1@-1@-1@-1@-1@-1@-1@512@62@-1@-1@227640@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "CF", 0, "null") (4, 3, 4, <11:13>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:10>, 1, "CF", 0, "null") (4, 3, 4, <11:13>, 1, "TV", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@5@-1@-1@-1@-1@-1@-1@-1@629@84@-1@-1@206876@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "IV", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "IV", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@3@-1@-1@-1@-1@-1@-1@-1@642@93@-1@-1@103620@-1@-1@-1@@@ +7@0@7@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "CN", 0, "null") (4, 3, 4, <10:12>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "CF", 0, "null") (3, 2, 3, <7:9>, 1, "CN", 0, "null") (4, 3, 4, <10:12>, 1, "TV", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@6@-1@-1@-1@-1@-1@-1@-1@667@112@-1@-1@211868@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "TV", 0, "null")@3@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "TV", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@11@7@-1@-1@-1@-1@-1@-1@-1@694@133@-1@-1@271072@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "CN", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CF", 0, "null") (3, 2, 3, <6:8>, 1, "CN", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@17@9@-1@-1@-1@-1@-1@-1@-1@808@167@-1@-1@394272@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "CF", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@4@(1, 0, 1, <0:2>, 1, "CN", 0, "null") (2, 1, 2, <3:5>, 1, "CN", 0, "null") (3, 2, 3, <6:8>, 1, "CF", 0, "null") (4, 3, 4, <9:11>, 1, "TV", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@17@9@-1@-1@-1@-1@-1@-1@-1@959@202@-1@-1@401352@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/preference b/tests/regression/home/gold/wh20-no-cfocus-marking/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/relations b/tests/regression/home/gold/wh20-no-cfocus-marking/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh20-no-cfocus-marking/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/result b/tests/regression/home/gold/wh20-no-cfocus-marking/result new file mode 100644 index 000000000..6637304bc --- /dev/null +++ b/tests/regression/home/gold/wh20-no-cfocus-marking/result @@ -0,0 +1,7 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(23 subj-head 0.000000 0 2 (22 bare-np 0.000000 0 1 (3 CN 0.000000 0 1 ("CN"))) (4 IV 0.000000 1 2 ("IV")))@@("S" ("NP" ("N" ("CN"))) ("VP" ("IV")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_bark_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(40 subj-head 0.000000 0 3 (39 head-adj-int 0.000000 0 2 (38 bare-np 0.000000 0 1 (4 CN 0.000000 0 1 ("CN"))) (5 CF-marker 0.000000 1 2 ("CF"))) (6 IV 0.000000 2 3 ("IV")))@@("S" ("NP" ("NP" ("N" ("CN"))) ("ADV" ("CF"))) ("VP" ("IV")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_bark_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < e2 contrast-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(19 in-situ-ques 0.000000 0 2 (18 subj-head 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (4 IV 0.000000 1 2 ("IV"))))@@("S" ("S" ("NP" ("who")) ("VP" ("IV"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_bark_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(38 in-situ-ques 0.000000 0 3 (37 subj-head 0.000000 0 3 (35 bare-np 0.000000 0 1 (4 CN 0.000000 0 1 ("CN"))) (36 comp-head 0.000000 1 3 (5 what 0.000000 1 2 ("what")) (6 TV 0.000000 2 3 ("TV")))))@@("S" ("S" ("NP" ("N" ("CN"))) ("VP" ("NP" ("what")) ("V" ("TV")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: 3rd PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(42 subj-head 0.000000 0 3 (39 bare-np 0.000000 0 1 (4 CN 0.000000 0 1 ("CN"))) (41 comp-head 0.000000 1 3 (40 bare-np 0.000000 1 2 (5 CN 0.000000 1 2 ("CN"))) (6 TV 0.000000 2 3 ("TV"))))@@("S" ("NP" ("N" ("CN"))) ("VP" ("NP" ("N" ("CN"))) ("V" ("TV"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 subj-head 0.000000 0 4 (56 head-adj-int 0.000000 0 2 (55 bare-np 0.000000 0 1 (5 CN 0.000000 0 1 ("CN"))) (6 CF-marker 0.000000 1 2 ("CF"))) (58 comp-head 0.000000 2 4 (57 bare-np 0.000000 2 3 (7 CN 0.000000 2 3 ("CN"))) (8 TV 0.000000 3 4 ("TV"))))@@("S" ("NP" ("NP" ("N" ("CN"))) ("ADV" ("CF"))) ("VP" ("NP" ("N" ("CN"))) ("V" ("TV"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < e2 contrast-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 subj-head 0.000000 0 4 (55 bare-np 0.000000 0 1 (5 CN 0.000000 0 1 ("CN"))) (58 comp-head 0.000000 1 4 (57 head-adj-int 0.000000 1 3 (56 bare-np 0.000000 1 2 (6 CN 0.000000 1 2 ("CN"))) (7 CF-marker 0.000000 2 3 ("CF"))) (8 TV 0.000000 3 4 ("TV"))))@@("S" ("NP" ("N" ("CN"))) ("VP" ("NP" ("NP" ("N" ("CN"))) ("ADV" ("CF"))) ("V" ("TV"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_dog_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] RSTR: h10 BODY: h11 ] [ "_dog_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_chase_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < e2 contrast-focus x9 > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/run b/tests/regression/home/gold/wh20-no-cfocus-marking/run new file mode 100644 index 000000000..323e12747 --- /dev/null +++ b/tests/regression/home/gold/wh20-no-cfocus-marking/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1489@-1@-1@9@0@6@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@18-jun-2020 18:08:52@18-jun-2020 18:08:52@-1@ diff --git a/tests/regression/home/gold/wh20-no-cfocus-marking/tree b/tests/regression/home/gold/wh20-no-cfocus-marking/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh21-embed-insitu/decision b/tests/regression/home/gold/wh21-embed-insitu/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh21-embed-insitu/edge b/tests/regression/home/gold/wh21-embed-insitu/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh21-embed-insitu/item b/tests/regression/home/gold/wh21-embed-insitu/item new file mode 100644 index 000000000..86c28dbb2 --- /dev/null +++ b/tests/regression/home/gold/wh21-embed-insitu/item @@ -0,0 +1,19 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@1@3@@@ +9@@@@1@@cat what sees?@@@@0@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@1@3@@@ +13@@@@1@@cat where sleeps?@@@@1@3@@@ +14@@@@1@@who sees what?@@@@1@3@@@ +15@@@@1@@who what sees?@@@@0@3@@@ +16@@@@1@@cat asks who sleeps@@@@1@4@@@ +17@@@@1@@cat asks who sees what@@@@1@5@@@ +18@@@@1@@cat asks cat sees what@@@@1@5@@@ +19@@@@1@@cat asks what cat sees@@@@1@5@@@ diff --git a/tests/regression/home/gold/wh21-embed-insitu/item-set b/tests/regression/home/gold/wh21-embed-insitu/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh21-embed-insitu/parse b/tests/regression/home/gold/wh21-embed-insitu/parse new file mode 100644 index 000000000..8977cf068 --- /dev/null +++ b/tests/regression/home/gold/wh21-embed-insitu/parse @@ -0,0 +1,19 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@410@12@-1@-1@129392@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@6@-1@-1@-1@-1@-1@-1@-1@483@28@-1@-1@159276@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@27@28@-1@-1@-1@-1@-1@-1@-1@576@88@-1@-1@772800@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@16@-1@-1@-1@-1@-1@-1@-1@698@118@-1@-1@267136@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@6@-1@-1@-1@-1@-1@-1@-1@710@125@-1@-1@73272@-1@-1@-1@@@ +6@0@6@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@5@-1@-1@-1@-1@-1@-1@-1@796@140@-1@-1@153036@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@16@-1@-1@-1@-1@-1@-1@-1@835@163@-1@-1@270960@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@27@28@-1@-1@-1@-1@-1@-1@-1@1019@227@-1@-1@772880@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@12@-1@-1@-1@-1@-1@-1@-1@1147@249@-1@-1@186284@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@14@18@-1@-1@-1@-1@-1@-1@-1@1208@288@-1@-1@562184@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@11@-1@-1@-1@-1@-1@-1@-1@1500@318@-1@-1@209472@-1@-1@-1@@@ +12@0@12@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@17@-1@-1@-1@-1@-1@-1@-1@1674@358@-1@-1@507104@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@3@10@-1@-1@-1@-1@-1@-1@-1@1954@385@-1@-1@207392@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@1@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@18@20@-1@-1@-1@-1@-1@-1@-1@2136@431@-1@-1@542800@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@11@-1@-1@-1@-1@-1@-1@-1@2248@448@-1@-1@139164@-1@-1@-1@@@ +16@0@16@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:19>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:19>, 1, "sleeps", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@27@32@-1@-1@-1@-1@-1@-1@-1@2351@513@-1@-1@834800@-1@-1@-1@@@ +17@0@17@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:22>, 1, "what", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:12>, 1, "who", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:22>, 1, "what", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@46@46@-1@-1@-1@-1@-1@-1@-1@2639@618@-1@-1@1321976@-1@-1@-1@@@ +18@0@18@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:22>, 1, "what", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:22>, 1, "what", 0, "null")@2@-1@14@14@-1@14@-1@-1@-1@-1@-1@-1@127@139@-1@-1@-1@-1@-1@-1@-1@3246@899@-1@-1@4369984@-1@-1@-1@@@ +19@0@19@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "asks", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@30@42@-1@-1@-1@-1@-1@-1@-1@3718@994@-1@-1@1058616@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh21-embed-insitu/preference b/tests/regression/home/gold/wh21-embed-insitu/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh21-embed-insitu/relations b/tests/regression/home/gold/wh21-embed-insitu/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh21-embed-insitu/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh21-embed-insitu/result b/tests/regression/home/gold/wh21-embed-insitu/result new file mode 100644 index 000000000..ac540b81c --- /dev/null +++ b/tests/regression/home/gold/wh21-embed-insitu/result @@ -0,0 +1,17 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 subj-head 0.000000 0 2 (30 bare-np 0.000000 0 1 (3 cat 0.000000 0 1 ("cat"))) (4 sleeps 0.000000 1 2 ("sleeps")))@@("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(92 subj-head 0.000000 0 3 (89 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (91 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (90 bare-np 0.000000 2 3 (6 house 0.000000 2 3 ("house")))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(26 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (25 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (54 subj-head 0.000000 1 3 (52 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (53 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(92 in-situ-ques 0.000000 0 3 (91 subj-head 0.000000 0 3 (89 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (90 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (6 what 0.000000 2 3 ("what")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("what")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(83 subj-head 0.000000 0 4 (79 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (82 head-adj 0.000000 1 4 (6 sleeps 0.000000 1 2 ("sleeps")) (81 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (80 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house"))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(91 head-adj 0.000000 0 4 (88 subj-head 0.000000 0 2 (87 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (6 sleeps 0.000000 1 2 ("sleeps"))) (90 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (89 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 wh-ques 0.000000 0 3 (4 where 0.000000 0 1 ("where")) (48 subj-head 0.000000 1 3 (46 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (47 ex-adj-first 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("ADV" ("where")) ("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(71 in-situ-ques 0.000000 0 3 (67 subj-head 0.000000 0 3 (65 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (66 head-adj 0.000000 1 3 (5 sleeps 0.000000 1 2 ("sleeps")) (6 where 0.000000 2 3 ("where")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("ADV" ("where")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +12@1@-1@-1@-1@-1@-1@-1@-1@-1@(75 in-situ-ques 0.000000 0 3 (74 head-adj 0.000000 0 3 (73 subj-head 0.000000 0 2 (72 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (5 sleeps 0.000000 1 2 ("sleeps"))) (6 where 0.000000 2 3 ("where"))))@@("S" ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("ADV" ("where"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(48 in-situ-ques 0.000000 0 3 (47 subj-head 0.000000 0 3 (45 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (46 adj-head 0.000000 1 3 (5 where 0.000000 1 2 ("where")) (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("ADV" ("where")) ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +14@0@-1@-1@-1@-1@-1@-1@-1@-1@(73 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (72 ex-subj 0.000000 1 3 (71 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (6 what 0.000000 2 3 ("what")))))@@("S" ("NP" ("who")) ("S" ("VP" ("V" ("sees")) ("NP" ("what")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +16@0@-1@-1@-1@-1@-1@-1@-1@-1@(109 subj-head 0.000000 0 4 (105 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (108 head-comp 0.000000 1 4 (6 asks 0.000000 1 2 ("asks")) (107 wh-ques 0.000000 2 4 (7 who 0.000000 2 3 ("who")) (106 ex-subj 0.000000 3 4 (8 sleeps 0.000000 3 4 ("sleeps"))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("asks")) ("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +17@0@-1@-1@-1@-1@-1@-1@-1@-1@(156 subj-head 0.000000 0 5 (151 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (155 head-comp 0.000000 1 5 (7 asks 0.000000 1 2 ("asks")) (154 wh-ques 0.000000 2 5 (8 who 0.000000 2 3 ("who")) (153 ex-subj 0.000000 3 5 (152 head-comp 0.000000 3 5 (9 sees 0.000000 3 4 ("sees")) (10 what 0.000000 4 5 ("what")))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("asks")) ("S" ("NP" ("who")) ("S" ("VP" ("V" ("sees")) ("NP" ("what")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_sees_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h12 qeq h9 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +18@0@-1@-1@-1@-1@-1@-1@-1@-1@(332 in-situ-ques 0.000000 0 5 (331 subj-head 0.000000 0 5 (326 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (330 head-comp 0.000000 1 5 (7 asks 0.000000 1 2 ("asks")) (329 subj-head 0.000000 2 5 (327 bare-np 0.000000 2 3 (8 cat 0.000000 2 3 ("cat"))) (328 head-comp 0.000000 3 5 (9 sees 0.000000 3 4 ("sees")) (10 what 0.000000 4 5 ("what")))))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("asks")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("what")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_sees_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +18@1@-1@-1@-1@-1@-1@-1@-1@-1@(339 subj-head 0.000000 0 5 (333 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (338 head-comp 0.000000 1 5 (7 asks 0.000000 1 2 ("asks")) (337 in-situ-ques 0.000000 2 5 (336 subj-head 0.000000 2 5 (334 bare-np 0.000000 2 3 (8 cat 0.000000 2 3 ("cat"))) (335 head-comp 0.000000 3 5 (9 sees 0.000000 3 4 ("sees")) (10 what 0.000000 4 5 ("what")))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("asks")) ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("what")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x10 ] [ "_sees_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h17 ARG0: x16 ] [ "which_q_rel"<-1:-1> LBL: h18 ARG0: x16 RSTR: h19 BODY: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h14 h11 qeq h13 h19 qeq h17 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +19@0@-1@-1@-1@-1@-1@-1@-1@-1@(138 subj-head 0.000000 0 5 (132 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (137 head-comp 0.000000 1 5 (7 asks 0.000000 1 2 ("asks")) (136 wh-ques 0.000000 2 5 (8 what 0.000000 2 3 ("what")) (135 subj-head 0.000000 3 5 (133 bare-np 0.000000 3 4 (9 cat 0.000000 3 4 ("cat"))) (134 ex-comp 0.000000 4 5 (10 sees 0.000000 4 5 ("sees")))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("asks")) ("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h8 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "exist_q_rel"<-1:-1> LBL: h14 ARG0: x15 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h16 BODY: h17 ] [ "_cat_n_rel"<-1:-1> LBL: h18 ARG0: x15 ] [ "_sees_v_rel"<-1:-1> LBL: h19 ARG0: e20 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x15 ARG2: x10 ] > HCONS: < h0 qeq h1 h5 qeq h7 h8 qeq h19 h12 qeq h9 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh21-embed-insitu/run b/tests/regression/home/gold/wh21-embed-insitu/run new file mode 100644 index 000000000..75e1269cf --- /dev/null +++ b/tests/regression/home/gold/wh21-embed-insitu/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1511@-1@-1@9@0@10@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 16:29:40@26-aug-2020 16:29:40@-1@ diff --git a/tests/regression/home/gold/wh21-embed-insitu/tree b/tests/regression/home/gold/wh21-embed-insitu/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh22-no-multi-ques/decision b/tests/regression/home/gold/wh22-no-multi-ques/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh22-no-multi-ques/edge b/tests/regression/home/gold/wh22-no-multi-ques/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh22-no-multi-ques/item b/tests/regression/home/gold/wh22-no-multi-ques/item new file mode 100644 index 000000000..02f3a8630 --- /dev/null +++ b/tests/regression/home/gold/wh22-no-multi-ques/item @@ -0,0 +1,22 @@ +1@@@@1@@tv the n1 the n2@@@@1@5@@@ +2@@@@1@@who tv the n2?@@@@1@4@@@ +3@@@@1@@tv who the n2?@@@@1@4@@@ +4@@@@1@@tv the n1 what?@@@@1@4@@@ +5@@@@1@@what tv the n1?@@@@1@4@@@ +6@@@@1@@tv who what?@@@@0@3@@@ +7@@@@1@@who tv what?@@@@0@3@@@ +8@@@@1@@what tv who?@@@@0@3@@@ +9@@@@1@@where tv the n1 the n2?@@@@1@6@@@ +10@@@@1@@tv the n1 the n2 where?@@@@1@6@@@ +11@@@@1@@who tv the n2 where?@@@@0@5@@@ +12@@@@1@@which n1 tv the n2?@@@@1@5@@@ +13@@@@1@@which n1 tv what?@@@@0@4@@@ +14@@@@1@@ask the n1 who iv@@@@1@5@@@ +15@@@@1@@ask the n1 iv who@@@@1@5@@@ +16@@@@1@@ask the n1 who tv the n2@@@@1@7@@@ +17@@@@1@@ask the n1 who tv what@@@@0@6@@@ +18@@@@1@@ask the n1 who tv the n2 where@@@@0@8@@@ +19@@@@1@@ask the n1 where iv the n2@@@@1@7@@@ +20@@@@1@@who ask the n1 iv@@@@1@5@@@ +21@@@@1@@who ask the n1 tv what@@@@0@6@@@ +22@@@@1@@who ask the n1 tv the n2@@@@1@7@@@ diff --git a/tests/regression/home/gold/wh22-no-multi-ques/item-set b/tests/regression/home/gold/wh22-no-multi-ques/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh22-no-multi-ques/parse b/tests/regression/home/gold/wh22-no-multi-ques/parse new file mode 100644 index 000000000..6f4631b9a --- /dev/null +++ b/tests/regression/home/gold/wh22-no-multi-ques/parse @@ -0,0 +1,22 @@ +1@0@1@5@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:13>, 1, "the", 0, "null") (5, 4, 5, <14:16>, 1, "n2", 0, "null")@5@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:13>, 1, "the", 0, "null") (5, 4, 5, <14:16>, 1, "n2", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@20@24@-1@-1@-1@-1@-1@-1@-1@564@50@-1@-1@624512@-1@-1@-1@@@ +2@0@2@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@10@21@-1@-1@-1@-1@-1@-1@-1@759@90@-1@-1@461800@-1@-1@-1@@@ +3@0@3@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null")@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@18@22@-1@-1@-1@-1@-1@-1@-1@1073@143@-1@-1@539296@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:14>, 1, "what", 0, "null")@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:14>, 1, "what", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@20@22@-1@-1@-1@-1@-1@-1@-1@1281@194@-1@-1@597904@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "tv", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "tv", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@10@21@-1@-1@-1@-1@-1@-1@-1@1468@234@-1@-1@461848@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null") (3, 2, 3, <7:11>, 1, "what", 0, "null")@3@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null") (3, 2, 3, <7:11>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@18@16@-1@-1@-1@-1@-1@-1@-1@1774@280@-1@-1@424324@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:11>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:11>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@16@-1@-1@-1@-1@-1@-1@-1@1837@310@-1@-1@308404@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "tv", 0, "null") (3, 2, 3, <8:11>, 1, "who", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:7>, 1, "tv", 0, "null") (3, 2, 3, <8:11>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@16@-1@-1@-1@-1@-1@-1@-1@1900@340@-1@-1@308408@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "tv", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null") (5, 4, 5, <16:19>, 1, "the", 0, "null") (6, 5, 6, <20:22>, 1, "n2", 0, "null")@6@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "tv", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null") (5, 4, 5, <16:19>, 1, "the", 0, "null") (6, 5, 6, <20:22>, 1, "n2", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@21@26@-1@-1@-1@-1@-1@-1@-1@2013@394@-1@-1@713072@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:13>, 1, "the", 0, "null") (5, 4, 5, <14:16>, 1, "n2", 0, "null") (6, 5, 6, <17:22>, 1, "where", 0, "null")@6@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:13>, 1, "the", 0, "null") (5, 4, 5, <14:16>, 1, "n2", 0, "null") (6, 5, 6, <17:22>, 1, "where", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@24@28@-1@-1@-1@-1@-1@-1@-1@2317@459@-1@-1@800072@-1@-1@-1@@@ +11@0@11@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null") (5, 4, 5, <14:19>, 1, "where", 0, "null")@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null") (5, 4, 5, <14:19>, 1, "where", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@23@29@-1@-1@-1@-1@-1@-1@-1@2636@523@-1@-1@642584@-1@-1@-1@@@ +12@0@12@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:15>, 1, "the", 0, "null") (5, 4, 5, <16:18>, 1, "n2", 0, "null")@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:15>, 1, "the", 0, "null") (5, 4, 5, <16:18>, 1, "n2", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@24@-1@-1@-1@-1@-1@-1@-1@2715@566@-1@-1@557728@-1@-1@-1@@@ +13@0@13@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:16>, 1, "what", 0, "null")@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:8>, 1, "n1", 0, "null") (3, 2, 3, <9:11>, 1, "tv", 0, "null") (4, 3, 4, <12:16>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@19@-1@-1@-1@-1@-1@-1@-1@3074@612@-1@-1@387180@-1@-1@-1@@@ +14@0@14@5@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:14>, 1, "who", 0, "null") (5, 4, 5, <15:17>, 1, "iv", 0, "null")@5@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:14>, 1, "who", 0, "null") (5, 4, 5, <15:17>, 1, "iv", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@19@25@-1@-1@-1@-1@-1@-1@-1@3167@662@-1@-1@609648@-1@-1@-1@@@ +15@0@15@5@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null") (5, 4, 5, <14:17>, 1, "who", 0, "null")@5@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:13>, 1, "iv", 0, "null") (5, 4, 5, <14:17>, 1, "who", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@31@34@-1@-1@-1@-1@-1@-1@-1@3466@738@-1@-1@901288@-1@-1@-1@@@ +16@0@16@7@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:11>, 1, "n1", 0, "null") (4, 3, 4, <12:15>, 1, "who", 0, "null") (5, 4, 5, <16:18>, 1, "tv", 0, "null") (6, 5, 6, <19:22>, 1, "the", 0, "null") (7, 6, 7, <23:25>, 1, "n2", 0, "null")@7@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:11>, 1, "n1", 0, "null") (4, 3, 4, <12:15>, 1, "who", 0, "null") (5, 4, 5, <16:18>, 1, "tv", 0, "null") (6, 5, 6, <19:22>, 1, "the", 0, "null") (7, 6, 7, <23:25>, 1, "n2", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@29@41@-1@-1@-1@-1@-1@-1@-1@3768@822@-1@-1@1038712@-1@-1@-1@@@ +17@0@17@6@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:14>, 1, "who", 0, "null") (5, 4, 5, <15:17>, 1, "tv", 0, "null") (6, 5, 6, <18:22>, 1, "what", 0, "null")@6@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:14>, 1, "who", 0, "null") (5, 4, 5, <15:17>, 1, "tv", 0, "null") (6, 5, 6, <18:22>, 1, "what", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@29@32@-1@-1@-1@-1@-1@-1@-1@4296@903@-1@-1@757668@-1@-1@-1@@@ +18@0@18@8@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:14>, 1, "who", 0, "null") (5, 4, 5, <15:17>, 1, "tv", 0, "null") (6, 5, 6, <18:21>, 1, "the", 0, "null") (7, 6, 7, <22:24>, 1, "n2", 0, "null") (8, 7, 8, <25:30>, 1, "where", 0, "null")@8@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:14>, 1, "who", 0, "null") (5, 4, 5, <15:17>, 1, "tv", 0, "null") (6, 5, 6, <18:21>, 1, "the", 0, "null") (7, 6, 7, <22:24>, 1, "n2", 0, "null") (8, 7, 8, <25:30>, 1, "where", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@46@49@-1@-1@-1@-1@-1@-1@-1@4519@1008@-1@-1@1219212@-1@-1@-1@@@ +19@0@19@7@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:16>, 1, "where", 0, "null") (5, 4, 5, <17:19>, 1, "iv", 0, "null") (6, 5, 6, <20:23>, 1, "the", 0, "null") (7, 6, 7, <24:26>, 1, "n2", 0, "null")@7@(1, 0, 1, <0:3>, 1, "ask", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:10>, 1, "n1", 0, "null") (4, 3, 4, <11:16>, 1, "where", 0, "null") (5, 4, 5, <17:19>, 1, "iv", 0, "null") (6, 5, 6, <20:23>, 1, "the", 0, "null") (7, 6, 7, <24:26>, 1, "n2", 0, "null")@2@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@39@47@-1@-1@-1@-1@-1@-1@-1@4712@1104@-1@-1@1384384@-1@-1@-1@@@ +20@0@20@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:7>, 1, "ask", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null") (5, 4, 5, <15:17>, 1, "iv", 0, "null")@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:7>, 1, "ask", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null") (5, 4, 5, <15:17>, 1, "iv", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@19@30@-1@-1@-1@-1@-1@-1@-1@5283@1173@-1@-1@667368@-1@-1@-1@@@ +21@0@21@6@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:7>, 1, "ask", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null") (5, 4, 5, <15:17>, 1, "tv", 0, "null") (6, 5, 6, <18:22>, 1, "what", 0, "null")@6@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:7>, 1, "ask", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null") (5, 4, 5, <15:17>, 1, "tv", 0, "null") (6, 5, 6, <18:22>, 1, "what", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@36@46@-1@-1@-1@-1@-1@-1@-1@5640@1268@-1@-1@1076520@-1@-1@-1@@@ +22@0@22@7@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:7>, 1, "ask", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null") (5, 4, 5, <16:18>, 1, "tv", 0, "null") (6, 5, 6, <19:22>, 1, "the", 0, "null") (7, 6, 7, <23:25>, 1, "n2", 0, "null")@7@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:7>, 1, "ask", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null") (5, 4, 5, <16:18>, 1, "tv", 0, "null") (6, 5, 6, <19:22>, 1, "the", 0, "null") (7, 6, 7, <23:25>, 1, "n2", 0, "null")@2@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@36@55@-1@-1@-1@-1@-1@-1@-1@5865@1368@-1@-1@1406520@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh22-no-multi-ques/preference b/tests/regression/home/gold/wh22-no-multi-ques/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh22-no-multi-ques/relations b/tests/regression/home/gold/wh22-no-multi-ques/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh22-no-multi-ques/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh22-no-multi-ques/result b/tests/regression/home/gold/wh22-no-multi-ques/result new file mode 100644 index 000000000..4c45bcb16 --- /dev/null +++ b/tests/regression/home/gold/wh22-no-multi-ques/result @@ -0,0 +1,20 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(113 head-comp 0.000000 0 5 (111 head-subj 0.000000 0 3 (6 tv 0.000000 0 1 ("tv")) (110 head-spec 0.000000 1 3 (7 the 0.000000 1 2 ("the")) (8 n1 0.000000 2 3 ("n1")))) (112 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 n2 0.000000 4 5 ("n2"))))@@("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n1")))) ("NP" ("D" ("the")) ("N" ("n2"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(86 wh-ques 0.000000 0 4 (5 who 0.000000 0 1 ("who")) (85 ex-comp 0.000000 1 4 (84 head-subj 0.000000 1 4 (6 tv 0.000000 1 2 ("tv")) (83 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n2 0.000000 3 4 ("n2"))))))@@("S" ("NP" ("who")) ("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@1@-1@-1@-1@-1@-1@-1@-1@-1@(90 wh-ques 0.000000 0 4 (5 who 0.000000 0 1 ("who")) (89 head-comp 0.000000 1 4 (87 ex-subj 0.000000 1 2 (6 tv 0.000000 1 2 ("tv"))) (88 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n2 0.000000 3 4 ("n2")))))@@("S" ("NP" ("who")) ("S" ("V" ("V" ("tv"))) ("NP" ("D" ("the")) ("N" ("n2")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(95 in-situ-ques 0.000000 0 4 (94 head-comp 0.000000 0 4 (92 head-subj 0.000000 0 2 (5 tv 0.000000 0 1 ("tv")) (6 who 0.000000 1 2 ("who"))) (93 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n2 0.000000 3 4 ("n2")))))@@("S" ("S" ("V" ("V" ("tv")) ("NP" ("who"))) ("NP" ("D" ("the")) ("N" ("n2")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_person_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h7 qeq h5 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(97 in-situ-ques 0.000000 0 4 (96 head-comp 0.000000 0 4 (95 head-subj 0.000000 0 3 (5 tv 0.000000 0 1 ("tv")) (94 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (7 n1 0.000000 2 3 ("n1")))) (8 what 0.000000 3 4 ("what"))))@@("S" ("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n1")))) ("NP" ("what"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(86 wh-ques 0.000000 0 4 (5 what 0.000000 0 1 ("what")) (85 ex-comp 0.000000 1 4 (84 head-subj 0.000000 1 4 (6 tv 0.000000 1 2 ("tv")) (83 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n1 0.000000 3 4 ("n1"))))))@@("S" ("NP" ("what")) ("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n1"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@1@-1@-1@-1@-1@-1@-1@-1@-1@(90 wh-ques 0.000000 0 4 (5 what 0.000000 0 1 ("what")) (89 head-comp 0.000000 1 4 (87 ex-subj 0.000000 1 2 (6 tv 0.000000 1 2 ("tv"))) (88 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n1 0.000000 3 4 ("n1")))))@@("S" ("NP" ("what")) ("S" ("V" ("V" ("tv"))) ("NP" ("D" ("the")) ("N" ("n1")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(132 wh-ques 0.000000 0 6 (7 where 0.000000 0 1 ("where")) (131 head-comp 0.000000 1 6 (129 head-subj 0.000000 1 4 (127 ex-adj-first 0.000000 1 2 (8 tv 0.000000 1 2 ("tv"))) (128 head-spec 0.000000 2 4 (9 the 0.000000 2 3 ("the")) (10 n1 0.000000 3 4 ("n1")))) (130 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 n2 0.000000 5 6 ("n2")))))@@("S" ("ADV" ("where")) ("S" ("V" ("V" ("V" ("tv"))) ("NP" ("D" ("the")) ("N" ("n1")))) ("NP" ("D" ("the")) ("N" ("n2")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_n1_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h15 ARG0: x10 RSTR: h16 BODY: h17 ] [ "_n2_n_rel"<-1:-1> LBL: h18 ARG0: x10 ] > HCONS: < h0 qeq h1 h8 qeq h6 h12 qeq h14 h16 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(137 in-situ-ques 0.000000 0 6 (136 head-adj 0.000000 0 6 (135 head-comp 0.000000 0 5 (133 head-subj 0.000000 0 3 (7 tv 0.000000 0 1 ("tv")) (132 head-spec 0.000000 1 3 (8 the 0.000000 1 2 ("the")) (9 n1 0.000000 2 3 ("n1")))) (134 head-spec 0.000000 3 5 (10 the 0.000000 3 4 ("the")) (11 n2 0.000000 4 5 ("n2")))) (12 where 0.000000 5 6 ("where"))))@@("S" ("S" ("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n1")))) ("NP" ("D" ("the")) ("N" ("n2")))) ("ADV" ("where"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "which_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(107 wh-ques 0.000000 0 5 (103 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 n1 0.000000 1 2 ("n1"))) (106 ex-comp 0.000000 2 5 (105 head-subj 0.000000 2 5 (8 tv 0.000000 2 3 ("tv")) (104 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 n2 0.000000 4 5 ("n2"))))))@@("S" ("NP" ("D" ("which")) ("N" ("n1"))) ("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +12@1@-1@-1@-1@-1@-1@-1@-1@-1@(111 wh-ques 0.000000 0 5 (103 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 n1 0.000000 1 2 ("n1"))) (110 head-comp 0.000000 2 5 (108 ex-subj 0.000000 2 3 (8 tv 0.000000 2 3 ("tv"))) (109 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 n2 0.000000 4 5 ("n2")))))@@("S" ("NP" ("D" ("which")) ("N" ("n1"))) ("S" ("V" ("V" ("tv"))) ("NP" ("D" ("the")) ("N" ("n2")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_n2_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +14@0@-1@-1@-1@-1@-1@-1@-1@-1@(114 head-comp 0.000000 0 5 (111 head-subj 0.000000 0 3 (6 ask 0.000000 0 1 ("ask")) (110 head-spec 0.000000 1 3 (7 the 0.000000 1 2 ("the")) (8 n1 0.000000 2 3 ("n1")))) (113 wh-ques 0.000000 3 5 (9 who 0.000000 3 4 ("who")) (112 ex-subj 0.000000 4 5 (10 iv 0.000000 4 5 ("iv")))))@@("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("NP" ("who")) ("S" ("VP" ("iv")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_iv_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h12 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +15@0@-1@-1@-1@-1@-1@-1@-1@-1@(135 head-comp 0.000000 0 5 (132 head-subj 0.000000 0 3 (6 ask 0.000000 0 1 ("ask")) (131 head-spec 0.000000 1 3 (7 the 0.000000 1 2 ("the")) (8 n1 0.000000 2 3 ("n1")))) (134 in-situ-ques 0.000000 3 5 (133 head-subj 0.000000 3 5 (9 iv 0.000000 3 4 ("iv")) (10 who 0.000000 4 5 ("who")))))@@("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("S" ("VP" ("iv")) ("NP" ("who")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x11 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_person_n_rel"<-1:-1> LBL: h12 ARG0: x11 ] [ "which_q_rel"<-1:-1> LBL: h13 ARG0: x11 RSTR: h14 BODY: h15 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h14 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +16@0@-1@-1@-1@-1@-1@-1@-1@-1@(171 head-comp 0.000000 0 7 (166 head-subj 0.000000 0 3 (8 ask 0.000000 0 1 ("ask")) (165 head-spec 0.000000 1 3 (9 the 0.000000 1 2 ("the")) (10 n1 0.000000 2 3 ("n1")))) (170 wh-ques 0.000000 3 7 (11 who 0.000000 3 4 ("who")) (169 head-comp 0.000000 4 7 (167 ex-subj 0.000000 4 5 (12 tv 0.000000 4 5 ("tv"))) (168 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (14 n2 0.000000 6 7 ("n2"))))))@@("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("NP" ("who")) ("S" ("V" ("V" ("tv"))) ("NP" ("D" ("the")) ("N" ("n2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tv_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x10 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_n2_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h12 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +16@1@-1@-1@-1@-1@-1@-1@-1@-1@(176 head-comp 0.000000 0 7 (166 head-subj 0.000000 0 3 (8 ask 0.000000 0 1 ("ask")) (165 head-spec 0.000000 1 3 (9 the 0.000000 1 2 ("the")) (10 n1 0.000000 2 3 ("n1")))) (175 wh-ques 0.000000 3 7 (11 who 0.000000 3 4 ("who")) (174 ex-comp 0.000000 4 7 (173 head-subj 0.000000 4 7 (12 tv 0.000000 4 5 ("tv")) (172 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (14 n2 0.000000 6 7 ("n2")))))))@@("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("NP" ("who")) ("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n2")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x10 RSTR: h12 BODY: h13 ] [ "_tv_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x10 ] [ "_the_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_n2_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h4 qeq h14 h6 qeq h8 h12 qeq h9 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +19@0@-1@-1@-1@-1@-1@-1@-1@-1@(188 in-situ-ques 0.000000 0 7 (187 head-comp 0.000000 0 7 (184 head-adj 0.000000 0 4 (183 head-subj 0.000000 0 3 (8 ask 0.000000 0 1 ("ask")) (182 head-spec 0.000000 1 3 (9 the 0.000000 1 2 ("the")) (10 n1 0.000000 2 3 ("n1")))) (11 where 0.000000 3 4 ("where"))) (186 head-subj 0.000000 4 7 (12 iv 0.000000 4 5 ("iv")) (185 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (14 n2 0.000000 6 7 ("n2"))))))@@("S" ("S" ("V" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("ADV" ("where"))) ("S" ("VP" ("iv")) ("NP" ("D" ("the")) ("N" ("n2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x10 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h11 ARG0: x10 ] [ "which_q_rel"<-1:-1> LBL: h12 ARG0: x10 RSTR: h13 BODY: h14 ] [ "_iv_v_rel"<-1:-1> LBL: h15 ARG0: e16 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x17 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h18 ARG0: x17 RSTR: h19 BODY: h20 ] [ "_n2_n_rel"<-1:-1> LBL: h21 ARG0: x17 ] > HCONS: < h0 qeq h1 h4 qeq h15 h6 qeq h8 h13 qeq h11 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +19@1@-1@-1@-1@-1@-1@-1@-1@-1@(195 head-comp 0.000000 0 7 (190 head-subj 0.000000 0 3 (8 ask 0.000000 0 1 ("ask")) (189 head-spec 0.000000 1 3 (9 the 0.000000 1 2 ("the")) (10 n1 0.000000 2 3 ("n1")))) (194 wh-ques 0.000000 3 7 (11 where 0.000000 3 4 ("where")) (193 head-subj 0.000000 4 7 (191 ex-adj-first 0.000000 4 5 (12 iv 0.000000 4 5 ("iv"))) (192 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (14 n2 0.000000 6 7 ("n2"))))))@@("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("ADV" ("where")) ("S" ("VP" ("VP" ("iv"))) ("NP" ("D" ("the")) ("N" ("n2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h4 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_n1_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h9 ARG0: e10 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e11 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG2: x12 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h13 ARG0: x12 ] [ "which_q_rel"<-1:-1> LBL: h14 ARG0: x12 RSTR: h15 BODY: h16 ] [ "_iv_v_rel"<-1:-1> LBL: h9 ARG0: e11 ARG1: x17 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h18 ARG0: x17 RSTR: h19 BODY: h20 ] [ "_n2_n_rel"<-1:-1> LBL: h21 ARG0: x17 ] > HCONS: < h0 qeq h1 h4 qeq h9 h6 qeq h8 h15 qeq h13 h19 qeq h21 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +20@0@-1@-1@-1@-1@-1@-1@-1@-1@(119 wh-ques 0.000000 0 5 (6 who 0.000000 0 1 ("who")) (118 head-comp 0.000000 1 5 (116 head-subj 0.000000 1 4 (7 ask 0.000000 1 2 ("ask")) (115 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (9 n1 0.000000 3 4 ("n1")))) (117 ex-subj 0.000000 4 5 (10 iv 0.000000 4 5 ("iv")))))@@("S" ("NP" ("who")) ("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("VP" ("iv")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h9 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_iv_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h9 qeq h14 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +22@0@-1@-1@-1@-1@-1@-1@-1@-1@(192 wh-ques 0.000000 0 7 (8 who 0.000000 0 1 ("who")) (191 head-comp 0.000000 1 7 (187 head-subj 0.000000 1 4 (9 ask 0.000000 1 2 ("ask")) (186 head-spec 0.000000 2 4 (10 the 0.000000 2 3 ("the")) (11 n1 0.000000 3 4 ("n1")))) (190 head-comp 0.000000 4 7 (188 ex-subj 0.000000 4 5 (12 tv 0.000000 4 5 ("tv"))) (189 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (14 n2 0.000000 6 7 ("n2"))))))@@("S" ("NP" ("who")) ("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("V" ("V" ("tv"))) ("NP" ("D" ("the")) ("N" ("n2"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h9 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x5 ARG2: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_n2_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h7 qeq h4 h9 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +22@1@-1@-1@-1@-1@-1@-1@-1@-1@(197 wh-ques 0.000000 0 7 (8 who 0.000000 0 1 ("who")) (196 head-comp 0.000000 1 7 (187 head-subj 0.000000 1 4 (9 ask 0.000000 1 2 ("ask")) (186 head-spec 0.000000 2 4 (10 the 0.000000 2 3 ("the")) (11 n1 0.000000 3 4 ("n1")))) (195 ex-comp 0.000000 4 7 (194 head-subj 0.000000 4 7 (12 tv 0.000000 4 5 ("tv")) (193 head-spec 0.000000 5 7 (13 the 0.000000 5 6 ("the")) (14 n2 0.000000 6 7 ("n2")))))))@@("S" ("NP" ("who")) ("S" ("V" ("V" ("ask")) ("NP" ("D" ("the")) ("N" ("n1")))) ("S" ("V" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n2")))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: h9 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_tv_v_rel"<-1:-1> LBL: h14 ARG0: e15 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x16 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h17 ARG0: x16 RSTR: h18 BODY: h19 ] [ "_n2_n_rel"<-1:-1> LBL: h20 ARG0: x16 ] > HCONS: < h0 qeq h1 h7 qeq h4 h9 qeq h14 h11 qeq h13 h18 qeq h20 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh22-no-multi-ques/run b/tests/regression/home/gold/wh22-no-multi-ques/run new file mode 100644 index 000000000..6e3c90a15 --- /dev/null +++ b/tests/regression/home/gold/wh22-no-multi-ques/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1522@-1@-1@10@0@12@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 16:38:06@26-aug-2020 16:38:06@-1@ diff --git a/tests/regression/home/gold/wh22-no-multi-ques/tree b/tests/regression/home/gold/wh22-no-multi-ques/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh23-quesverbs/decision b/tests/regression/home/gold/wh23-quesverbs/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh23-quesverbs/edge b/tests/regression/home/gold/wh23-quesverbs/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh23-quesverbs/item b/tests/regression/home/gold/wh23-quesverbs/item new file mode 100644 index 000000000..1d8ef358c --- /dev/null +++ b/tests/regression/home/gold/wh23-quesverbs/item @@ -0,0 +1,5 @@ +1@@@@1@@nǐ gànmá@@@@1@2@@@ +2@@@@1@@ke trò@@@@1@2@@@ +3@@@@1@@vasia@@@@1@1@@@ +4@@@@1@@ʔeʔenət@@@@1@1@@@ +5@@@@1@@čem@@@@1@1@@@ diff --git a/tests/regression/home/gold/wh23-quesverbs/item-set b/tests/regression/home/gold/wh23-quesverbs/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh23-quesverbs/parse b/tests/regression/home/gold/wh23-quesverbs/parse new file mode 100644 index 000000000..428f1218d --- /dev/null +++ b/tests/regression/home/gold/wh23-quesverbs/parse @@ -0,0 +1,5 @@ +1@0@1@2@(1, 0, 1, <0:2>, 1, "nǐ", 0, "null") (2, 1, 2, <3:8>, 1, "gànmá", 0, "null")@2@(1, 0, 1, <0:2>, 1, "nǐ", 0, "null") (2, 1, 2, <3:8>, 1, "gànmá", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@6@5@-1@-1@-1@-1@-1@-1@-1@521@13@-1@-1@159952@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:2>, 1, "ke", 0, "null") (2, 1, 2, <3:6>, 1, "trò", 0, "null")@2@(1, 0, 1, <0:2>, 1, "ke", 0, "null") (2, 1, 2, <3:6>, 1, "trò", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@5@-1@-1@-1@-1@-1@-1@-1@587@28@-1@-1@159904@-1@-1@-1@@@ +3@0@3@1@(1, 0, 1, <0:5>, 1, "vasia", 0, "null")@1@(1, 0, 1, <0:5>, 1, "vasia", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@2@-1@-1@-1@-1@-1@-1@-1@641@32@-1@-1@29984@-1@-1@-1@@@ +4@0@4@1@(1, 0, 1, <0:7>, 1, "ʔeʔenət", 0, "null")@1@(1, 0, 1, <0:7>, 1, "ʔeʔenət", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@2@-1@-1@-1@-1@-1@-1@-1@685@35@-1@-1@28904@-1@-1@-1@@@ +5@0@5@1@(1, 0, 1, <0:3>, 1, "čem", 0, "null")@1@(1, 0, 1, <0:3>, 1, "čem", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@2@-1@-1@-1@-1@-1@-1@-1@729@38@-1@-1@29984@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh23-quesverbs/preference b/tests/regression/home/gold/wh23-quesverbs/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh23-quesverbs/relations b/tests/regression/home/gold/wh23-quesverbs/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh23-quesverbs/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh23-quesverbs/result b/tests/regression/home/gold/wh23-quesverbs/result new file mode 100644 index 000000000..f3aeaff84 --- /dev/null +++ b/tests/regression/home/gold/wh23-quesverbs/result @@ -0,0 +1,5 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 subj-head 0.000000 0 2 (32 bare-np 0.000000 0 1 (3 nǐ 0.000000 0 1 ("nǐ"))) (4 gànmá 0.000000 1 2 ("gànmá")))@@("S" ("NP" ("N" ("nǐ"))) ("VP" ("gànmá")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd PNG.NUM: sg PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_2sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_do_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_thing_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(33 subj-head 0.000000 0 2 (32 bare-np 0.000000 0 1 (3 ke 0.000000 0 1 ("ke"))) (4 trò 0.000000 1 2 ("trò")))@@("S" ("NP" ("N" ("ke"))) ("VP" ("trò")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG.PER: 2nd PNG.NUM: sg PNG.GEND: gender ] RSTR: h5 BODY: h6 ] [ "_2sg_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_be_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_thing_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(7 decl-head-opt-subj 0.000000 0 1 (2 vasia 0.000000 0 1 ("vasia")))@@("S" ("VP" ("vasia")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_be_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] > HCONS: < h0 qeq h1 h8 qeq h6 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(7 decl-head-opt-subj 0.000000 0 1 (2 ʔeʔenət 0.000000 0 1 ("ʔeʔenət")))@@("S" ("VP" ("ʔeʔenət")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_say_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(7 decl-head-opt-subj 0.000000 0 1 (2 čem 0.000000 0 1 ("čem")))@@("S" ("VP" ("čem")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_go_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: in-foc PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG.PER: person PNG.NUM: number PNG.GEND: gender ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] > HCONS: < h0 qeq h1 h8 qeq h6 > ICONS: < e2 non-focus x3 > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh23-quesverbs/run b/tests/regression/home/gold/wh23-quesverbs/run new file mode 100644 index 000000000..0e89a8f1f --- /dev/null +++ b/tests/regression/home/gold/wh23-quesverbs/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1517@-1@-1@13@0@13@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@30-jun-2020 11:24:35@30-jun-2020 11:24:35@-1@ diff --git a/tests/regression/home/gold/wh23-quesverbs/tree b/tests/regression/home/gold/wh23-quesverbs/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh24-particles-embed/decision b/tests/regression/home/gold/wh24-particles-embed/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh24-particles-embed/edge b/tests/regression/home/gold/wh24-particles-embed/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh24-particles-embed/item b/tests/regression/home/gold/wh24-particles-embed/item new file mode 100644 index 000000000..1760b1d48 --- /dev/null +++ b/tests/regression/home/gold/wh24-particles-embed/item @@ -0,0 +1,14 @@ +1@@@@1@@cat who sleeps Q2 asks@@@@1@5@@@ +2@@@@1@@cat who what sees Q2 asks@@@@1@6@@@ +3@@@@1@@cat cat what sees Q2 asks@@@@1@6@@@ +4@@@@1@@cat cat house sees thinks@@@@1@5@@@ +5@@@@1@@cat cat house sees knows@@@@1@5@@@ +6@@@@1@@cat cat house sees asks@@@@0@5@@@ +7@@@@1@@cat cat house sees Q2 asks@@@@0@6@@@ +8@@@@1@@cat cat house sees Q2 knows@@@@0@6@@@ +9@@@@1@@cat cat house sees Q2 thinks@@@@0@6@@@ +10@@@@1@@cat cat what sees Q2 knows@@@@1@6@@@ +11@@@@1@@cat sleeps Q1@@@@1@3@@@ +12@@@@1@@cat what sees Q1?@@@@0@4@@@ +13@@@@1@@cat cat what sees Q1 asks@@@@0@6@@@ +14@@@@1@@cat what sees Q2@@@@0@4@@@ diff --git a/tests/regression/home/gold/wh24-particles-embed/item-set b/tests/regression/home/gold/wh24-particles-embed/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh24-particles-embed/parse b/tests/regression/home/gold/wh24-particles-embed/parse new file mode 100644 index 000000000..03deb9bf1 --- /dev/null +++ b/tests/regression/home/gold/wh24-particles-embed/parse @@ -0,0 +1,14 @@ +1@0@1@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "who", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null") (4, 3, 4, <15:17>, 1, "Q2", 0, "null") (5, 4, 5, <18:22>, 1, "asks", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "who", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null") (4, 3, 4, <15:17>, 1, "Q2", 0, "null") (5, 4, 5, <18:22>, 1, "asks", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@17@11@-1@-1@-1@-1@-1@-1@-1@310@33@-1@-1@463056@-1@-1@-1@@@ +2@0@2@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "who", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q2", 0, "null") (6, 5, 6, <21:25>, 1, "asks", 0, "null")@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "who", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q2", 0, "null") (6, 5, 6, <21:25>, 1, "asks", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@22@13@-1@-1@-1@-1@-1@-1@-1@533@80@-1@-1@623504@-1@-1@-1@@@ +3@0@3@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q2", 0, "null") (6, 5, 6, <21:25>, 1, "asks", 0, "null")@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q2", 0, "null") (6, 5, 6, <21:25>, 1, "asks", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@25@14@-1@-1@-1@-1@-1@-1@-1@781@132@-1@-1@687704@-1@-1@-1@@@ +4@0@4@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:25>, 1, "thinks", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:25>, 1, "thinks", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@22@12@-1@-1@-1@-1@-1@-1@-1@1027@179@-1@-1@595536@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:24>, 1, "knows", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:24>, 1, "knows", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@21@13@-1@-1@-1@-1@-1@-1@-1@1212@226@-1@-1@615568@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:23>, 1, "asks", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:23>, 1, "asks", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@22@10@-1@-1@-1@-1@-1@-1@-1@1391@270@-1@-1@460624@-1@-1@-1@@@ +7@0@7@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:21>, 1, "Q2", 0, "null") (6, 5, 6, <22:26>, 1, "asks", 0, "null")@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:21>, 1, "Q2", 0, "null") (6, 5, 6, <22:26>, 1, "asks", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@23@11@-1@-1@-1@-1@-1@-1@-1@1438@310@-1@-1@496192@-1@-1@-1@@@ +8@0@8@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:21>, 1, "Q2", 0, "null") (6, 5, 6, <22:27>, 1, "knows", 0, "null")@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:21>, 1, "Q2", 0, "null") (6, 5, 6, <22:27>, 1, "knows", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@22@12@-1@-1@-1@-1@-1@-1@-1@1487@351@-1@-1@516272@-1@-1@-1@@@ +9@0@9@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:21>, 1, "Q2", 0, "null") (6, 5, 6, <22:28>, 1, "thinks", 0, "null")@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null") (5, 4, 5, <19:21>, 1, "Q2", 0, "null") (6, 5, 6, <22:28>, 1, "thinks", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@23@11@-1@-1@-1@-1@-1@-1@-1@1534@391@-1@-1@496200@-1@-1@-1@@@ +10@0@10@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q2", 0, "null") (6, 5, 6, <21:26>, 1, "knows", 0, "null")@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q2", 0, "null") (6, 5, 6, <21:26>, 1, "knows", 0, "null")@1@-1@6@6@-1@6@-1@-1@-1@-1@-1@-1@24@15@-1@-1@-1@-1@-1@-1@-1@1588@437@-1@-1@707784@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "Q1", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "Q1", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@6@-1@-1@-1@-1@-1@-1@-1@1810@463@-1@-1@235408@-1@-1@-1@@@ +12@0@12@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "Q1", 0, "null")@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "Q1", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@8@-1@-1@-1@-1@-1@-1@-1@1945@495@-1@-1@361044@-1@-1@-1@@@ +13@0@13@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q1", 0, "null") (6, 5, 6, <21:25>, 1, "asks", 0, "null")@6@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "what", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null") (5, 4, 5, <18:20>, 1, "Q1", 0, "null") (6, 5, 6, <21:25>, 1, "asks", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@23@11@-1@-1@-1@-1@-1@-1@-1@1991@535@-1@-1@495948@-1@-1@-1@@@ +14@0@14@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "Q2", 0, "null")@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:16>, 1, "Q2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@17@9@-1@-1@-1@-1@-1@-1@-1@2025@565@-1@-1@366464@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh24-particles-embed/preference b/tests/regression/home/gold/wh24-particles-embed/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh24-particles-embed/relations b/tests/regression/home/gold/wh24-particles-embed/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh24-particles-embed/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh24-particles-embed/result b/tests/regression/home/gold/wh24-particles-embed/result new file mode 100644 index 000000000..11e467000 --- /dev/null +++ b/tests/regression/home/gold/wh24-particles-embed/result @@ -0,0 +1,7 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(74 subj-head 0.000000 0 5 (69 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (73 comp-head 0.000000 1 5 (72 comp-head 0.000000 1 4 (71 in-situ-ques 0.000000 1 3 (70 subj-head 0.000000 1 3 (7 who 0.000000 1 2 ("who")) (8 sleeps 0.000000 2 3 ("sleeps")))) (9 Q2 0.000000 3 4 ("Q2"))) (10 asks 0.000000 4 5 ("asks"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("CP" ("S" ("S" ("NP" ("who")) ("VP" ("sleeps")))) ("C" ("Q2"))) ("V" ("asks"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_person_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sleep_v_rel"<-1:-1> LBL: h13 ARG0: e14 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h15 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 h15 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(91 subj-head 0.000000 0 6 (85 bare-np 0.000000 0 1 (7 cat 0.000000 0 1 ("cat"))) (90 comp-head 0.000000 1 6 (89 comp-head 0.000000 1 5 (88 in-situ-ques 0.000000 1 4 (87 subj-head 0.000000 1 4 (8 who 0.000000 1 2 ("who")) (86 comp-head 0.000000 2 4 (9 what 0.000000 2 3 ("what")) (10 sees 0.000000 3 4 ("sees"))))) (11 Q2 0.000000 4 5 ("Q2"))) (12 asks 0.000000 5 6 ("asks"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("CP" ("S" ("S" ("NP" ("who")) ("VP" ("NP" ("what")) ("V" ("sees"))))) ("C" ("Q2"))) ("V" ("asks"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_person_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_sees_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(96 subj-head 0.000000 0 6 (89 bare-np 0.000000 0 1 (7 cat 0.000000 0 1 ("cat"))) (95 comp-head 0.000000 1 6 (94 comp-head 0.000000 1 5 (93 in-situ-ques 0.000000 1 4 (92 subj-head 0.000000 1 4 (90 bare-np 0.000000 1 2 (8 cat 0.000000 1 2 ("cat"))) (91 comp-head 0.000000 2 4 (9 what 0.000000 2 3 ("what")) (10 sees 0.000000 3 4 ("sees"))))) (11 Q2 0.000000 4 5 ("Q2"))) (12 asks 0.000000 5 6 ("asks"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("CP" ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("what")) ("V" ("sees"))))) ("C" ("Q2"))) ("V" ("asks"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_sees_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_ask_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(81 subj-head 0.000000 0 5 (75 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (80 comp-head 0.000000 1 5 (79 subj-head 0.000000 1 4 (76 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (78 comp-head 0.000000 2 4 (77 bare-np 0.000000 2 3 (8 house 0.000000 2 3 ("house"))) (9 sees 0.000000 3 4 ("sees")))) (10 thinks 0.000000 4 5 ("thinks"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("N" ("house"))) ("V" ("sees")))) ("V" ("thinks"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_house_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_sees_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_think_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(82 subj-head 0.000000 0 5 (76 bare-np 0.000000 0 1 (6 cat 0.000000 0 1 ("cat"))) (81 comp-head 0.000000 1 5 (80 subj-head 0.000000 1 4 (77 bare-np 0.000000 1 2 (7 cat 0.000000 1 2 ("cat"))) (79 comp-head 0.000000 2 4 (78 bare-np 0.000000 2 3 (8 house 0.000000 2 3 ("house"))) (9 sees 0.000000 3 4 ("sees")))) (11 knows_2 0.000000 4 5 ("knows"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("N" ("house"))) ("V" ("sees")))) ("V" ("knows"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "exist_q_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h15 BODY: h16 ] [ "_house_n_rel"<-1:-1> LBL: h17 ARG0: x14 ] [ "_sees_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: prop E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_know_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h15 qeq h17 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(97 subj-head 0.000000 0 6 (90 bare-np 0.000000 0 1 (7 cat 0.000000 0 1 ("cat"))) (96 comp-head 0.000000 1 6 (95 comp-head 0.000000 1 5 (94 in-situ-ques 0.000000 1 4 (93 subj-head 0.000000 1 4 (91 bare-np 0.000000 1 2 (8 cat 0.000000 1 2 ("cat"))) (92 comp-head 0.000000 2 4 (9 what 0.000000 2 3 ("what")) (10 sees 0.000000 3 4 ("sees"))))) (11 Q2 0.000000 4 5 ("Q2"))) (12 knows_1 0.000000 5 6 ("knows"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("CP" ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("what")) ("V" ("sees"))))) ("C" ("Q2"))) ("V" ("knows"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_thing_n_rel"<-1:-1> LBL: h13 ARG0: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h15 ARG0: x14 RSTR: h16 BODY: h17 ] [ "_sees_v_rel"<-1:-1> LBL: h18 ARG0: e19 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x9 ARG2: x14 ] [ "_knows_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: h20 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 h16 qeq h13 h20 qeq h18 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(40 comp-head 0.000000 0 3 (39 subj-head 0.000000 0 2 (38 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (5 sleeps 0.000000 1 2 ("sleeps"))) (6 Q1 0.000000 2 3 ("Q1")))@@("CP" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("C" ("Q1")))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh24-particles-embed/run b/tests/regression/home/gold/wh24-particles-embed/run new file mode 100644 index 000000000..ee2652ee1 --- /dev/null +++ b/tests/regression/home/gold/wh24-particles-embed/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.4.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1507@-1@-1@14@0@7@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@26-aug-2020 16:43:58@26-aug-2020 16:43:58@-1@ diff --git a/tests/regression/home/gold/wh24-particles-embed/tree b/tests/regression/home/gold/wh24-particles-embed/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/decision b/tests/regression/home/gold/wh25-no-multi-insitu-morph/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/edge b/tests/regression/home/gold/wh25-no-multi-insitu-morph/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/item b/tests/regression/home/gold/wh25-no-multi-insitu-morph/item new file mode 100644 index 000000000..c15adaef7 --- /dev/null +++ b/tests/regression/home/gold/wh25-no-multi-insitu-morph/item @@ -0,0 +1,12 @@ +1@@@@1@@tv the n2 the n1@@@@1@5@@@ +2@@@@1@@tv what the n1?@@@@1@4@@@ +3@@@@1@@tv the n2 who?@@@@1@4@@@ +4@@@@1@@who tv the n2?@@@@0@4@@@ +5@@@@1@@where iv the n1?@@@@1@4@@@ +6@@@@1@@iv the n1 where?@@@@1@4@@@ +7@@@@1@@iv where the n1?@@@@1@4@@@ +8@@@@1@@who iv?@@@@0@2@@@ +9@@@@1@@iv who@@@@1@2@@@ +10@@@@1@@iv who where?@@@@0@3@@@ +11@@@@1@@tv what who?@@@@0@3@@@ +12@@@@1@@iv-Q who?@@@@1@2@@@ diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/item-set b/tests/regression/home/gold/wh25-no-multi-insitu-morph/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/parse b/tests/regression/home/gold/wh25-no-multi-insitu-morph/parse new file mode 100644 index 000000000..c5b698e94 --- /dev/null +++ b/tests/regression/home/gold/wh25-no-multi-insitu-morph/parse @@ -0,0 +1,12 @@ +1@0@1@5@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n2", 0, "null") (4, 3, 4, <10:13>, 1, "the", 0, "null") (5, 4, 5, <14:16>, 1, "n1", 0, "null")@5@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n2", 0, "null") (4, 3, 4, <10:13>, 1, "the", 0, "null") (5, 4, 5, <14:16>, 1, "n1", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@3@9@-1@-1@-1@-1@-1@-1@-1@336@17@-1@-1@253880@-1@-1@-1@@@ +2@0@2@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null")@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:11>, 1, "the", 0, "null") (4, 3, 4, <12:14>, 1, "n1", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@482@35@-1@-1@211872@-1@-1@-1@@@ +3@0@3@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n2", 0, "null") (4, 3, 4, <10:13>, 1, "who", 0, "null")@4@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n2", 0, "null") (4, 3, 4, <10:13>, 1, "who", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@8@-1@-1@-1@-1@-1@-1@-1@622@54@-1@-1@233264@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null")@4@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "tv", 0, "null") (3, 2, 3, <7:10>, 1, "the", 0, "null") (4, 3, 4, <11:13>, 1, "n2", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@6@-1@-1@-1@-1@-1@-1@-1@755@68@-1@-1@113928@-1@-1@-1@@@ +5@0@5@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "iv", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null")@4@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:8>, 1, "iv", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@3@11@-1@-1@-1@-1@-1@-1@-1@778@86@-1@-1@287176@-1@-1@-1@@@ +6@0@6@4@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:15>, 1, "where", 0, "null")@4@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:6>, 1, "the", 0, "null") (3, 2, 3, <7:9>, 1, "n1", 0, "null") (4, 3, 4, <10:15>, 1, "where", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@1094@108@-1@-1@212376@-1@-1@-1@@@ +7@0@7@4@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:8>, 1, "where", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null")@4@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:8>, 1, "where", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:15>, 1, "n1", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@1262@126@-1@-1@200136@-1@-1@-1@@@ +8@0@8@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:6>, 1, "iv", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@2@-1@-1@-1@-1@-1@-1@-1@1411@133@-1@-1@37920@-1@-1@-1@@@ +9@0@9@2@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null")@2@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@4@-1@-1@-1@-1@-1@-1@-1@1418@139@-1@-1@74680@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null") (3, 2, 3, <7:12>, 1, "where", 0, "null")@3@(1, 0, 1, <0:2>, 1, "iv", 0, "null") (2, 1, 2, <3:6>, 1, "who", 0, "null") (3, 2, 3, <7:12>, 1, "where", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@5@-1@-1@-1@-1@-1@-1@-1@1504@150@-1@-1@98136@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:11>, 1, "who", 0, "null")@3@(1, 0, 1, <0:2>, 1, "tv", 0, "null") (2, 1, 2, <3:7>, 1, "what", 0, "null") (3, 2, 3, <8:11>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@4@-1@-1@-1@-1@-1@-1@-1@1517@159@-1@-1@111136@-1@-1@-1@@@ +12@0@12@2@(1, 0, 1, <0:4>, 1, "iv-Q", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null")@2@(1, 0, 1, <0:4>, 1, "iv-Q", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@1524@166@-1@-1@89728@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/preference b/tests/regression/home/gold/wh25-no-multi-insitu-morph/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/relations b/tests/regression/home/gold/wh25-no-multi-insitu-morph/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh25-no-multi-insitu-morph/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/result b/tests/regression/home/gold/wh25-no-multi-insitu-morph/result new file mode 100644 index 000000000..66b0a05d2 --- /dev/null +++ b/tests/regression/home/gold/wh25-no-multi-insitu-morph/result @@ -0,0 +1,9 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(57 head-subj 0.000000 0 5 (55 head-comp 0.000000 0 3 (6 tv 0.000000 0 1 ("tv")) (54 head-spec 0.000000 1 3 (7 the 0.000000 1 2 ("the")) (8 n2 0.000000 2 3 ("n2")))) (56 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 n1 0.000000 4 5 ("n1"))))@@("S" ("VP" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n2")))) ("NP" ("D" ("the")) ("N" ("n1"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_n2_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 in-situ-ques 0.000000 0 4 (45 head-subj 0.000000 0 4 (43 head-comp 0.000000 0 2 (5 tv 0.000000 0 1 ("tv")) (6 what 0.000000 1 2 ("what"))) (44 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n1 0.000000 3 4 ("n1")))))@@("S" ("S" ("VP" ("V" ("tv")) ("NP" ("what"))) ("NP" ("D" ("the")) ("N" ("n1")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_n1_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h7 qeq h5 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(47 in-situ-ques 0.000000 0 4 (46 head-subj 0.000000 0 4 (45 head-comp 0.000000 0 3 (5 tv 0.000000 0 1 ("tv")) (44 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (7 n2 0.000000 2 3 ("n2")))) (8 who 0.000000 3 4 ("who"))))@@("S" ("S" ("VP" ("V" ("tv")) ("NP" ("D" ("the")) ("N" ("n2")))) ("NP" ("who"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_tv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_n2_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h8 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(50 in-situ-ques 0.000000 0 4 (49 adj-head 0.000000 0 4 (5 where 0.000000 0 1 ("where")) (48 head-subj 0.000000 1 4 (6 iv 0.000000 1 2 ("iv")) (47 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n1 0.000000 3 4 ("n1"))))))@@("S" ("S" ("ADV" ("where")) ("S" ("VP" ("iv")) ("NP" ("D" ("the")) ("N" ("n1"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@1@-1@-1@-1@-1@-1@-1@-1@-1@(54 in-situ-ques 0.000000 0 4 (53 head-subj 0.000000 0 4 (51 adj-head 0.000000 0 2 (5 where 0.000000 0 1 ("where")) (6 iv 0.000000 1 2 ("iv"))) (52 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n1 0.000000 3 4 ("n1")))))@@("S" ("S" ("VP" ("ADV" ("where")) ("VP" ("iv"))) ("NP" ("D" ("the")) ("N" ("n1")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 in-situ-ques 0.000000 0 4 (45 head-adj 0.000000 0 4 (44 head-subj 0.000000 0 3 (5 iv 0.000000 0 1 ("iv")) (43 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (7 n1 0.000000 2 3 ("n1")))) (8 where 0.000000 3 4 ("where"))))@@("S" ("S" ("S" ("VP" ("iv")) ("NP" ("D" ("the")) ("N" ("n1")))) ("ADV" ("where"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_n1_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(46 in-situ-ques 0.000000 0 4 (45 head-subj 0.000000 0 4 (43 head-adj 0.000000 0 2 (5 iv 0.000000 0 1 ("iv")) (6 where 0.000000 1 2 ("where"))) (44 head-spec 0.000000 2 4 (7 the 0.000000 2 3 ("the")) (8 n1 0.000000 3 4 ("n1")))))@@("S" ("S" ("VP" ("VP" ("iv")) ("ADV" ("where"))) ("NP" ("D" ("the")) ("N" ("n1")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_a_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_n1_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(20 in-situ-ques 0.000000 0 2 (19 head-subj 0.000000 0 2 (3 iv 0.000000 0 1 ("iv")) (4 who 0.000000 1 2 ("who"))))@@("S" ("S" ("VP" ("iv")) ("NP" ("who"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(22 in-situ-ques 0.000000 0 2 (21 head-subj 0.000000 0 2 (20 ques-suffix 0.000000 0 1 (3 iv 0.000000 0 1 ("iv-Q"))) (4 who 0.000000 1 2 ("who"))))@@("S" ("S" ("VP" ("VP" ("iv-Q"))) ("NP" ("who"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_iv_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/run b/tests/regression/home/gold/wh25-no-multi-insitu-morph/run new file mode 100644 index 000000000..747ebca49 --- /dev/null +++ b/tests/regression/home/gold/wh25-no-multi-insitu-morph/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1504@-1@-1@10@1@7@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@7-jul-2020 12:43:13@7-jul-2020 12:43:13@-1@ diff --git a/tests/regression/home/gold/wh25-no-multi-insitu-morph/tree b/tests/regression/home/gold/wh25-no-multi-insitu-morph/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/decision b/tests/regression/home/gold/wh3-vso-sg-oblig-det/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/edge b/tests/regression/home/gold/wh3-vso-sg-oblig-det/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/item b/tests/regression/home/gold/wh3-vso-sg-oblig-det/item new file mode 100644 index 000000000..7e4cab5d9 --- /dev/null +++ b/tests/regression/home/gold/wh3-vso-sg-oblig-det/item @@ -0,0 +1,24 @@ +1@@@@1@@sleeps cat the@@@@1@3@@@ +2@@@@1@@sleeps the cat@@@@0@3@@@ +3@@@@1@@the cat sleeps@@@@0@3@@@ +4@@@@1@@cat the sleeps@@@@0@3@@@ +5@@@@1@@sees cat the house the@@@@1@5@@@ +6@@@@1@@sees the cat the house@@@@0@5@@@ +7@@@@1@@cat the sees house the@@@@0@5@@@ +8@@@@1@@cat the house the sees@@@@0@5@@@ +9@@@@1@@what sees cat the?@@@@1@4@@@ +10@@@@1@@sees cat the what?@@@@0@4@@@ +11@@@@1@@sees what cat the?@@@@0@4@@@ +12@@@@1@@what the sees cat the?@@@@0@5@@@ +13@@@@1@@house which sees cat the?@@@@1@5@@@ +14@@@@1@@which house sees cat the?@@@@0@5@@@ +15@@@@1@@sees house which cat the?@@@@0@5@@@ +16@@@@1@@sees cat the house which?@@@@0@5@@@ +17@@@@1@@sleeps cat the in house the@@@@1@6@@@ +18@@@@1@@sleeps cat in house the the@@@@1@6@@@ +19@@@@1@@cat which sees cat the in house the?@@@@1@8@@@ +20@@@@1@@what sees cat the in house the?@@@@1@7@@@ +21@@@@1@@who sleeps in house the?@@@@1@5@@@ +22@@@@1@@sleeps who in house the?@@@@0@5@@@ +23@@@@1@@sees cat the what in house the?@@@@0@7@@@ +24@@@@1@@sees cat the what house the in?@@@@0@7@@@ diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/item-set b/tests/regression/home/gold/wh3-vso-sg-oblig-det/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/parse b/tests/regression/home/gold/wh3-vso-sg-oblig-det/parse new file mode 100644 index 000000000..14bf87b66 --- /dev/null +++ b/tests/regression/home/gold/wh3-vso-sg-oblig-det/parse @@ -0,0 +1,24 @@ +1@0@1@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@1@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@13@13@-1@-1@-1@-1@-1@-1@-1@478@29@-1@-1@340088@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@7@-1@-1@-1@-1@-1@-1@-1@578@44@-1@-1@136484@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@7@-1@-1@-1@-1@-1@-1@-1@594@55@-1@-1@112636@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@613@68@-1@-1@131076@-1@-1@-1@@@ +5@0@5@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@1@-1@5@5@-1@5@-1@-1@-1@-1@-1@-1@56@37@-1@-1@-1@-1@-1@-1@-1@797@168@-1@-1@1287976@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@14@-1@-1@-1@-1@-1@-1@-1@974@205@-1@-1@360096@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@37@30@-1@-1@-1@-1@-1@-1@-1@1103@279@-1@-1@837212@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:13>, 1, "house", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@15@-1@-1@-1@-1@-1@-1@-1@1141@306@-1@-1@269256@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@38@34@-1@-1@-1@-1@-1@-1@-1@1287@384@-1@-1@977360@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null")@4@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@45@29@-1@-1@-1@-1@-1@-1@-1@1660@472@-1@-1@957848@-1@-1@-1@@@ +11@0@11@4@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null")@4@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@34@23@-1@-1@-1@-1@-1@-1@-1@1776@535@-1@-1@750528@-1@-1@-1@@@ +12@0@12@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null")@5@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:21>, 1, "the", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@33@27@-1@-1@-1@-1@-1@-1@-1@1902@602@-1@-1@765292@-1@-1@-1@@@ +13@0@13@5@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:11>, 1, "which", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "cat", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null")@5@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:11>, 1, "which", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "cat", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null")@2@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@47@38@-1@-1@-1@-1@-1@-1@-1@2070@694@-1@-1@1187632@-1@-1@-1@@@ +14@0@14@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "cat", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null")@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "cat", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@37@29@-1@-1@-1@-1@-1@-1@-1@2486@776@-1@-1@830948@-1@-1@-1@@@ +15@0@15@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:10>, 1, "house", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null") (4, 3, 4, <17:20>, 1, "cat", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:10>, 1, "house", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null") (4, 3, 4, <17:20>, 1, "cat", 0, "null") (5, 4, 5, <21:24>, 1, "the", 0, "null")@0@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@60@37@-1@-1@-1@-1@-1@-1@-1@2670@880@-1@-1@1295932@-1@-1@-1@@@ +16@0@16@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:24>, 1, "which", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:24>, 1, "which", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@56@37@-1@-1@-1@-1@-1@-1@-1@2860@980@-1@-1@1231488@-1@-1@-1@@@ +17@0@17@6@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:17>, 1, "in", 0, "null") (5, 4, 5, <18:23>, 1, "house", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null")@6@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:17>, 1, "in", 0, "null") (5, 4, 5, <18:23>, 1, "house", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@33@31@-1@-1@-1@-1@-1@-1@-1@2998@1050@-1@-1@891640@-1@-1@-1@@@ +18@0@18@6@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null")@6@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null")@1@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@74@54@-1@-1@-1@-1@-1@-1@-1@3452@1189@-1@-1@1756144@-1@-1@-1@@@ +19@0@19@8@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null") (4, 3, 4, <15:18>, 1, "cat", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:25>, 1, "in", 0, "null") (7, 6, 7, <26:31>, 1, "house", 0, "null") (8, 7, 8, <32:35>, 1, "the", 0, "null")@8@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null") (4, 3, 4, <15:18>, 1, "cat", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null") (6, 5, 6, <23:25>, 1, "in", 0, "null") (7, 6, 7, <26:31>, 1, "house", 0, "null") (8, 7, 8, <32:35>, 1, "the", 0, "null")@3@-1@10@10@-1@10@-1@-1@-1@-1@-1@-1@112@81@-1@-1@-1@-1@-1@-1@-1@4034@1397@-1@-1@2913504@-1@-1@-1@@@ +20@0@20@7@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:20>, 1, "in", 0, "null") (6, 5, 6, <21:26>, 1, "house", 0, "null") (7, 6, 7, <27:30>, 1, "the", 0, "null")@7@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:20>, 1, "in", 0, "null") (6, 5, 6, <21:26>, 1, "house", 0, "null") (7, 6, 7, <27:30>, 1, "the", 0, "null")@3@-1@12@12@-1@13@-1@-1@-1@-1@-1@-1@93@77@-1@-1@-1@-1@-1@-1@-1@5129@1596@-1@-1@2499144@-1@-1@-1@@@ +21@0@21@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null")@5@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null")@2@-1@4@4@-1@4@-1@-1@-1@-1@-1@-1@33@35@-1@-1@-1@-1@-1@-1@-1@5921@1688@-1@-1@904368@-1@-1@-1@@@ +22@0@22@5@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null")@5@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null") (5, 4, 5, <20:23>, 1, "the", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@16@-1@-1@-1@-1@-1@-1@-1@6331@1732@-1@-1@354348@-1@-1@-1@@@ +23@0@23@7@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null") (5, 4, 5, <18:20>, 1, "in", 0, "null") (6, 5, 6, <21:26>, 1, "house", 0, "null") (7, 6, 7, <27:30>, 1, "the", 0, "null")@7@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null") (5, 4, 5, <18:20>, 1, "in", 0, "null") (6, 5, 6, <21:26>, 1, "house", 0, "null") (7, 6, 7, <27:30>, 1, "the", 0, "null")@0@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@56@39@-1@-1@-1@-1@-1@-1@-1@6535@1836@-1@-1@1240344@-1@-1@-1@@@ +24@0@24@7@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null") (5, 4, 5, <18:23>, 1, "house", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null") (7, 6, 7, <28:30>, 1, "in", 0, "null")@7@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "what", 0, "null") (5, 4, 5, <18:23>, 1, "house", 0, "null") (6, 5, 6, <24:27>, 1, "the", 0, "null") (7, 6, 7, <28:30>, 1, "in", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@55@36@-1@-1@-1@-1@-1@-1@-1@6714@1936@-1@-1@1225744@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/preference b/tests/regression/home/gold/wh3-vso-sg-oblig-det/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/relations b/tests/regression/home/gold/wh3-vso-sg-oblig-det/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh3-vso-sg-oblig-det/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/result b/tests/regression/home/gold/wh3-vso-sg-oblig-det/result new file mode 100644 index 000000000..71e106878 --- /dev/null +++ b/tests/regression/home/gold/wh3-vso-sg-oblig-det/result @@ -0,0 +1,16 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(61 head-subj 0.000000 0 3 (4 sleeps 0.000000 0 1 ("sleeps")) (60 head-spec 0.000000 1 3 (5 cat 0.000000 1 2 ("cat")) (6 the 0.000000 2 3 ("the"))))@@("S" ("VP" ("sleeps")) ("NP" ("N" ("cat")) ("D" ("the"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(158 head-comp 0.000000 0 5 (156 head-subj 0.000000 0 3 (6 sees 0.000000 0 1 ("sees")) (155 head-spec 0.000000 1 3 (7 cat 0.000000 1 2 ("cat")) (8 the 0.000000 2 3 ("the")))) (157 head-spec 0.000000 3 5 (9 house 0.000000 3 4 ("house")) (10 the 0.000000 4 5 ("the"))))@@("S" ("V" ("V" ("sees")) ("NP" ("N" ("cat")) ("D" ("the")))) ("NP" ("N" ("house")) ("D" ("the"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_house_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(124 wh-ques 0.000000 0 4 (5 what 0.000000 0 1 ("what")) (123 ex-comp 0.000000 1 4 (122 head-subj 0.000000 1 4 (6 sees 0.000000 1 2 ("sees")) (121 head-spec 0.000000 2 4 (7 cat 0.000000 2 3 ("cat")) (8 the 0.000000 3 4 ("the"))))))@@("S" ("NP" ("what")) ("S" ("V" ("V" ("sees")) ("NP" ("N" ("cat")) ("D" ("the"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@1@-1@-1@-1@-1@-1@-1@-1@-1@(128 wh-ques 0.000000 0 4 (5 what 0.000000 0 1 ("what")) (127 head-comp 0.000000 1 4 (125 ex-subj 0.000000 1 2 (6 sees 0.000000 1 2 ("sees"))) (126 head-spec 0.000000 2 4 (7 cat 0.000000 2 3 ("cat")) (8 the 0.000000 3 4 ("the")))))@@("S" ("NP" ("what")) ("S" ("V" ("V" ("sees"))) ("NP" ("N" ("cat")) ("D" ("the")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(151 wh-ques 0.000000 0 5 (147 head-spec 0.000000 0 2 (6 house 0.000000 0 1 ("house")) (7 which 0.000000 1 2 ("which"))) (150 ex-comp 0.000000 2 5 (149 head-subj 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (148 head-spec 0.000000 3 5 (9 cat 0.000000 3 4 ("cat")) (10 the 0.000000 4 5 ("the"))))))@@("S" ("NP" ("N" ("house")) ("D" ("which"))) ("S" ("V" ("V" ("sees")) ("NP" ("N" ("cat")) ("D" ("the"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_house_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +13@1@-1@-1@-1@-1@-1@-1@-1@-1@(155 wh-ques 0.000000 0 5 (147 head-spec 0.000000 0 2 (6 house 0.000000 0 1 ("house")) (7 which 0.000000 1 2 ("which"))) (154 head-comp 0.000000 2 5 (152 ex-subj 0.000000 2 3 (8 sees 0.000000 2 3 ("sees"))) (153 head-spec 0.000000 3 5 (9 cat 0.000000 3 4 ("cat")) (10 the 0.000000 4 5 ("the")))))@@("S" ("NP" ("N" ("house")) ("D" ("which"))) ("S" ("V" ("V" ("sees"))) ("NP" ("N" ("cat")) ("D" ("the")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_house_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +17@0@-1@-1@-1@-1@-1@-1@-1@-1@(141 head-adj 0.000000 0 6 (138 head-subj 0.000000 0 3 (7 sleeps 0.000000 0 1 ("sleeps")) (137 head-spec 0.000000 1 3 (8 cat 0.000000 1 2 ("cat")) (9 the 0.000000 2 3 ("the")))) (140 head-comp 0.000000 3 6 (10 in 0.000000 3 4 ("in")) (139 head-spec 0.000000 4 6 (11 house 0.000000 4 5 ("house")) (12 the 0.000000 5 6 ("the")))))@@("S" ("S" ("VP" ("sleeps")) ("NP" ("N" ("cat")) ("D" ("the")))) ("PP" ("P" ("in")) ("NP" ("N" ("house")) ("D" ("the")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +18@0@-1@-1@-1@-1@-1@-1@-1@-1@(205 head-subj 0.000000 0 6 (7 sleeps 0.000000 0 1 ("sleeps")) (204 head-spec 0.000000 1 6 (203 head-adj 0.000000 1 5 (8 cat 0.000000 1 2 ("cat")) (202 head-comp 0.000000 2 5 (9 in 0.000000 2 3 ("in")) (201 head-spec 0.000000 3 5 (10 house 0.000000 3 4 ("house")) (11 the 0.000000 4 5 ("the"))))) (12 the 0.000000 5 6 ("the"))))@@("S" ("VP" ("sleeps")) ("NP" ("N" ("N" ("cat")) ("PP" ("P" ("in")) ("NP" ("N" ("house")) ("D" ("the"))))) ("D" ("the"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h7 ARG0: x6 ] [ "_the_q_rel"<-1:-1> LBL: h8 ARG0: x6 RSTR: h9 BODY: h10 ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h9 qeq h7 h12 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +19@0@-1@-1@-1@-1@-1@-1@-1@-1@(301 wh-ques 0.000000 0 8 (294 head-spec 0.000000 0 2 (9 cat 0.000000 0 1 ("cat")) (10 which 0.000000 1 2 ("which"))) (300 head-adj 0.000000 2 8 (297 head-comp 0.000000 2 5 (295 ex-subj 0.000000 2 3 (11 sees 0.000000 2 3 ("sees"))) (296 head-spec 0.000000 3 5 (12 cat 0.000000 3 4 ("cat")) (13 the 0.000000 4 5 ("the")))) (299 head-comp 0.000000 5 8 (14 in 0.000000 5 6 ("in")) (298 head-spec 0.000000 6 8 (15 house 0.000000 6 7 ("house")) (16 the 0.000000 7 8 ("the"))))))@@("S" ("NP" ("N" ("cat")) ("D" ("which"))) ("S" ("S" ("V" ("V" ("sees"))) ("NP" ("N" ("cat")) ("D" ("the")))) ("PP" ("P" ("in")) ("NP" ("N" ("house")) ("D" ("the"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "_the_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 h17 qeq h15 > ICONS: < i19 info-str i20 > ]@((:ascore . 0.0) (:probability . 0.333333)) +19@1@-1@-1@-1@-1@-1@-1@-1@-1@(313 wh-ques 0.000000 0 8 (294 head-spec 0.000000 0 2 (9 cat 0.000000 0 1 ("cat")) (10 which 0.000000 1 2 ("which"))) (312 head-comp 0.000000 2 8 (310 head-adj 0.000000 2 6 (308 head-subj 0.000000 2 5 (11 sees 0.000000 2 3 ("sees")) (307 head-spec 0.000000 3 5 (12 cat 0.000000 3 4 ("cat")) (13 the 0.000000 4 5 ("the")))) (309 ex-comp 0.000000 5 6 (14 in 0.000000 5 6 ("in")))) (311 head-spec 0.000000 6 8 (15 house 0.000000 6 7 ("house")) (16 the 0.000000 7 8 ("the")))))@@("S" ("NP" ("N" ("cat")) ("D" ("which"))) ("S" ("V" ("V" ("V" ("sees")) ("NP" ("N" ("cat")) ("D" ("the")))) ("PP" ("P" ("in")))) ("NP" ("N" ("house")) ("D" ("the")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h10 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 ] [ "_house_n_rel"<-1:-1> LBL: h15 ARG0: x9 ] [ "_the_q_rel"<-1:-1> LBL: h16 ARG0: x9 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h7 qeq h4 h12 qeq h10 h17 qeq h15 > ICONS: < i19 info-str i20 > ]@((:ascore . 0.0) (:probability . 0.333333)) +19@2@-1@-1@-1@-1@-1@-1@-1@-1@(306 wh-ques 0.000000 0 8 (294 head-spec 0.000000 0 2 (9 cat 0.000000 0 1 ("cat")) (10 which 0.000000 1 2 ("which"))) (305 head-adj 0.000000 2 8 (304 ex-comp 0.000000 2 5 (303 head-subj 0.000000 2 5 (11 sees 0.000000 2 3 ("sees")) (302 head-spec 0.000000 3 5 (12 cat 0.000000 3 4 ("cat")) (13 the 0.000000 4 5 ("the"))))) (299 head-comp 0.000000 5 8 (14 in 0.000000 5 6 ("in")) (298 head-spec 0.000000 6 8 (15 house 0.000000 6 7 ("house")) (16 the 0.000000 7 8 ("the"))))))@@("S" ("NP" ("N" ("cat")) ("D" ("which"))) ("S" ("S" ("V" ("V" ("sees")) ("NP" ("N" ("cat")) ("D" ("the"))))) ("PP" ("P" ("in")) ("NP" ("N" ("house")) ("D" ("the"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "_the_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 h17 qeq h15 > ICONS: < i19 info-str i20 > ]@((:ascore . 0.0) (:probability . 0.333333)) +20@0@-1@-1@-1@-1@-1@-1@-1@-1@(264 wh-ques 0.000000 0 7 (8 what 0.000000 0 1 ("what")) (263 head-adj 0.000000 1 7 (260 head-comp 0.000000 1 4 (258 ex-subj 0.000000 1 2 (9 sees 0.000000 1 2 ("sees"))) (259 head-spec 0.000000 2 4 (10 cat 0.000000 2 3 ("cat")) (11 the 0.000000 3 4 ("the")))) (262 head-comp 0.000000 4 7 (12 in 0.000000 4 5 ("in")) (261 head-spec 0.000000 5 7 (13 house 0.000000 5 6 ("house")) (14 the 0.000000 6 7 ("the"))))))@@("S" ("NP" ("what")) ("S" ("S" ("V" ("V" ("sees"))) ("NP" ("N" ("cat")) ("D" ("the")))) ("PP" ("P" ("in")) ("NP" ("N" ("house")) ("D" ("the"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "_the_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +20@1@-1@-1@-1@-1@-1@-1@-1@-1@(276 wh-ques 0.000000 0 7 (8 what 0.000000 0 1 ("what")) (275 head-comp 0.000000 1 7 (273 head-adj 0.000000 1 5 (271 head-subj 0.000000 1 4 (9 sees 0.000000 1 2 ("sees")) (270 head-spec 0.000000 2 4 (10 cat 0.000000 2 3 ("cat")) (11 the 0.000000 3 4 ("the")))) (272 ex-comp 0.000000 4 5 (12 in 0.000000 4 5 ("in")))) (274 head-spec 0.000000 5 7 (13 house 0.000000 5 6 ("house")) (14 the 0.000000 6 7 ("the")))))@@("S" ("NP" ("what")) ("S" ("V" ("V" ("V" ("sees")) ("NP" ("N" ("cat")) ("D" ("the")))) ("PP" ("P" ("in")))) ("NP" ("N" ("house")) ("D" ("the")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h10 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e14 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 ] [ "_house_n_rel"<-1:-1> LBL: h15 ARG0: x9 ] [ "_the_q_rel"<-1:-1> LBL: h16 ARG0: x9 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h7 qeq h4 h12 qeq h10 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +20@2@-1@-1@-1@-1@-1@-1@-1@-1@(269 wh-ques 0.000000 0 7 (8 what 0.000000 0 1 ("what")) (268 head-adj 0.000000 1 7 (267 ex-comp 0.000000 1 4 (266 head-subj 0.000000 1 4 (9 sees 0.000000 1 2 ("sees")) (265 head-spec 0.000000 2 4 (10 cat 0.000000 2 3 ("cat")) (11 the 0.000000 3 4 ("the"))))) (262 head-comp 0.000000 4 7 (12 in 0.000000 4 5 ("in")) (261 head-spec 0.000000 5 7 (13 house 0.000000 5 6 ("house")) (14 the 0.000000 6 7 ("the"))))))@@("S" ("NP" ("what")) ("S" ("S" ("V" ("V" ("sees")) ("NP" ("N" ("cat")) ("D" ("the"))))) ("PP" ("P" ("in")) ("NP" ("N" ("house")) ("D" ("the"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e13 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x14 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h15 ARG0: x14 ] [ "_the_q_rel"<-1:-1> LBL: h16 ARG0: x14 RSTR: h17 BODY: h18 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 h17 qeq h15 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.333333)) +21@0@-1@-1@-1@-1@-1@-1@-1@-1@(132 wh-ques 0.000000 0 5 (6 who 0.000000 0 1 ("who")) (131 head-subj 0.000000 1 5 (129 head-adj 0.000000 1 3 (7 sleeps 0.000000 1 2 ("sleeps")) (128 ex-comp 0.000000 2 3 (8 in 0.000000 2 3 ("in")))) (130 head-spec 0.000000 3 5 (9 house 0.000000 3 4 ("house")) (10 the 0.000000 4 5 ("the")))))@@("S" ("NP" ("who")) ("S" ("VP" ("VP" ("sleeps")) ("PP" ("P" ("in")))) ("NP" ("N" ("house")) ("D" ("the")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e9 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h7 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +21@1@-1@-1@-1@-1@-1@-1@-1@-1@(137 wh-ques 0.000000 0 5 (6 who 0.000000 0 1 ("who")) (136 head-adj 0.000000 1 5 (133 ex-subj 0.000000 1 2 (7 sleeps 0.000000 1 2 ("sleeps"))) (135 head-comp 0.000000 2 5 (8 in 0.000000 2 3 ("in")) (134 head-spec 0.000000 3 5 (9 house 0.000000 3 4 ("house")) (10 the 0.000000 4 5 ("the"))))))@@("S" ("NP" ("who")) ("S" ("S" ("VP" ("sleeps"))) ("PP" ("P" ("in")) ("NP" ("N" ("house")) ("D" ("the"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h6 qeq h4 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/run b/tests/regression/home/gold/wh3-vso-sg-oblig-det/run new file mode 100644 index 000000000..506ef0967 --- /dev/null +++ b/tests/regression/home/gold/wh3-vso-sg-oblig-det/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1514@-1@-1@10@0@11@olzama@MurkinPro.lan@Darwin-18.7.0-x86_64-i386-64bit@6-jul-2020 11:02:59@6-jul-2020 11:03:00@-1@ diff --git a/tests/regression/home/gold/wh3-vso-sg-oblig-det/tree b/tests/regression/home/gold/wh3-vso-sg-oblig-det/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/decision b/tests/regression/home/gold/wh4-free-sg-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/edge b/tests/regression/home/gold/wh4-free-sg-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/item b/tests/regression/home/gold/wh4-free-sg-oblig-min/item new file mode 100644 index 000000000..fbfca5964 --- /dev/null +++ b/tests/regression/home/gold/wh4-free-sg-oblig-min/item @@ -0,0 +1,11 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@cat sees house@@@@1@3@@@ +3@@@@1@@who sleeps?@@@@1@2@@@ +4@@@@1@@what cat sees?@@@@1@3@@@ +5@@@@1@@sleeps cat@@@@1@2@@@ +6@@@@1@@sees cat house@@@@1@3@@@ +7@@@@1@@house sees cat@@@@1@3@@@ +8@@@@1@@house cat sees@@@@1@3@@@ +9@@@@1@@sleeps who?@@@@0@2@@@ +10@@@@1@@sees what cat?@@@@0@3@@@ +11@@@@1@@sees who house?@@@@0@3@@@ diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/item-set b/tests/regression/home/gold/wh4-free-sg-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/parse b/tests/regression/home/gold/wh4-free-sg-oblig-min/parse new file mode 100644 index 000000000..3ea0c3838 --- /dev/null +++ b/tests/regression/home/gold/wh4-free-sg-oblig-min/parse @@ -0,0 +1,11 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@4@5@-1@-1@-1@-1@-1@-1@-1@444@11@-1@-1@89688@-1@-1@-1@@@ +2@0@2@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@23@19@-1@-1@-1@-1@-1@-1@-1@563@58@-1@-1@324552@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@722@73@-1@-1@59808@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@11@-1@-1@-1@-1@-1@-1@-1@824@96@-1@-1@171768@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@5@-1@-1@-1@-1@-1@-1@-1@1020@115@-1@-1@87328@-1@-1@-1@@@ +6@0@6@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@26@14@-1@-1@-1@-1@-1@-1@-1@1127@160@-1@-1@319832@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@23@19@-1@-1@-1@-1@-1@-1@-1@1344@213@-1@-1@324552@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@14@-1@-1@-1@-1@-1@-1@-1@1535@247@-1@-1@207712@-1@-1@-1@@@ +9@0@9@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@3@-1@-1@-1@-1@-1@-1@-1@1698@264@-1@-1@71732@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@7@-1@-1@-1@-1@-1@-1@-1@1731@287@-1@-1@174016@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@7@-1@-1@-1@-1@-1@-1@-1@1764@310@-1@-1@174016@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/preference b/tests/regression/home/gold/wh4-free-sg-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/relations b/tests/regression/home/gold/wh4-free-sg-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh4-free-sg-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/result b/tests/regression/home/gold/wh4-free-sg-oblig-min/result new file mode 100644 index 000000000..41f41e786 --- /dev/null +++ b/tests/regression/home/gold/wh4-free-sg-oblig-min/result @@ -0,0 +1,13 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 subj-head 0.000000 0 2 (29 bare-np 0.000000 0 1 (3 cat 0.000000 0 1 ("cat"))) (4 sleeps 0.000000 1 2 ("sleeps")))@@("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 comp-head 0.000000 0 3 (75 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (77 head-subj 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (76 bare-np 0.000000 2 3 (6 house 0.000000 2 3 ("house")))))@@("S" ("NP" ("N" ("cat"))) ("V" ("V" ("sees")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_house_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@1@-1@-1@-1@-1@-1@-1@-1@-1@(82 subj-head 0.000000 0 3 (79 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (81 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (80 bare-np 0.000000 2 3 (6 house 0.000000 2 3 ("house")))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_house_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(26 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (25 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (53 subj-head 0.000000 1 3 (51 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (52 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(58 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (57 ex-subj 0.000000 1 3 (56 comp-head 0.000000 1 3 (55 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("VP" ("NP" ("N" ("cat"))) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cat_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(30 head-subj 0.000000 0 2 (3 sleeps 0.000000 0 1 ("sleeps")) (29 bare-np 0.000000 1 2 (4 cat 0.000000 1 2 ("cat"))))@@("S" ("VP" ("sleeps")) ("NP" ("N" ("cat"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(76 head-comp 0.000000 0 3 (74 head-subj 0.000000 0 2 (4 sees 0.000000 0 1 ("sees")) (73 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat")))) (75 bare-np 0.000000 2 3 (6 house 0.000000 2 3 ("house"))))@@("S" ("V" ("V" ("sees")) ("NP" ("N" ("cat")))) ("NP" ("N" ("house"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h5 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x3 RSTR: h7 BODY: h8 ] [ "_house_n_rel"<-1:-1> LBL: h9 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x4 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(80 head-subj 0.000000 0 3 (78 head-comp 0.000000 0 2 (4 sees 0.000000 0 1 ("sees")) (77 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat")))) (79 bare-np 0.000000 2 3 (6 house 0.000000 2 3 ("house"))))@@("S" ("VP" ("V" ("sees")) ("NP" ("N" ("cat")))) ("NP" ("N" ("house"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h5 ARG0: x4 ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x4 RSTR: h7 BODY: h8 ] [ "_house_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h5 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(78 comp-head 0.000000 0 3 (75 bare-np 0.000000 0 1 (4 house 0.000000 0 1 ("house"))) (77 head-subj 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (76 bare-np 0.000000 2 3 (6 cat 0.000000 2 3 ("cat")))))@@("S" ("NP" ("N" ("house"))) ("V" ("V" ("sees")) ("NP" ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_house_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(82 subj-head 0.000000 0 3 (79 bare-np 0.000000 0 1 (4 house 0.000000 0 1 ("house"))) (81 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (80 bare-np 0.000000 2 3 (6 cat 0.000000 2 3 ("cat")))))@@("S" ("NP" ("N" ("house"))) ("VP" ("V" ("sees")) ("NP" ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_house_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(59 comp-head 0.000000 0 3 (56 bare-np 0.000000 0 1 (4 house 0.000000 0 1 ("house"))) (58 subj-head 0.000000 1 3 (57 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sees 0.000000 2 3 ("sees"))))@@("S" ("NP" ("N" ("house"))) ("V" ("NP" ("N" ("cat"))) ("V" ("sees"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_house_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_cat_n_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(63 subj-head 0.000000 0 3 (60 bare-np 0.000000 0 1 (4 house 0.000000 0 1 ("house"))) (62 comp-head 0.000000 1 3 (61 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sees 0.000000 2 3 ("sees"))))@@("S" ("NP" ("N" ("house"))) ("VP" ("NP" ("N" ("cat"))) ("V" ("sees"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_house_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cat_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/run b/tests/regression/home/gold/wh4-free-sg-oblig-min/run new file mode 100644 index 000000000..8cf63a4e6 --- /dev/null +++ b/tests/regression/home/gold/wh4-free-sg-oblig-min/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1437@-1@-1@6@0@11@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@23-oct-2019 15:21:36@23-oct-2019 15:21:36@-1@ diff --git a/tests/regression/home/gold/wh4-free-sg-oblig-min/tree b/tests/regression/home/gold/wh4-free-sg-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/decision b/tests/regression/home/gold/wh5-free-sg-oblig-det/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/edge b/tests/regression/home/gold/wh5-free-sg-oblig-det/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/item b/tests/regression/home/gold/wh5-free-sg-oblig-det/item new file mode 100644 index 000000000..1ea3165d9 --- /dev/null +++ b/tests/regression/home/gold/wh5-free-sg-oblig-det/item @@ -0,0 +1,32 @@ +1@@@@1@@the cat sleeps@@@@1@3@@@ +2@@@@1@@the cat sees the house@@@@1@5@@@ +3@@@@1@@who sleeps?@@@@1@2@@@ +4@@@@1@@what the cat sees?@@@@1@4@@@ +5@@@@1@@sleeps the cat@@@@1@3@@@ +6@@@@1@@sees the cat the house@@@@1@5@@@ +7@@@@1@@the house sees the cat@@@@1@5@@@ +8@@@@1@@the house the cat sees@@@@1@5@@@ +9@@@@1@@sleeps who?@@@@0@2@@@ +10@@@@1@@sees what cat?@@@@0@3@@@ +11@@@@1@@sees who house?@@@@0@3@@@ +12@@@@1@@cat sleeps@@@@0@2@@@ +13@@@@1@@cat the sleeps@@@@0@3@@@ +14@@@@1@@cat sleeps the@@@@0@3@@@ +15@@@@1@@cat sees house@@@@0@3@@@ +16@@@@1@@cat the sees the house@@@@0@5@@@ +17@@@@1@@cat the sees house the@@@@0@5@@@ +18@@@@1@@the cat sees house the@@@@0@5@@@ +19@@@@1@@what cat the sees?@@@@0@4@@@ +20@@@@1@@sleeps cat the@@@@0@3@@@ +21@@@@1@@sees cat the house the@@@@0@5@@@ +22@@@@1@@house the cat sees@@@@0@4@@@ +23@@@@1@@house the cat the sees@@@@0@5@@@ +24@@@@1@@which cat sleeps?@@@@1@3@@@ +25@@@@1@@cat which sleeps?@@@@0@3@@@ +26@@@@1@@sleeps which cat?@@@@0@3@@@ +27@@@@1@@sleeps cat which?@@@@0@3@@@ +28@@@@1@@which house the cat sees?@@@@1@5@@@ +29@@@@1@@the house which cat sees?@@@@0@5@@@ +30@@@@1@@sees the cat which house?@@@@0@5@@@ +31@@@@1@@which which cat sleeps?@@@@0@4@@@ +32@@@@1@@which the cat sleeps?@@@@0@4@@@ diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/item-set b/tests/regression/home/gold/wh5-free-sg-oblig-det/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/parse b/tests/regression/home/gold/wh5-free-sg-oblig-det/parse new file mode 100644 index 000000000..ffd602d54 --- /dev/null +++ b/tests/regression/home/gold/wh5-free-sg-oblig-det/parse @@ -0,0 +1,32 @@ +1@0@1@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@10@8@-1@-1@-1@-1@-1@-1@-1@536@21@-1@-1@196600@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@59@30@-1@-1@-1@-1@-1@-1@-1@756@117@-1@-1@981504@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@5@-1@-1@-1@-1@-1@-1@-1@1020@134@-1@-1@85824@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@22@-1@-1@-1@-1@-1@-1@-1@1149@175@-1@-1@416032@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@7@-1@-1@-1@-1@-1@-1@-1@1414@202@-1@-1@181480@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@48@19@-1@-1@-1@-1@-1@-1@-1@1584@276@-1@-1@772984@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@2@-1@3@3@-1@3@-1@-1@-1@-1@-1@-1@59@30@-1@-1@-1@-1@-1@-1@-1@1980@378@-1@-1@981504@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:13>, 1, "the", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:13>, 1, "the", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@2@-1@1@1@-1@2@-1@-1@-1@-1@-1@-1@21@25@-1@-1@-1@-1@-1@-1@-1@2320@437@-1@-1@528064@-1@-1@-1@@@ +9@0@9@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@4@-1@-1@-1@-1@-1@-1@-1@2588@457@-1@-1@103796@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@39@13@-1@-1@-1@-1@-1@-1@-1@2661@512@-1@-1@516552@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@39@13@-1@-1@-1@-1@-1@-1@-1@2736@567@-1@-1@516552@-1@-1@-1@@@ +12@0@12@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@5@-1@-1@-1@-1@-1@-1@-1@2755@578@-1@-1@93168@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@7@5@-1@-1@-1@-1@-1@-1@-1@2778@593@-1@-1@140308@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@6@-1@-1@-1@-1@-1@-1@-1@2810@617@-1@-1@224272@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@31@17@-1@-1@-1@-1@-1@-1@-1@2892@668@-1@-1@474792@-1@-1@-1@@@ +16@0@16@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@23@15@-1@-1@-1@-1@-1@-1@-1@2960@711@-1@-1@389004@-1@-1@-1@@@ +17@0@17@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@42@13@-1@-1@-1@-1@-1@-1@-1@3053@771@-1@-1@578044@-1@-1@-1@@@ +18@0@18@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@94@27@-1@-1@-1@-1@-1@-1@-1@3255@897@-1@-1@1259148@-1@-1@-1@@@ +19@0@19@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@7@-1@-1@-1@-1@-1@-1@-1@3286@918@-1@-1@201160@-1@-1@-1@@@ +20@0@20@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@6@-1@-1@-1@-1@-1@-1@-1@3319@942@-1@-1@223356@-1@-1@-1@@@ +21@0@21@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@53@16@-1@-1@-1@-1@-1@-1@-1@3424@1016@-1@-1@716328@-1@-1@-1@@@ +22@0@22@4@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null")@4@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@20@-1@-1@-1@-1@-1@-1@-1@3489@1055@-1@-1@329840@-1@-1@-1@@@ +23@0@23@5@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@18@10@-1@-1@-1@-1@-1@-1@-1@3542@1088@-1@-1@308288@-1@-1@-1@@@ +24@0@24@3@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@10@-1@-1@-1@-1@-1@-1@-1@3573@1113@-1@-1@265752@-1@-1@-1@@@ +25@0@25@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@8@5@-1@-1@-1@-1@-1@-1@-1@3793@1135@-1@-1@152520@-1@-1@-1@@@ +26@0@26@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:12>, 1, "which", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:12>, 1, "which", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@10@7@-1@-1@-1@-1@-1@-1@-1@3816@1155@-1@-1@175188@-1@-1@-1@@@ +27@0@27@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@15@6@-1@-1@-1@-1@-1@-1@-1@3851@1179@-1@-1@223844@-1@-1@-1@@@ +28@0@28@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:15>, 1, "the", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:15>, 1, "the", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@4@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@23@28@-1@-1@-1@-1@-1@-1@-1@3941@1237@-1@-1@717160@-1@-1@-1@@@ +29@0@29@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:15>, 1, "which", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:15>, 1, "which", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@23@25@-1@-1@-1@-1@-1@-1@-1@4619@1309@-1@-1@461336@-1@-1@-1@@@ +30@0@30@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:18>, 1, "which", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:18>, 1, "which", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@49@19@-1@-1@-1@-1@-1@-1@-1@4717@1382@-1@-1@691760@-1@-1@-1@@@ +31@0@31@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "which", 0, "null") (3, 2, 3, <12:15>, 1, "cat", 0, "null") (4, 3, 4, <16:22>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "which", 0, "null") (3, 2, 3, <12:15>, 1, "cat", 0, "null") (4, 3, 4, <16:22>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@16@14@-1@-1@-1@-1@-1@-1@-1@4767@1416@-1@-1@299140@-1@-1@-1@@@ +32@0@32@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@14@10@-1@-1@-1@-1@-1@-1@-1@4805@1444@-1@-1@248688@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/preference b/tests/regression/home/gold/wh5-free-sg-oblig-det/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/relations b/tests/regression/home/gold/wh5-free-sg-oblig-det/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh5-free-sg-oblig-det/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/result b/tests/regression/home/gold/wh5-free-sg-oblig-det/result new file mode 100644 index 000000000..650405842 --- /dev/null +++ b/tests/regression/home/gold/wh5-free-sg-oblig-det/result @@ -0,0 +1,19 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(57 subj-head 0.000000 0 3 (56 head-spec 0.000000 0 2 (4 the 0.000000 0 1 ("the")) (5 cat 0.000000 1 2 ("cat"))) (6 sleeps 0.000000 2 3 ("sleeps")))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("sleeps")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(160 comp-head 0.000000 0 5 (157 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (7 cat 0.000000 1 2 ("cat"))) (159 head-subj 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (158 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 house 0.000000 4 5 ("house")))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("V" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_cat_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +2@1@-1@-1@-1@-1@-1@-1@-1@-1@(164 subj-head 0.000000 0 5 (161 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (7 cat 0.000000 1 2 ("cat"))) (163 head-comp 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (162 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 house 0.000000 4 5 ("house")))))@@("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (30 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(91 wh-ques 0.000000 0 4 (5 what 0.000000 0 1 ("what")) (90 ex-subj 0.000000 1 4 (89 comp-head 0.000000 1 4 (88 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (7 cat 0.000000 2 3 ("cat"))) (8 sees 0.000000 3 4 ("sees")))))@@("S" ("NP" ("what")) ("S" ("VP" ("NP" ("D" ("the")) ("N" ("cat"))) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_the_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +4@1@-1@-1@-1@-1@-1@-1@-1@-1@(95 wh-ques 0.000000 0 4 (5 what 0.000000 0 1 ("what")) (94 subj-head 0.000000 1 4 (92 head-spec 0.000000 1 3 (6 the 0.000000 1 2 ("the")) (7 cat 0.000000 2 3 ("cat"))) (93 ex-comp 0.000000 3 4 (8 sees 0.000000 3 4 ("sees")))))@@("S" ("NP" ("what")) ("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 head-subj 0.000000 0 3 (4 sleeps 0.000000 0 1 ("sleeps")) (54 head-spec 0.000000 1 3 (5 the 0.000000 1 2 ("the")) (6 cat 0.000000 2 3 ("cat"))))@@("S" ("VP" ("sleeps")) ("NP" ("D" ("the")) ("N" ("cat"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(138 head-comp 0.000000 0 5 (136 head-subj 0.000000 0 3 (6 sees 0.000000 0 1 ("sees")) (135 head-spec 0.000000 1 3 (7 the 0.000000 1 2 ("the")) (8 cat 0.000000 2 3 ("cat")))) (137 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 house 0.000000 4 5 ("house"))))@@("S" ("V" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("cat")))) ("NP" ("D" ("the")) ("N" ("house"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_cat_n_rel"<-1:-1> LBL: h8 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x4 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x4 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +6@1@-1@-1@-1@-1@-1@-1@-1@-1@(142 head-subj 0.000000 0 5 (140 head-comp 0.000000 0 3 (6 sees 0.000000 0 1 ("sees")) (139 head-spec 0.000000 1 3 (7 the 0.000000 1 2 ("the")) (8 cat 0.000000 2 3 ("cat")))) (141 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 house 0.000000 4 5 ("house"))))@@("S" ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("cat")))) ("NP" ("D" ("the")) ("N" ("house"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_cat_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(160 comp-head 0.000000 0 5 (157 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (7 house 0.000000 1 2 ("house"))) (159 head-subj 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (158 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 cat 0.000000 4 5 ("cat")))))@@("S" ("NP" ("D" ("the")) ("N" ("house"))) ("V" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(164 subj-head 0.000000 0 5 (161 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (7 house 0.000000 1 2 ("house"))) (163 head-comp 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (162 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 cat 0.000000 4 5 ("cat")))))@@("S" ("NP" ("D" ("the")) ("N" ("house"))) ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_house_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(117 subj-head 0.000000 0 5 (114 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (7 house 0.000000 1 2 ("house"))) (116 comp-head 0.000000 2 5 (115 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (9 cat 0.000000 3 4 ("cat"))) (10 sees 0.000000 4 5 ("sees"))))@@("S" ("NP" ("D" ("the")) ("N" ("house"))) ("VP" ("NP" ("D" ("the")) ("N" ("cat"))) ("V" ("sees"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_house_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +8@1@-1@-1@-1@-1@-1@-1@-1@-1@(121 comp-head 0.000000 0 5 (118 head-spec 0.000000 0 2 (6 the 0.000000 0 1 ("the")) (7 house 0.000000 1 2 ("house"))) (120 subj-head 0.000000 2 5 (119 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (9 cat 0.000000 3 4 ("cat"))) (10 sees 0.000000 4 5 ("sees"))))@@("S" ("NP" ("D" ("the")) ("N" ("house"))) ("V" ("NP" ("D" ("the")) ("N" ("cat"))) ("V" ("sees"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +24@0@-1@-1@-1@-1@-1@-1@-1@-1@(62 wh-ques 0.000000 0 3 (60 head-spec 0.000000 0 2 (4 which 0.000000 0 1 ("which")) (5 cat 0.000000 1 2 ("cat"))) (61 ex-subj 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps"))))@@("S" ("NP" ("D" ("which")) ("N" ("cat"))) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < i8 info-str i9 > ]@((:ascore . 0.0) (:probability . 0.5)) +24@1@-1@-1@-1@-1@-1@-1@-1@-1@(65 wh-ques 0.000000 0 3 (4 which 0.000000 0 1 ("which")) (64 subj-head 0.000000 1 3 (63 ex-det 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sleeps 0.000000 2 3 ("sleeps"))))@@("S" ("D" ("which")) ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h8 > ICONS: < i9 info-str i10 > ]@((:ascore . 0.0) (:probability . 0.5)) +28@0@-1@-1@-1@-1@-1@-1@-1@-1@(125 wh-ques 0.000000 0 5 (6 which 0.000000 0 1 ("which")) (124 subj-head 0.000000 1 5 (121 ex-det 0.000000 1 2 (7 house 0.000000 1 2 ("house"))) (123 comp-head 0.000000 2 5 (122 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (9 cat 0.000000 3 4 ("cat"))) (10 sees 0.000000 4 5 ("sees")))))@@("S" ("D" ("which")) ("S" ("NP" ("N" ("house"))) ("VP" ("NP" ("D" ("the")) ("N" ("cat"))) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_house_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h13 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.25)) +28@1@-1@-1@-1@-1@-1@-1@-1@-1@(135 wh-ques 0.000000 0 5 (131 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 house 0.000000 1 2 ("house"))) (134 ex-subj 0.000000 2 5 (133 comp-head 0.000000 2 5 (132 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (9 cat 0.000000 3 4 ("cat"))) (10 sees 0.000000 4 5 ("sees")))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("VP" ("NP" ("D" ("the")) ("N" ("cat"))) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_house_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_the_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.25)) +28@2@-1@-1@-1@-1@-1@-1@-1@-1@(130 wh-ques 0.000000 0 5 (6 which 0.000000 0 1 ("which")) (129 comp-head 0.000000 1 5 (126 ex-det 0.000000 1 2 (7 house 0.000000 1 2 ("house"))) (128 subj-head 0.000000 2 5 (127 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (9 cat 0.000000 3 4 ("cat"))) (10 sees 0.000000 4 5 ("sees")))))@@("S" ("D" ("which")) ("S" ("NP" ("N" ("house"))) ("V" ("NP" ("D" ("the")) ("N" ("cat"))) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h13 h10 qeq h12 > ICONS: < i14 info-str i15 > ]@((:ascore . 0.0) (:probability . 0.25)) +28@3@-1@-1@-1@-1@-1@-1@-1@-1@(139 wh-ques 0.000000 0 5 (131 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 house 0.000000 1 2 ("house"))) (138 subj-head 0.000000 2 5 (136 head-spec 0.000000 2 4 (8 the 0.000000 2 3 ("the")) (9 cat 0.000000 3 4 ("cat"))) (137 ex-comp 0.000000 4 5 (10 sees 0.000000 4 5 ("sees")))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("NP" ("D" ("the")) ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.25)) diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/run b/tests/regression/home/gold/wh5-free-sg-oblig-det/run new file mode 100644 index 000000000..c96ab51a9 --- /dev/null +++ b/tests/regression/home/gold/wh5-free-sg-oblig-det/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1471@-1@-1@8@0@13@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@6-apr-2020 13:15:47@6-apr-2020 13:15:47@-1@ diff --git a/tests/regression/home/gold/wh5-free-sg-oblig-det/tree b/tests/regression/home/gold/wh5-free-sg-oblig-det/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/decision b/tests/regression/home/gold/wh6-svo-sg-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/edge b/tests/regression/home/gold/wh6-svo-sg-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/item b/tests/regression/home/gold/wh6-svo-sg-opt/item new file mode 100644 index 000000000..99bca1c3c --- /dev/null +++ b/tests/regression/home/gold/wh6-svo-sg-opt/item @@ -0,0 +1,15 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@1@3@@@ +9@@@@1@@cat what sees?@@@@0@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@1@3@@@ +13@@@@1@@cat where sleeps?@@@@1@3@@@ +14@@@@1@@who sees what?@@@@1@3@@@ +15@@@@1@@who what sees?@@@@0@3@@@ diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/item-set b/tests/regression/home/gold/wh6-svo-sg-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/parse b/tests/regression/home/gold/wh6-svo-sg-opt/parse new file mode 100644 index 000000000..aab2e57ad --- /dev/null +++ b/tests/regression/home/gold/wh6-svo-sg-opt/parse @@ -0,0 +1,15 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@479@7@-1@-1@74560@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@4@-1@-1@-1@-1@-1@-1@-1@540@17@-1@-1@80284@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@8@11@-1@-1@-1@-1@-1@-1@-1@572@39@-1@-1@263448@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@8@-1@-1@-1@-1@-1@-1@-1@667@55@-1@-1@109576@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@4@-1@-1@-1@-1@-1@-1@-1@674@60@-1@-1@57520@-1@-1@-1@@@ +6@0@6@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@3@-1@-1@-1@-1@-1@-1@-1@750@69@-1@-1@74364@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@8@-1@-1@-1@-1@-1@-1@-1@768@80@-1@-1@143168@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@8@11@-1@-1@-1@-1@-1@-1@-1@891@106@-1@-1@267008@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@6@-1@-1@-1@-1@-1@-1@-1@999@119@-1@-1@88324@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@2@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@8@15@-1@-1@-1@-1@-1@-1@-1@1038@146@-1@-1@340952@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@9@-1@-1@-1@-1@-1@-1@-1@1315@169@-1@-1@160000@-1@-1@-1@@@ +12@0@12@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@7@14@-1@-1@-1@-1@-1@-1@-1@1471@197@-1@-1@306048@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@8@-1@-1@-1@-1@-1@-1@-1@1733@217@-1@-1@151360@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@8@-1@-1@-1@-1@-1@-1@-1@1873@237@-1@-1@200328@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@5@-1@-1@-1@-1@-1@-1@-1@1973@247@-1@-1@72844@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/preference b/tests/regression/home/gold/wh6-svo-sg-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/relations b/tests/regression/home/gold/wh6-svo-sg-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh6-svo-sg-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/result b/tests/regression/home/gold/wh6-svo-sg-opt/result new file mode 100644 index 000000000..a11933c40 --- /dev/null +++ b/tests/regression/home/gold/wh6-svo-sg-opt/result @@ -0,0 +1,12 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(28 subj-head 0.000000 0 2 (27 bare-np 0.000000 0 1 (3 cat 0.000000 0 1 ("cat"))) (4 sleeps 0.000000 1 2 ("sleeps")))@@("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(58 subj-head 0.000000 0 3 (55 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (57 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (56 bare-np 0.000000 2 3 (6 house 0.000000 2 3 ("house")))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(26 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (25 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(47 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (46 subj-head 0.000000 1 3 (44 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (45 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +8@0@-1@-1@-1@-1@-1@-1@-1@-1@(58 in-situ-ques 0.000000 0 3 (57 subj-head 0.000000 0 3 (55 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (56 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (6 what 0.000000 2 3 ("what")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")) ("NP" ("what")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(77 subj-head 0.000000 0 4 (73 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (76 headv-adj 0.000000 1 4 (6 sleeps 0.000000 1 2 ("sleeps")) (75 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (74 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house"))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(82 headv-adj 0.000000 0 4 (79 subj-head 0.000000 0 2 (78 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (6 sleeps 0.000000 1 2 ("sleeps"))) (81 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (80 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 wh-ques 0.000000 0 3 (4 where 0.000000 0 1 ("where")) (48 ex-adj 0.000000 1 3 (47 subj-head 0.000000 1 3 (46 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("ADV" ("where")) ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(60 in-situ-ques 0.000000 0 3 (59 subj-head 0.000000 0 3 (57 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (58 headv-adj 0.000000 1 3 (5 sleeps 0.000000 1 2 ("sleeps")) (6 where 0.000000 2 3 ("where")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("ADV" ("where")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +12@1@-1@-1@-1@-1@-1@-1@-1@-1@(64 in-situ-ques 0.000000 0 3 (63 headv-adj 0.000000 0 3 (62 subj-head 0.000000 0 2 (61 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (5 sleeps 0.000000 1 2 ("sleeps"))) (6 where 0.000000 2 3 ("where"))))@@("S" ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("ADV" ("where"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(48 in-situ-ques 0.000000 0 3 (47 subj-head 0.000000 0 3 (45 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (46 adj-headv 0.000000 1 3 (5 where 0.000000 1 2 ("where")) (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("ADV" ("where")) ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +14@0@-1@-1@-1@-1@-1@-1@-1@-1@(51 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (50 ex-subj 0.000000 1 3 (49 head-comp 0.000000 1 3 (5 sees 0.000000 1 2 ("sees")) (6 what 0.000000 2 3 ("what")))))@@("S" ("NP" ("who")) ("S" ("VP" ("V" ("sees")) ("NP" ("what")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x8 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x8 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/run b/tests/regression/home/gold/wh6-svo-sg-opt/run new file mode 100644 index 000000000..61ba925be --- /dev/null +++ b/tests/regression/home/gold/wh6-svo-sg-opt/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1462@-1@-1@8@0@12@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@24-apr-2020 11:11:33@24-apr-2020 11:11:33@-1@ diff --git a/tests/regression/home/gold/wh6-svo-sg-opt/tree b/tests/regression/home/gold/wh6-svo-sg-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/decision b/tests/regression/home/gold/wh7-sov-sg-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/edge b/tests/regression/home/gold/wh7-sov-sg-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/item b/tests/regression/home/gold/wh7-sov-sg-opt/item new file mode 100644 index 000000000..da95ff94f --- /dev/null +++ b/tests/regression/home/gold/wh7-sov-sg-opt/item @@ -0,0 +1,15 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@0@3@@@ +4@@@@1@@cat house sees@@@@1@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@0@3@@@ +9@@@@1@@cat what sees?@@@@1@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@1@3@@@ +13@@@@1@@cat where sleeps?@@@@1@3@@@ +14@@@@1@@who sees what?@@@@0@3@@@ +15@@@@1@@who what sees?@@@@1@3@@@ diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/item-set b/tests/regression/home/gold/wh7-sov-sg-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/parse b/tests/regression/home/gold/wh7-sov-sg-opt/parse new file mode 100644 index 000000000..14cb7fed8 --- /dev/null +++ b/tests/regression/home/gold/wh7-sov-sg-opt/parse @@ -0,0 +1,15 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@2@2@-1@2@-1@-1@-1@-1@-1@-1@2@5@-1@-1@-1@-1@-1@-1@-1@520@9@-1@-1@92504@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@4@-1@-1@-1@-1@-1@-1@-1@583@21@-1@-1@98788@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@19@10@-1@-1@-1@-1@-1@-1@-1@625@53@-1@-1@339872@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@654@72@-1@-1@207192@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@4@-1@-1@-1@-1@-1@-1@-1@738@82@-1@-1@66344@-1@-1@-1@@@ +6@0@6@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@3@-1@-1@-1@-1@-1@-1@-1@816@93@-1@-1@92868@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@2@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@11@-1@-1@-1@-1@-1@-1@-1@841@110@-1@-1@232744@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@19@9@-1@-1@-1@-1@-1@-1@-1@1066@149@-1@-1@333908@-1@-1@-1@@@ +9@0@9@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@10@-1@-1@-1@-1@-1@-1@-1@1088@165@-1@-1@186232@-1@-1@-1@@@ +10@0@10@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@4@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@15@15@-1@-1@-1@-1@-1@-1@-1@1228@203@-1@-1@407456@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@9@-1@-1@-1@-1@-1@-1@-1@1508@229@-1@-1@187384@-1@-1@-1@@@ +12@0@12@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@13@14@-1@-1@-1@-1@-1@-1@-1@1670@263@-1@-1@362712@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@8@-1@-1@-1@-1@-1@-1@-1@1935@286@-1@-1@178784@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@11@7@-1@-1@-1@-1@-1@-1@-1@2084@311@-1@-1@224508@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@8@-1@-1@-1@-1@-1@-1@-1@2101@323@-1@-1@141992@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/preference b/tests/regression/home/gold/wh7-sov-sg-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/relations b/tests/regression/home/gold/wh7-sov-sg-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh7-sov-sg-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/result b/tests/regression/home/gold/wh7-sov-sg-opt/result new file mode 100644 index 000000000..2fcaa8a36 --- /dev/null +++ b/tests/regression/home/gold/wh7-sov-sg-opt/result @@ -0,0 +1,13 @@ +1@0@-1@-1@-1@-1@-1@-1@-1@-1@(31 subj-head 0.000000 0 2 (30 bare-np 0.000000 0 1 (3 cat 0.000000 0 1 ("cat"))) (4 sleeps 0.000000 1 2 ("sleeps")))@@("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +4@0@-1@-1@-1@-1@-1@-1@-1@-1@(57 subj-head 0.000000 0 3 (54 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (56 comp-head 0.000000 1 3 (55 bare-np 0.000000 1 2 (5 house 0.000000 1 2 ("house"))) (6 sees 0.000000 2 3 ("sees"))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("N" ("house"))) ("V" ("sees"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(28 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (27 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +7@0@-1@-1@-1@-1@-1@-1@-1@-1@(55 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (54 subj-head 0.000000 1 3 (52 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (53 ex-comp 0.000000 2 3 (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("NP" ("N" ("cat"))) ("VP" ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x5 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +7@1@-1@-1@-1@-1@-1@-1@-1@-1@(59 wh-ques 0.000000 0 3 (4 what 0.000000 0 1 ("what")) (58 ex-subj 0.000000 1 3 (57 comp-head 0.000000 1 3 (56 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("what")) ("S" ("VP" ("NP" ("N" ("cat"))) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "exist_q_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x9 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 in-situ-ques 0.000000 0 3 (53 subj-head 0.000000 0 3 (51 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (52 comp-head 0.000000 1 3 (5 what 0.000000 1 2 ("what")) (6 sees 0.000000 2 3 ("sees")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("NP" ("what")) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(87 subj-head 0.000000 0 4 (83 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (86 headv-adj 0.000000 1 4 (6 sleeps 0.000000 1 2 ("sleeps")) (85 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (84 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house"))))))@@("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("PP" ("P" ("in")) ("NP" ("N" ("house"))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(92 headv-adj 0.000000 0 4 (89 subj-head 0.000000 0 2 (88 bare-np 0.000000 0 1 (5 cat 0.000000 0 1 ("cat"))) (6 sleeps 0.000000 1 2 ("sleeps"))) (91 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (90 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +11@0@-1@-1@-1@-1@-1@-1@-1@-1@(54 wh-ques 0.000000 0 3 (4 where 0.000000 0 1 ("where")) (53 ex-adj 0.000000 1 3 (52 subj-head 0.000000 1 3 (51 bare-np 0.000000 1 2 (5 cat 0.000000 1 2 ("cat"))) (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("ADV" ("where")) ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +12@0@-1@-1@-1@-1@-1@-1@-1@-1@(68 in-situ-ques 0.000000 0 3 (67 subj-head 0.000000 0 3 (65 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (66 headv-adj 0.000000 1 3 (5 sleeps 0.000000 1 2 ("sleeps")) (6 where 0.000000 2 3 ("where")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("VP" ("sleeps")) ("ADV" ("where")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +12@1@-1@-1@-1@-1@-1@-1@-1@-1@(72 in-situ-ques 0.000000 0 3 (71 headv-adj 0.000000 0 3 (70 subj-head 0.000000 0 2 (69 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (5 sleeps 0.000000 1 2 ("sleeps"))) (6 where 0.000000 2 3 ("where"))))@@("S" ("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("sleeps"))) ("ADV" ("where"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(53 in-situ-ques 0.000000 0 3 (52 subj-head 0.000000 0 3 (50 bare-np 0.000000 0 1 (4 cat 0.000000 0 1 ("cat"))) (51 adj-headv 0.000000 1 3 (5 where 0.000000 1 2 ("where")) (6 sleeps 0.000000 2 3 ("sleeps")))))@@("S" ("S" ("NP" ("N" ("cat"))) ("VP" ("ADV" ("where")) ("VP" ("sleeps")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h10 ARG0: x9 ] [ "which_q_rel"<-1:-1> LBL: h11 ARG0: x9 RSTR: h12 BODY: h13 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 h12 qeq h10 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +15@0@-1@-1@-1@-1@-1@-1@-1@-1@(49 wh-ques 0.000000 0 3 (4 who 0.000000 0 1 ("who")) (48 ex-subj 0.000000 1 3 (47 comp-head 0.000000 1 3 (5 what 0.000000 1 2 ("what")) (6 sees 0.000000 2 3 ("sees")))))@@("S" ("NP" ("who")) ("S" ("VP" ("NP" ("what")) ("V" ("sees")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_thing_n_rel"<-1:-1> LBL: h8 ARG0: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x9 ] > HCONS: < h0 qeq h1 h6 qeq h4 h11 qeq h8 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/run b/tests/regression/home/gold/wh7-sov-sg-opt/run new file mode 100644 index 000000000..da9bd7cea --- /dev/null +++ b/tests/regression/home/gold/wh7-sov-sg-opt/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1464@-1@-1@8@0@13@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@24-apr-2020 11:11:33@24-apr-2020 11:11:34@-1@ diff --git a/tests/regression/home/gold/wh7-sov-sg-opt/tree b/tests/regression/home/gold/wh7-sov-sg-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh8-ovs-insitu/decision b/tests/regression/home/gold/wh8-ovs-insitu/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh8-ovs-insitu/edge b/tests/regression/home/gold/wh8-ovs-insitu/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh8-ovs-insitu/item b/tests/regression/home/gold/wh8-ovs-insitu/item new file mode 100644 index 000000000..1717b61bd --- /dev/null +++ b/tests/regression/home/gold/wh8-ovs-insitu/item @@ -0,0 +1,17 @@ +1@@@@1@@cat sleeps@@@@0@2@@@ +2@@@@1@@sleeps cat@@@@1@2@@@ +3@@@@1@@house sees cat@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@0@2@@@ +6@@@@1@@sleeps who?@@@@1@2@@@ +7@@@@1@@what cat sees?@@@@0@3@@@ +8@@@@1@@cat what sees?@@@@0@3@@@ +9@@@@1@@sleeps cat in house@@@@1@4@@@ +10@@@@1@@where sleeps cat?@@@@1@3@@@ +11@@@@1@@cat sleeps where?@@@@0@3@@@ +12@@@@1@@cat where sleeps?@@@@0@3@@@ +13@@@@1@@who sees what?@@@@1@3@@@ +14@@@@1@@who what sees?@@@@0@3@@@ +15@@@@1@@what sees cat@@@@1@3@@@ +16@@@@1@@what sees who@@@@1@3@@@ +17@@@@1@@sees who what@@@@0@3@@@ diff --git a/tests/regression/home/gold/wh8-ovs-insitu/item-set b/tests/regression/home/gold/wh8-ovs-insitu/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh8-ovs-insitu/parse b/tests/regression/home/gold/wh8-ovs-insitu/parse new file mode 100644 index 000000000..cc9d2cf37 --- /dev/null +++ b/tests/regression/home/gold/wh8-ovs-insitu/parse @@ -0,0 +1,17 @@ +1@0@1@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@1@3@-1@-1@-1@-1@-1@-1@-1@357@6@-1@-1@59752@-1@-1@-1@@@ +2@0@2@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@365@13@-1@-1@77712@-1@-1@-1@@@ +3@0@3@3@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@434@30@-1@-1@193200@-1@-1@-1@@@ +4@0@4@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@6@-1@-1@-1@-1@-1@-1@-1@523@46@-1@-1@117944@-1@-1@-1@@@ +5@0@5@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@2@-1@-1@-1@-1@-1@-1@-1@527@50@-1@-1@44352@-1@-1@-1@@@ +6@0@6@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@534@57@-1@-1@75792@-1@-1@-1@@@ +7@0@7@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@5@-1@-1@-1@-1@-1@-1@-1@615@69@-1@-1@102540@-1@-1@-1@@@ +8@0@8@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@5@-1@-1@-1@-1@-1@-1@-1@625@79@-1@-1@102240@-1@-1@-1@@@ +9@0@9@4@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@4@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:13>, 1, "in", 0, "null") (4, 3, 4, <14:19>, 1, "house", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@6@12@-1@-1@-1@-1@-1@-1@-1@650@101@-1@-1@295520@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:12>, 1, "sleeps", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:5>, 1, "where", 0, "null") (2, 1, 2, <6:12>, 1, "sleeps", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@5@10@-1@-1@-1@-1@-1@-1@-1@912@129@-1@-1@240240@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:16>, 1, "where", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@5@-1@-1@-1@-1@-1@-1@-1@1165@148@-1@-1@106200@-1@-1@-1@@@ +12@0@12@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "where", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@5@-1@-1@-1@-1@-1@-1@-1@1177@158@-1@-1@97404@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@6@-1@-1@-1@-1@-1@-1@-1@1190@171@-1@-1@170280@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@3@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:8>, 1, "what", 0, "null") (3, 2, 3, <9:13>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@4@-1@-1@-1@-1@-1@-1@-1@1288@182@-1@-1@86840@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@7@-1@-1@-1@-1@-1@-1@-1@1302@196@-1@-1@186400@-1@-1@-1@@@ +16@0@16@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "who", 0, "null")@3@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:9>, 1, "sees", 0, "null") (3, 2, 3, <10:13>, 1, "who", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@4@6@-1@-1@-1@-1@-1@-1@-1@1409@213@-1@-1@170280@-1@-1@-1@@@ +17@0@17@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:13>, 1, "what", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@3@-1@-1@-1@-1@-1@-1@-1@1506@223@-1@-1@84796@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh8-ovs-insitu/preference b/tests/regression/home/gold/wh8-ovs-insitu/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh8-ovs-insitu/relations b/tests/regression/home/gold/wh8-ovs-insitu/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh8-ovs-insitu/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh8-ovs-insitu/result b/tests/regression/home/gold/wh8-ovs-insitu/result new file mode 100644 index 000000000..f7e691fb7 --- /dev/null +++ b/tests/regression/home/gold/wh8-ovs-insitu/result @@ -0,0 +1,10 @@ +2@0@-1@-1@-1@-1@-1@-1@-1@-1@(22 head-subj 0.000000 0 2 (3 sleeps 0.000000 0 1 ("sleeps")) (21 bare-np 0.000000 1 2 (4 cat 0.000000 1 2 ("cat"))))@@("S" ("VP" ("sleeps")) ("NP" ("N" ("cat"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(42 head-subj 0.000000 0 3 (40 comp-head 0.000000 0 2 (39 bare-np 0.000000 0 1 (4 house 0.000000 0 1 ("house"))) (5 sees 0.000000 1 2 ("sees"))) (41 bare-np 0.000000 2 3 (6 cat 0.000000 2 3 ("cat"))))@@("S" ("VP" ("NP" ("N" ("house"))) ("V" ("sees"))) ("NP" ("N" ("cat"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(22 in-situ-ques 0.000000 0 2 (21 head-subj 0.000000 0 2 (3 sleeps 0.000000 0 1 ("sleeps")) (4 who 0.000000 1 2 ("who"))))@@("S" ("S" ("VP" ("sleeps")) ("NP" ("who"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +9@0@-1@-1@-1@-1@-1@-1@-1@-1@(60 head-subj 0.000000 0 4 (5 sleeps 0.000000 0 1 ("sleeps")) (59 bare-np 0.000000 1 4 (58 headn-adj 0.000000 1 4 (6 cat 0.000000 1 2 ("cat")) (57 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (56 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house")))))))@@("S" ("VP" ("sleeps")) ("NP" ("N" ("N" ("cat")) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h7 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: x3 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +9@1@-1@-1@-1@-1@-1@-1@-1@-1@(65 headv-adj 0.000000 0 4 (62 head-subj 0.000000 0 2 (5 sleeps 0.000000 0 1 ("sleeps")) (61 bare-np 0.000000 1 2 (6 cat 0.000000 1 2 ("cat")))) (64 head-comp 0.000000 2 4 (7 in 0.000000 2 3 ("in")) (63 bare-np 0.000000 3 4 (8 house 0.000000 3 4 ("house")))))@@("S" ("S" ("VP" ("sleeps")) ("NP" ("N" ("cat")))) ("PP" ("P" ("in")) ("NP" ("N" ("house")))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_in_p_rel"<-1:-1> LBL: h1 ARG0: e8 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x9 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x9 RSTR: h11 BODY: h12 ] [ "_house_n_rel"<-1:-1> LBL: h13 ARG0: x9 ] > HCONS: < h0 qeq h1 h5 qeq h7 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@0@-1@-1@-1@-1@-1@-1@-1@-1@(45 in-situ-ques 0.000000 0 3 (44 head-subj 0.000000 0 3 (42 adj-headv 0.000000 0 2 (4 where 0.000000 0 1 ("where")) (5 sleeps 0.000000 1 2 ("sleeps"))) (43 bare-np 0.000000 2 3 (6 cat 0.000000 2 3 ("cat")))))@@("S" ("S" ("VP" ("ADV" ("where")) ("VP" ("sleeps"))) ("NP" ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +10@1@-1@-1@-1@-1@-1@-1@-1@-1@(49 in-situ-ques 0.000000 0 3 (48 adj-headv 0.000000 0 3 (4 where 0.000000 0 1 ("where")) (47 head-subj 0.000000 1 3 (5 sleeps 0.000000 1 2 ("sleeps")) (46 bare-np 0.000000 2 3 (6 cat 0.000000 2 3 ("cat"))))))@@("S" ("S" ("ADV" ("where")) ("S" ("VP" ("sleeps")) ("NP" ("N" ("cat"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "loc_nonsp_rel"<-1:-1> LBL: h1 ARG0: e4 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_place_n_rel"<-1:-1> LBL: h6 ARG0: x5 ] [ "which_q_rel"<-1:-1> LBL: h7 ARG0: x5 RSTR: h8 BODY: h9 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "exist_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] [ "_cat_n_rel"<-1:-1> LBL: h13 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h6 h11 qeq h13 > ICONS: < > ]@((:ascore . 0.0) (:probability . 0.5)) +13@0@-1@-1@-1@-1@-1@-1@-1@-1@(39 in-situ-ques 0.000000 0 3 (38 head-subj 0.000000 0 3 (37 comp-head 0.000000 0 2 (4 who 0.000000 0 1 ("who")) (5 sees 0.000000 1 2 ("sees"))) (6 what 0.000000 2 3 ("what"))))@@("S" ("S" ("VP" ("NP" ("who")) ("V" ("sees"))) ("NP" ("what"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_thing_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +15@0@-1@-1@-1@-1@-1@-1@-1@-1@(41 in-situ-ques 0.000000 0 3 (40 head-subj 0.000000 0 3 (38 comp-head 0.000000 0 2 (4 what 0.000000 0 1 ("what")) (5 sees 0.000000 1 2 ("sees"))) (39 bare-np 0.000000 2 3 (6 cat 0.000000 2 3 ("cat")))))@@("S" ("S" ("VP" ("NP" ("what")) ("V" ("sees"))) ("NP" ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "exist_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h7 qeq h4 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +16@0@-1@-1@-1@-1@-1@-1@-1@-1@(39 in-situ-ques 0.000000 0 3 (38 head-subj 0.000000 0 3 (37 comp-head 0.000000 0 2 (4 what 0.000000 0 1 ("what")) (5 sees 0.000000 1 2 ("sees"))) (6 who 0.000000 2 3 ("who"))))@@("S" ("S" ("VP" ("NP" ("what")) ("V" ("sees"))) ("NP" ("who"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_thing_n_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h6 ARG0: x5 RSTR: h7 BODY: h8 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_person_n_rel"<-1:-1> LBL: h9 ARG0: x3 ] [ "which_q_rel"<-1:-1> LBL: h10 ARG0: x3 RSTR: h11 BODY: h12 ] > HCONS: < h0 qeq h1 h7 qeq h4 h11 qeq h9 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh8-ovs-insitu/run b/tests/regression/home/gold/wh8-ovs-insitu/run new file mode 100644 index 000000000..be8ae3167 --- /dev/null +++ b/tests/regression/home/gold/wh8-ovs-insitu/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1452@-1@-1@8@0@9@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@22-apr-2020 11:29:46@22-apr-2020 11:29:46@-1@ diff --git a/tests/regression/home/gold/wh8-ovs-insitu/tree b/tests/regression/home/gold/wh8-ovs-insitu/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/decision b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/edge b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/item b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/item new file mode 100644 index 000000000..20356ba27 --- /dev/null +++ b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/item @@ -0,0 +1,36 @@ +1@@@@1@@the cat sleeps@@@@0@3@@@ +2@@@@1@@the cat sees the house@@@@0@5@@@ +3@@@@1@@who sleeps?@@@@1@2@@@ +4@@@@1@@what the cat sees?@@@@0@4@@@ +5@@@@1@@sleeps the cat@@@@1@3@@@ +6@@@@1@@sees the cat the house@@@@1@5@@@ +7@@@@1@@the house sees the cat@@@@0@5@@@ +8@@@@1@@the house the cat sees@@@@0@5@@@ +9@@@@1@@sleeps who?@@@@0@2@@@ +10@@@@1@@sees what cat?@@@@0@3@@@ +11@@@@1@@sees who house?@@@@0@3@@@ +12@@@@1@@cat sleeps@@@@0@2@@@ +13@@@@1@@cat the sleeps@@@@0@3@@@ +14@@@@1@@cat sleeps the@@@@0@3@@@ +15@@@@1@@cat sees house@@@@0@3@@@ +16@@@@1@@cat the sees the house@@@@0@5@@@ +17@@@@1@@cat the sees house the@@@@0@5@@@ +18@@@@1@@the cat sees house the@@@@0@5@@@ +19@@@@1@@what cat the sees?@@@@0@4@@@ +20@@@@1@@sleeps cat the@@@@0@3@@@ +21@@@@1@@sees cat the house the@@@@0@5@@@ +22@@@@1@@house the cat sees@@@@0@4@@@ +23@@@@1@@house the cat the sees@@@@0@5@@@ +24@@@@1@@which cat sleeps?@@@@1@3@@@ +25@@@@1@@cat which sleeps?@@@@0@3@@@ +26@@@@1@@sleeps which cat?@@@@0@3@@@ +27@@@@1@@sleeps cat which?@@@@0@3@@@ +28@@@@1@@which house sees the cat ?@@@@1@6@@@ +29@@@@1@@the house which cat sees?@@@@0@5@@@ +30@@@@1@@sees the cat which house?@@@@0@5@@@ +31@@@@1@@which which cat sleeps?@@@@0@4@@@ +32@@@@1@@which the cat sleeps?@@@@0@4@@@ +33@@@@1@@which sees the cat house?@@@@0@5@@@ +34@@@@1@@in which house sleeps the cat?@@@@1@6@@@ +35@@@@1@@in which sleeps the cat house?@@@@0@6@@@ +36@@@@1@@in sleeps the cat which house?@@@@0@6@@@ diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/item-set b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/parse b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/parse new file mode 100644 index 000000000..523383bbf --- /dev/null +++ b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/parse @@ -0,0 +1,36 @@ +1@0@1@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@0@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@0@5@-1@-1@-1@-1@-1@-1@-1@404@8@-1@-1@77636@-1@-1@-1@@@ +2@0@2@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@12@-1@-1@-1@-1@-1@-1@-1@439@31@-1@-1@223172@-1@-1@-1@@@ +3@0@3@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "who", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@4@-1@-1@-1@-1@-1@-1@-1@446@36@-1@-1@55632@-1@-1@-1@@@ +4@0@4@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@7@-1@-1@-1@-1@-1@-1@-1@533@49@-1@-1@111328@-1@-1@-1@@@ +5@0@5@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "the", 0, "null") (3, 2, 3, <11:14>, 1, "cat", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@6@-1@-1@-1@-1@-1@-1@-1@548@60@-1@-1@117208@-1@-1@-1@@@ +6@0@6@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@12@13@-1@-1@-1@-1@-1@-1@-1@671@92@-1@-1@355352@-1@-1@-1@@@ +7@0@7@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:14>, 1, "sees", 0, "null") (4, 3, 4, <15:18>, 1, "the", 0, "null") (5, 4, 5, <19:22>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@12@-1@-1@-1@-1@-1@-1@-1@834@119@-1@-1@223176@-1@-1@-1@@@ +8@0@8@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:13>, 1, "the", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:13>, 1, "the", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@9@-1@-1@-1@-1@-1@-1@-1@861@134@-1@-1@152456@-1@-1@-1@@@ +9@0@9@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@2@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "who", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@4@-1@-1@-1@-1@-1@-1@-1@871@142@-1@-1@71712@-1@-1@-1@@@ +10@0@10@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:9>, 1, "what", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@8@-1@-1@-1@-1@-1@-1@-1@907@165@-1@-1@246240@-1@-1@-1@@@ +11@0@11@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "who", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@12@8@-1@-1@-1@-1@-1@-1@-1@941@188@-1@-1@246240@-1@-1@-1@@@ +12@0@12@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@2@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@3@-1@-1@-1@-1@-1@-1@-1@948@192@-1@-1@40752@-1@-1@-1@@@ +13@0@13@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:14>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@4@-1@-1@-1@-1@-1@-1@-1@958@198@-1@-1@62636@-1@-1@-1@@@ +14@0@14@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:10>, 1, "sleeps", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@4@-1@-1@-1@-1@-1@-1@-1@972@207@-1@-1@97320@-1@-1@-1@@@ +15@0@15@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:8>, 1, "sees", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@5@-1@-1@-1@-1@-1@-1@-1@994@220@-1@-1@146720@-1@-1@-1@@@ +16@0@16@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:16>, 1, "the", 0, "null") (5, 4, 5, <17:22>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@11@-1@-1@-1@-1@-1@-1@-1@1025@241@-1@-1@208132@-1@-1@-1@@@ +17@0@17@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:7>, 1, "the", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@5@7@-1@-1@-1@-1@-1@-1@-1@1054@258@-1@-1@194292@-1@-1@-1@@@ +18@0@18@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:7>, 1, "cat", 0, "null") (3, 2, 3, <8:12>, 1, "sees", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@8@-1@-1@-1@-1@-1@-1@-1@1087@277@-1@-1@209332@-1@-1@-1@@@ +19@0@19@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@4@(1, 0, 1, <0:4>, 1, "what", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:17>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@-1@6@-1@-1@-1@-1@-1@-1@-1@1102@286@-1@-1@96288@-1@-1@-1@@@ +20@0@20@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@4@-1@-1@-1@-1@-1@-1@-1@1117@295@-1@-1@97324@-1@-1@-1@@@ +21@0@21@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "cat", 0, "null") (3, 2, 3, <9:12>, 1, "the", 0, "null") (4, 3, 4, <13:18>, 1, "house", 0, "null") (5, 4, 5, <19:22>, 1, "the", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@6@8@-1@-1@-1@-1@-1@-1@-1@1150@314@-1@-1@209216@-1@-1@-1@@@ +22@0@22@4@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null")@4@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:18>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@7@-1@-1@-1@-1@-1@-1@-1@1170@325@-1@-1@115528@-1@-1@-1@@@ +23@0@23@5@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:5>, 1, "house", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:17>, 1, "the", 0, "null") (5, 4, 5, <18:22>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@8@-1@-1@-1@-1@-1@-1@-1@1193@338@-1@-1@137456@-1@-1@-1@@@ +24@0@24@3@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "cat", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@1@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@1208@348@-1@-1@118400@-1@-1@-1@@@ +25@0@25@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@3@(1, 0, 1, <0:3>, 1, "cat", 0, "null") (2, 1, 2, <4:9>, 1, "which", 0, "null") (3, 2, 3, <10:16>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@0@4@-1@-1@-1@-1@-1@-1@-1@1317@358@-1@-1@73928@-1@-1@-1@@@ +26@0@26@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:12>, 1, "which", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:12>, 1, "which", 0, "null") (3, 2, 3, <13:16>, 1, "cat", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@3@6@-1@-1@-1@-1@-1@-1@-1@1332@370@-1@-1@110276@-1@-1@-1@@@ +27@0@27@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null")@3@(1, 0, 1, <0:6>, 1, "sleeps", 0, "null") (2, 1, 2, <7:10>, 1, "cat", 0, "null") (3, 2, 3, <11:16>, 1, "which", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@4@-1@-1@-1@-1@-1@-1@-1@1349@379@-1@-1@97852@-1@-1@-1@@@ +28@0@28@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:24>, 1, "cat", 0, "null")@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "house", 0, "null") (3, 2, 3, <12:16>, 1, "sees", 0, "null") (4, 3, 4, <17:20>, 1, "the", 0, "null") (5, 4, 5, <21:24>, 1, "cat", 0, "null")@2@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@7@14@-1@-1@-1@-1@-1@-1@-1@1387@405@-1@-1@352648@-1@-1@-1@@@ +29@0@29@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:15>, 1, "which", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@5@(1, 0, 1, <0:3>, 1, "the", 0, "null") (2, 1, 2, <4:9>, 1, "house", 0, "null") (3, 2, 3, <10:15>, 1, "which", 0, "null") (4, 3, 4, <16:19>, 1, "cat", 0, "null") (5, 4, 5, <20:24>, 1, "sees", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@9@-1@-1@-1@-1@-1@-1@-1@1709@430@-1@-1@162344@-1@-1@-1@@@ +30@0@30@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:18>, 1, "which", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@5@(1, 0, 1, <0:4>, 1, "sees", 0, "null") (2, 1, 2, <5:8>, 1, "the", 0, "null") (3, 2, 3, <9:12>, 1, "cat", 0, "null") (4, 3, 4, <13:18>, 1, "which", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@13@-1@-1@-1@-1@-1@-1@-1@1754@461@-1@-1@320664@-1@-1@-1@@@ +31@0@31@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "which", 0, "null") (3, 2, 3, <12:15>, 1, "cat", 0, "null") (4, 3, 4, <16:22>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:11>, 1, "which", 0, "null") (3, 2, 3, <12:15>, 1, "cat", 0, "null") (4, 3, 4, <16:22>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@2@8@-1@-1@-1@-1@-1@-1@-1@1776@475@-1@-1@133468@-1@-1@-1@@@ +32@0@32@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@4@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:9>, 1, "the", 0, "null") (3, 2, 3, <10:13>, 1, "cat", 0, "null") (4, 3, 4, <14:20>, 1, "sleeps", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@1@6@-1@-1@-1@-1@-1@-1@-1@1793@486@-1@-1@110896@-1@-1@-1@@@ +33@0@33@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:18>, 1, "cat", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@5@(1, 0, 1, <0:5>, 1, "which", 0, "null") (2, 1, 2, <6:10>, 1, "sees", 0, "null") (3, 2, 3, <11:14>, 1, "the", 0, "null") (4, 3, 4, <15:18>, 1, "cat", 0, "null") (5, 4, 5, <19:24>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@13@11@-1@-1@-1@-1@-1@-1@-1@1841@515@-1@-1@311984@-1@-1@-1@@@ +34@0@34@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:14>, 1, "house", 0, "null") (4, 3, 4, <15:21>, 1, "sleeps", 0, "null") (5, 4, 5, <22:25>, 1, "the", 0, "null") (6, 5, 6, <26:29>, 1, "cat", 0, "null")@1@-1@1@1@-1@1@-1@-1@-1@-1@-1@-1@14@18@-1@-1@-1@-1@-1@-1@-1@1895@553@-1@-1@423912@-1@-1@-1@@@ +35@0@35@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:15>, 1, "sleeps", 0, "null") (4, 3, 4, <16:19>, 1, "the", 0, "null") (5, 4, 5, <20:23>, 1, "cat", 0, "null") (6, 5, 6, <24:29>, 1, "house", 0, "null")@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:8>, 1, "which", 0, "null") (3, 2, 3, <9:15>, 1, "sleeps", 0, "null") (4, 3, 4, <16:19>, 1, "the", 0, "null") (5, 4, 5, <20:23>, 1, "cat", 0, "null") (6, 5, 6, <24:29>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@10@-1@-1@-1@-1@-1@-1@-1@2141@584@-1@-1@265676@-1@-1@-1@@@ +36@0@36@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:9>, 1, "sleeps", 0, "null") (3, 2, 3, <10:13>, 1, "the", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:23>, 1, "which", 0, "null") (6, 5, 6, <24:29>, 1, "house", 0, "null")@6@(1, 0, 1, <0:2>, 1, "in", 0, "null") (2, 1, 2, <3:9>, 1, "sleeps", 0, "null") (3, 2, 3, <10:13>, 1, "the", 0, "null") (4, 3, 4, <14:17>, 1, "cat", 0, "null") (5, 4, 5, <18:23>, 1, "which", 0, "null") (6, 5, 6, <24:29>, 1, "house", 0, "null")@0@-1@0@0@-1@0@-1@-1@-1@-1@-1@-1@9@11@-1@-1@-1@-1@-1@-1@-1@2178@610@-1@-1@268120@-1@-1@-1@@@ diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/preference b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/relations b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/result b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/result new file mode 100644 index 000000000..072273d3f --- /dev/null +++ b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/result @@ -0,0 +1,7 @@ +3@0@-1@-1@-1@-1@-1@-1@-1@-1@(23 wh-ques 0.000000 0 2 (3 who 0.000000 0 1 ("who")) (22 ex-subj 0.000000 1 2 (4 sleeps 0.000000 1 2 ("sleeps"))))@@("S" ("NP" ("who")) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_person_n_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "which_q_rel"<-1:-1> LBL: h5 ARG0: x3 RSTR: h6 BODY: h7 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h6 qeq h4 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +5@0@-1@-1@-1@-1@-1@-1@-1@-1@(40 head-subj 0.000000 0 3 (4 sleeps 0.000000 0 1 ("sleeps")) (39 head-spec 0.000000 1 3 (5 the 0.000000 1 2 ("the")) (6 cat 0.000000 2 3 ("cat"))))@@("S" ("VP" ("sleeps")) ("NP" ("D" ("the")) ("N" ("cat"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h4 ARG0: x3 RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +6@0@-1@-1@-1@-1@-1@-1@-1@-1@(83 head-subj 0.000000 0 5 (81 head-comp 0.000000 0 3 (6 sees 0.000000 0 1 ("sees")) (80 head-spec 0.000000 1 3 (7 the 0.000000 1 2 ("the")) (8 cat 0.000000 2 3 ("cat")))) (82 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 house 0.000000 4 5 ("house"))))@@("S" ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("cat")))) ("NP" ("D" ("the")) ("N" ("house"))))@[ LTOP: h0 INDEX: e2 [ e SF: prop-or-ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x4 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h5 ARG0: x4 RSTR: h6 BODY: h7 ] [ "_cat_n_rel"<-1:-1> LBL: h8 ARG0: x4 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_house_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) +24@0@-1@-1@-1@-1@-1@-1@-1@-1@(40 wh-ques 0.000000 0 3 (38 head-spec 0.000000 0 2 (4 which 0.000000 0 1 ("which")) (5 cat 0.000000 1 2 ("cat"))) (39 ex-subj 0.000000 2 3 (6 sleeps 0.000000 2 3 ("sleeps"))))@@("S" ("NP" ("D" ("which")) ("N" ("cat"))) ("S" ("VP" ("sleeps"))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_cat_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ] > HCONS: < h0 qeq h1 h5 qeq h7 > ICONS: < i8 info-str i9 > ]@((:ascore . 0.0) (:probability . 1.0)) +28@0@-1@-1@-1@-1@-1@-1@-1@-1@(80 wh-ques 0.000000 0 5 (76 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 house 0.000000 1 2 ("house"))) (79 ex-subj 0.000000 2 5 (78 head-comp 0.000000 2 5 (8 sees 0.000000 2 3 ("sees")) (77 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 cat 0.000000 4 5 ("cat"))))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("VP" ("V" ("sees")) ("NP" ("D" ("the")) ("N" ("cat"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h5 BODY: h6 ] [ "_house_n_rel"<-1:-1> LBL: h7 ARG0: x3 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 ARG2: x8 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x8 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x8 ] > HCONS: < h0 qeq h1 h5 qeq h7 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +28@1@-1@-1@-1@-1@-1@-1@-1@-1@(84 wh-ques 0.000000 0 5 (76 head-spec 0.000000 0 2 (6 which 0.000000 0 1 ("which")) (7 house 0.000000 1 2 ("house"))) (83 head-subj 0.000000 2 5 (81 ex-comp 0.000000 2 3 (8 sees 0.000000 2 3 ("sees"))) (82 head-spec 0.000000 3 5 (9 the 0.000000 3 4 ("the")) (10 cat 0.000000 4 5 ("cat")))))@@("S" ("NP" ("D" ("which")) ("N" ("house"))) ("S" ("VP" ("V" ("sees"))) ("NP" ("D" ("the")) ("N" ("cat")))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_which_q_rel"<-1:-1> LBL: h4 ARG0: x5 [ x SPECI: bool COG-ST: cog-st PNG: png ] RSTR: h6 BODY: h7 ] [ "_house_n_rel"<-1:-1> LBL: h8 ARG0: x5 ] [ "_sees_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ARG2: x5 ] [ "_the_q_rel"<-1:-1> LBL: h9 ARG0: x3 RSTR: h10 BODY: h11 ] [ "_cat_n_rel"<-1:-1> LBL: h12 ARG0: x3 ] > HCONS: < h0 qeq h1 h6 qeq h8 h10 qeq h12 > ICONS: < i13 info-str i14 > ]@((:ascore . 0.0) (:probability . 0.5)) +34@0@-1@-1@-1@-1@-1@-1@-1@-1@(104 wh-ques 0.000000 0 6 (100 head-comp 0.000000 0 3 (7 in 0.000000 0 1 ("in")) (99 head-spec 0.000000 1 3 (8 which 0.000000 1 2 ("which")) (9 house 0.000000 2 3 ("house")))) (103 ex-adj 0.000000 3 6 (102 head-subj 0.000000 3 6 (10 sleeps 0.000000 3 4 ("sleeps")) (101 head-spec 0.000000 4 6 (11 the 0.000000 4 5 ("the")) (12 cat 0.000000 5 6 ("cat"))))))@@("S" ("PP" ("P" ("in")) ("NP" ("D" ("which")) ("N" ("house")))) ("S" ("S" ("VP" ("sleeps")) ("NP" ("D" ("the")) ("N" ("cat"))))))@[ LTOP: h0 INDEX: e2 [ e SF: ques E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] RELS: < [ "_in_p_rel"<-1:-1> LBL: h4 ARG0: e5 [ e SF: iforce E.TENSE: tense E.ASPECT: aspect E.MOOD: mood ] ARG1: e2 ARG2: x6 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_which_q_rel"<-1:-1> LBL: h7 ARG0: x6 RSTR: h8 BODY: h9 ] [ "_house_n_rel"<-1:-1> LBL: h10 ARG0: x6 ] [ "_sleep_v_rel"<-1:-1> LBL: h1 ARG0: e2 ARG1: x3 [ x SPECI: bool COG-ST: cog-st PNG: png ] ] [ "_the_q_rel"<-1:-1> LBL: h11 ARG0: x3 RSTR: h12 BODY: h13 ] [ "_cat_n_rel"<-1:-1> LBL: h14 ARG0: x3 ] > HCONS: < h0 qeq h1 h8 qeq h10 h12 qeq h14 > ICONS: < > ]@((:ascore . 0.0) (:probability . 1.0)) diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/run b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/run new file mode 100644 index 000000000..ed218dd21 --- /dev/null +++ b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/run @@ -0,0 +1 @@ +0@@gcc 8.2@-1@@ACE 0.9.30 via PyDelphin v1.0.0@--tsdb-notes --tsdb-stdout --report-labels@unknown@1465@-1@-1@9@0@10@olzama@MurkinPro.local@Darwin-18.7.0-x86_64-i386-64bit@6-apr-2020 13:49:50@6-apr-2020 13:49:50@-1@ diff --git a/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/tree b/tests/regression/home/gold/wh9-vos-sg-oblig-ppip-all-oblig/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/regression-test-index b/tests/regression/regression-test-index index 31bd6b65b..81d882c42 100644 --- a/tests/regression/regression-test-index +++ b/tests/regression/regression-test-index @@ -477,3 +477,35 @@ ccomp-yak=Clausal complements held-out: Yakima Sahaptin (yak) adj-yes-no-cop-aux-inv=auxiliaries and copulas intersecting with yes-no library adj-yes-no-cop-inv=copulas intersecting with yes-no library subj-aux-inv-q=yes-no questions with subject auxiliary inversion +wh-svo-sg-oblig-min=Wh-questions: Minimal; SVO, matrix clauses only, one question phrase, obligatory fronting; no info structure or any other choices; no determiners or auxiliaries. +wh2-sov-sg-oblig-min=Wh-questions: Minimal; SOV, matrix clauses only, one question phrase, obligatory fronting; no info structure or any other choices; no determiners or auxiliaries. +wh4-free-sg-oblig-min=Free wo, obligatory single fronting of questions +wh5-free-sg-oblig-det=Free word order but determiners must come before nouns +adv-s-vp-v-min=A minimal test to see underspecified attachment of adverbs. +wh3-vso-sg-oblig-det=Wh-questions in VSO order with Noun-Det, obligatory single fronting +wh6-svo-sg-opt=Optional fronting of one question phrase; SVO word order; adverbs; multiple questions. +wh7-sov-sg-opt=SOV word order, optional fronting of a single question phrase; adverbs; multiple questions. +wh8-ovs-insitu=OVS word order, in-situ wh questionss. +wh9-vos-sg-oblig-ppip-all-oblig=Obligatory pied piping of all types of phrases in a VOS language with single question phrase fronted obligatorily in matrix clauses. +wh10-svo-multi-all-oblig-min=Obligatory fronting of all question phrases in an SVO language. +wh11-svo-multi-one-oblig=Multiple fronting of wh-questions, one being obligatory but the other possible in situ. SVO word order. +wh12-vos-sg-oblig-pied-adp-opt=Obligatory pied piping of nouns and optional of adpositions; VOS word order (constituent questions) +wh13-oblig-particle-osv=Wh-questions via particles; OSV order, obligatory particle +wh14-oblig-imposs-part=Constituent questions; OSV order; two question particles: one occurs with both polar and constituent questions, another only with polar. +wh-dev-mini-japanese=Wh-questions; development languages; mini-japanese (optional particles, in-situ) +wh-dev-rus=Russian development grammar; is 68% coverage and 6% overgeneration, with also some spurious ambiguity. +wh15-insitu-oblig-part-vfinal=A wh in situ language with the same particle used obligatorily in both polar and wh questions; v-final order. +wh-yux-dev=Small grammar of Yukaghir featuring morphological marking of questions and focus-person split. +wh16-morph-sep-opt=Optional morphological marking for questions, separate for polar and wh. +wh17-morph-sep-oblig=Morphologically marked questions, separate paradigm for polar and wh, obligatory marking. +wh-dev-ckt-mini=Constituent questions with interrogative verbs (Chukchi) +wh18-aux-inv-both=Auxiliary inversion with both subject and object questions in both main and embedded clauses +wh19-cfocus-marking=Focus marking on question words +wh20-no-cfocus-marking=No focus marking on question words +wh21-embed-insitu=Optional single fronting, but embedded in situ questions are possible. +wh22-no-multi-ques=No multiple wh-questions allowed. +wh23-quesverbs=A mixture of languages featuring interrogative verbs. No morphology or any other phenomena; the point is just to check the semantics of the verbs/ +wh24-particles-embed=Obligatory question particle and embedded clauses, think vs. wonder +wh25-no-multi-insitu-morph=In situ wh-questions with optional morphological marking, only one question allowed per clause. +wh-eng-dev=English wh-questions; mainly subj-aux inversion. +!valchg-jpn-rom=A valence change test which has no gold MRS. diff --git a/tests/regression/skeletons/adv-s-vp-v-min/analysis b/tests/regression/skeletons/adv-s-vp-v-min/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/decision b/tests/regression/skeletons/adv-s-vp-v-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/edge b/tests/regression/skeletons/adv-s-vp-v-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/fold b/tests/regression/skeletons/adv-s-vp-v-min/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/item b/tests/regression/skeletons/adv-s-vp-v-min/item new file mode 100644 index 000000000..9c532d1b2 --- /dev/null +++ b/tests/regression/skeletons/adv-s-vp-v-min/item @@ -0,0 +1,12 @@ +1@@@@1@@the cat sleeps@@@@1@3@@@ +2@@@@1@@the cat sees the house@@@@1@5@@@ +3@@@@1@@the cat sleeps in the house@@@@1@6@@@ +4@@@@1@@the cat sleeps there@@@@1@4@@@ +5@@@@1@@there the cat sleeps@@@@1@4@@@ +6@@@@1@@the cat there sleeps@@@@1@4@@@ +7@@@@1@@the there cat sleeps@@@@0@4@@@ +8@@@@1@@the cat sees the house there@@@@1@6@@@ +9@@@@1@@the cat sees there the house@@@@1@6@@@ +10@@@@1@@the cat there sees the house@@@@1@6@@@ +11@@@@1@@the there cat sees the house@@@@0@6@@@ +12@@@@1@@the cat sees the there house@@@@0@6@@@ diff --git a/tests/regression/skeletons/adv-s-vp-v-min/item-phenomenon b/tests/regression/skeletons/adv-s-vp-v-min/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/item-set b/tests/regression/skeletons/adv-s-vp-v-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/output b/tests/regression/skeletons/adv-s-vp-v-min/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/parameter b/tests/regression/skeletons/adv-s-vp-v-min/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/parse b/tests/regression/skeletons/adv-s-vp-v-min/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/phenomenon b/tests/regression/skeletons/adv-s-vp-v-min/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/preference b/tests/regression/skeletons/adv-s-vp-v-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/relations b/tests/regression/skeletons/adv-s-vp-v-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/adv-s-vp-v-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/adv-s-vp-v-min/result b/tests/regression/skeletons/adv-s-vp-v-min/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/rule b/tests/regression/skeletons/adv-s-vp-v-min/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/run b/tests/regression/skeletons/adv-s-vp-v-min/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/score b/tests/regression/skeletons/adv-s-vp-v-min/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/set b/tests/regression/skeletons/adv-s-vp-v-min/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/tree b/tests/regression/skeletons/adv-s-vp-v-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/adv-s-vp-v-min/update b/tests/regression/skeletons/adv-s-vp-v-min/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/analysis b/tests/regression/skeletons/wh-dev-ckt-mini/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/decision b/tests/regression/skeletons/wh-dev-ckt-mini/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/edge b/tests/regression/skeletons/wh-dev-ckt-mini/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/fold b/tests/regression/skeletons/wh-dev-ckt-mini/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/item b/tests/regression/skeletons/wh-dev-ckt-mini/item new file mode 100644 index 000000000..9ccf4c4d1 --- /dev/null +++ b/tests/regression/skeletons/wh-dev-ckt-mini/item @@ -0,0 +1,8 @@ +1@@@@1@@req-ərkənəm igirkej gənin ekək@@@@1@4@@@ +2@@@@1@@nǐ zà=gànmá@@@@1@2@@@ +3@@@@1@@ke trò@@@@1@2@@@ +4@@@@1@@vasia-m@@@@1@1@@@ +5@@@@1@@ʔeʔenət-čxw@@@@1@1@@@ +6@@@@1@@čem@@@@1@1@@@ +7@@@@1@@ine-n-req@@@@1@1@@@ +8@@@@1@@zà=req-iγət@@@@1@1@@@ diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/item-phenomenon b/tests/regression/skeletons/wh-dev-ckt-mini/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/item-set b/tests/regression/skeletons/wh-dev-ckt-mini/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/output b/tests/regression/skeletons/wh-dev-ckt-mini/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/parameter b/tests/regression/skeletons/wh-dev-ckt-mini/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/parse b/tests/regression/skeletons/wh-dev-ckt-mini/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/phenomenon b/tests/regression/skeletons/wh-dev-ckt-mini/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/preference b/tests/regression/skeletons/wh-dev-ckt-mini/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/relations b/tests/regression/skeletons/wh-dev-ckt-mini/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh-dev-ckt-mini/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/result b/tests/regression/skeletons/wh-dev-ckt-mini/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/rule b/tests/regression/skeletons/wh-dev-ckt-mini/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/run b/tests/regression/skeletons/wh-dev-ckt-mini/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/score b/tests/regression/skeletons/wh-dev-ckt-mini/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/set b/tests/regression/skeletons/wh-dev-ckt-mini/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/tree b/tests/regression/skeletons/wh-dev-ckt-mini/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-ckt-mini/update b/tests/regression/skeletons/wh-dev-ckt-mini/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/analysis b/tests/regression/skeletons/wh-dev-mini-japanese/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/decision b/tests/regression/skeletons/wh-dev-mini-japanese/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/edge b/tests/regression/skeletons/wh-dev-mini-japanese/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/fold b/tests/regression/skeletons/wh-dev-mini-japanese/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/item b/tests/regression/skeletons/wh-dev-mini-japanese/item new file mode 100644 index 000000000..9b8254939 --- /dev/null +++ b/tests/regression/skeletons/wh-dev-mini-japanese/item @@ -0,0 +1,10 @@ +1@@@@1@@Kim-wa nani-o yonda no@@@@1@4@@@ +2@@@@1@@Kim-wa nani-o yonda@@@@1@3@@@ +3@@@@1@@Sandy-wa Kim-ga nani-o yonda ka sitteiru@@@@1@6@@@ +4@@@@1@@dare-ga kuru@@@@1@2@@@ +5@@@@1@@dare-ga kuru no@@@@1@3@@@ +6@@@@1@@dare-ga kuru ka@@@@0@3@@@ +7@@@@1@@Sandy-wa Kim-ga nani-o yonda no sitteiru@@@@1@6@@@ +8@@@@1@@Sandy-wa Kim-ga nani-o yonda sitteiru@@@@1@5@@@ +9@@@@1@@no dare-ga kuru@@@@0@3@@@ +10@@@@1@@ka dare-ga kuru@@@@0@3@@@ diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/item-phenomenon b/tests/regression/skeletons/wh-dev-mini-japanese/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/item-set b/tests/regression/skeletons/wh-dev-mini-japanese/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/output b/tests/regression/skeletons/wh-dev-mini-japanese/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/parameter b/tests/regression/skeletons/wh-dev-mini-japanese/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/parse b/tests/regression/skeletons/wh-dev-mini-japanese/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/phenomenon b/tests/regression/skeletons/wh-dev-mini-japanese/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/preference b/tests/regression/skeletons/wh-dev-mini-japanese/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/relations b/tests/regression/skeletons/wh-dev-mini-japanese/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh-dev-mini-japanese/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/result b/tests/regression/skeletons/wh-dev-mini-japanese/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/rule b/tests/regression/skeletons/wh-dev-mini-japanese/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/run b/tests/regression/skeletons/wh-dev-mini-japanese/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/score b/tests/regression/skeletons/wh-dev-mini-japanese/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/set b/tests/regression/skeletons/wh-dev-mini-japanese/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/tree b/tests/regression/skeletons/wh-dev-mini-japanese/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-mini-japanese/update b/tests/regression/skeletons/wh-dev-mini-japanese/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/analysis b/tests/regression/skeletons/wh-dev-rus/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/decision b/tests/regression/skeletons/wh-dev-rus/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/edge b/tests/regression/skeletons/wh-dev-rus/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/fold b/tests/regression/skeletons/wh-dev-rus/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/item b/tests/regression/skeletons/wh-dev-rus/item new file mode 100644 index 000000000..2c9584cd1 --- /dev/null +++ b/tests/regression/skeletons/wh-dev-rus/item @@ -0,0 +1,327 @@ +1@@@@1@@# Simple intransitive propositions@@@@1@4@@@ +2@@@@1@@Иван лежит@@@@1@2@@@ +3@@@@1@@Лежит Иван@@@@1@2@@@ +4@@@@1@@@@@@1@0@@@ +5@@@@1@@# Simple transitive propositions@@@@1@4@@@ +6@@@@1@@Иван читает книгу @@@@1@3@@@ +7@@@@1@@Читает книгу Иван@@@@1@3@@@ +8@@@@1@@Читает Иван книгу@@@@1@3@@@ +9@@@@1@@Книгу Иван читает@@@@1@3@@@ +10@@@@1@@Книгу читает Иван@@@@1@3@@@ +11@@@@1@@Иван книгу читает@@@@1@3@@@ +12@@@@1@@@@@@1@0@@@ +13@@@@1@@# Question about intransitive subject of matrix clause@@@@1@8@@@ +14@@@@1@@Кто идет?@@@@1@2@@@ +15@@@@1@@Кого идет?@@@@0@2@@@ +16@@@@1@@Чему лежит?@@@@0@2@@@ +17@@@@1@@Кто идешь?@@@@0@2@@@ +18@@@@1@@Кто идете?@@@@0@2@@@ +19@@@@1@@Что лежишь?@@@@0@2@@@ +20@@@@1@@Что лежит?@@@@1@2@@@ +21@@@@1@@@@@@1@0@@@ +22@@@@1@@# Question about subject of transitive matrix clause@@@@1@8@@@ +23@@@@1@@Кто видит сон?@@@@1@3@@@ +24@@@@1@@Кто сон видит?@@@@1@3@@@ +25@@@@1@@?Видит кто сон?@@@@1@3@@@ +26@@@@1@@?Видит сон кто?@@@@1@3@@@ +27@@@@1@@Сон кто видит?@@@@1@3@@@ +28@@@@1@@Сон видит кто?@@@@1@3@@@ +29@@@@1@@Кто видит Ивана?@@@@1@3@@@ +30@@@@1@@Кого видит Ивана?@@@@0@3@@@ +31@@@@1@@Кто видит женщину в книге?@@@@1@5@@@ +32@@@@1@@@@@@1@0@@@ +33@@@@1@@# Question about object of transitive matrix clause@@@@1@8@@@ +34@@@@1@@Что видит Иван?@@@@1@3@@@ +35@@@@1@@Кого видит Иван?@@@@1@3@@@ +36@@@@1@@Кто видит Иван?@@@@0@3@@@ +37@@@@1@@@@@@1@0@@@ +38@@@@1@@# Multiple questions about subject and object of transitive matrix clause@@@@1@11@@@ +39@@@@1@@Кто что видит?@@@@1@3@@@ +40@@@@1@@Кто видит что?@@@@1@3@@@ +41@@@@1@@Что видит кто?@@@@1@3@@@ +42@@@@1@@Кого что видит?@@@@1@3@@@ +43@@@@1@@Кто чему видит?@@@@0@3@@@ +44@@@@1@@Кого чему видит?@@@@0@3@@@ +45@@@@1@@@@@@1@0@@@ +46@@@@1@@# Question about adjunct of intransitive and transitive matrix clause@@@@1@10@@@ +47@@@@1@@Иван идет куда?@@@@1@3@@@ +48@@@@1@@Куда идет Иван?@@@@1@3@@@ +49@@@@1@@Иван куда идет?@@@@1@3@@@ +50@@@@1@@?Идет Иван куда?@@@@1@3@@@ +51@@@@1@@?Идет куда Иван?@@@@1@3@@@ +52@@@@1@@Иван куда идет в книге?@@@@1@5@@@ +53@@@@1@@Куда Иван идет в книге?@@@@1@5@@@ +54@@@@1@@Куда Иван в книге идет?@@@@1@5@@@ +55@@@@1@@Где Иван видел Машу?@@@@1@4@@@ +56@@@@1@@Как Иван пишет диссертацию?@@@@1@4@@@ +57@@@@1@@Иван как пишет диссертацию?@@@@1@4@@@ +58@@@@1@@?Иван пишет как диссертацию?@@@@1@4@@@ +59@@@@1@@?Иван пишет диссертацию как?@@@@1@4@@@ +60@@@@1@@@@@@1@0@@@ +61@@@@1@@# PP-adjuncts@@@@1@2@@@ +62@@@@1@@В какой город Иван приехал?@@@@1@5@@@ +63@@@@1@@В какой Иван приехал город?@@@@1@5@@@ +64@@@@1@@В Иван приехал какой город?@@@@0@5@@@ +65@@@@1@@В Иван какой приехал город?@@@@0@5@@@ +66@@@@1@@Какого Иван приехал из города?@@@@0@5@@@ +67@@@@1@@Какой город Иван приехал?@@@@0@4@@@ +68@@@@1@@Какому город Иван приехал?@@@@0@4@@@ +69@@@@1@@В какому город Иван приехал?@@@@0@5@@@ +70@@@@1@@В какому городу Иван приехал?@@@@0@5@@@ +71@@@@1@@Из какого города Иван приехал?@@@@1@5@@@ +72@@@@1@@Какого города Иван приехал?@@@@0@4@@@ +73@@@@1@@Кто и в какой город приехал?@@@@1@6@@@ +74@@@@1@@Иван видит женщину в книге.@@@@1@5@@@ +75@@@@1@@Иван видит женщину в этой книге.@@@@1@6@@@ +76@@@@1@@Иван видит женщину книге в.@@@@0@5@@@ +77@@@@1@@Иван видит женщину этой в книге.@@@@0@6@@@ +78@@@@1@@Иван видит женщину книге в этой.@@@@0@6@@@ +79@@@@1@@В какой книге Иван видит женщину?@@@@1@6@@@ +80@@@@1@@Каких в книгах Иван видит женщину?@@@@0@6@@@ +81@@@@1@@Книге в какой Иван видит женщину?@@@@0@6@@@ +82@@@@1@@Книге какой в Иван видит женщину?@@@@0@6@@@ +83@@@@1@@Иван видит женщину в какой книге?@@@@1@6@@@ +84@@@@1@@Какой человек в книге видит женщину?@@@@1@6@@@ +85@@@@1@@В какой же книге Иван видит женщину?@@@@1@7@@@ +86@@@@1@@В какого книге Иван видит женщину?@@@@0@6@@@ +87@@@@1@@В какой книги Иван видит женщину?@@@@0@6@@@ +88@@@@1@@@@@@1@0@@@ +89@@@@1@@# Multiple questions about subject and adjunct of intransitive matrix clause@@@@1@11@@@ +90@@@@1@@Кто куда идет?@@@@1@3@@@ +91@@@@1@@Кому куда идет?@@@@0@3@@@ +92@@@@1@@Куда кто идет?@@@@1@3@@@ +93@@@@1@@?Идет кто куда?@@@@1@3@@@ +94@@@@1@@?Куда идет кто?@@@@1@3@@@ +95@@@@1@@?Идет куда кто?@@@@1@3@@@ +96@@@@1@@Кто идет куда?@@@@1@3@@@ +97@@@@1@@Где когда кто что купил?@@@@0@5@@@ +98@@@@1@@Где когда Иван купил книгу?@@@@0@5@@@ +99@@@@1@@@@@@1@0@@@ +100@@@@1@@# Question about determiner in the object NP in embedded clause@@@@1@11@@@ +101@@@@1@@Сколько книг Иван читает?@@@@1@4@@@ +102@@@@1@@Сколько Иван книг читает?@@@@1@4@@@ +103@@@@1@@Сколько книгу Иван читает?@@@@0@4@@@ +104@@@@1@@Сколько Иван читает книг?@@@@1@4@@@ +105@@@@1@@Иван сколько книг читает?@@@@1@4@@@ +106@@@@1@@Иван читает сколько книг?@@@@1@4@@@ +107@@@@1@@Иван сколько читает книг?@@@@1@4@@@ +108@@@@1@@Иван читает книг сколько?@@@@1@4@@@ +109@@@@1@@@@@@1@0@@@ +110@@@@1@@Который человек приехал?@@@@1@3@@@ +111@@@@1@@Какой человек приехал?@@@@1@3@@@ +112@@@@1@@Какой приехал человек?@@@@1@3@@@ +113@@@@1@@Какого человек приехал?@@@@0@3@@@ +114@@@@1@@Какому человек приехал?@@@@0@3@@@ +115@@@@1@@Какую книгу Иван читает?@@@@1@4@@@ +116@@@@1@@Какую Иван читает книгу?@@@@1@4@@@ +117@@@@1@@Какого книгу Иван читает?@@@@0@4@@@ +118@@@@1@@Какую книгу читает Иван?@@@@1@4@@@ +119@@@@1@@Какую книга читает Иван?@@@@0@4@@@ +120@@@@1@@Какую книги читает Иван?@@@@0@4@@@ +121@@@@1@@Какие книги читает Иван?@@@@1@4@@@ +122@@@@1@@Какие книгу читает Иван?@@@@0@4@@@ +123@@@@1@@Какую сон видит Иван?@@@@0@4@@@ +124@@@@1@@Какой сон видит Иван?@@@@1@4@@@ +125@@@@1@@@@@@1@0@@@ +126@@@@1@@@@@@1@0@@@ +127@@@@1@@# Embedded proposition@@@@1@3@@@ +128@@@@1@@Иван спрашивает, что студент лежит@@@@0@5@@@ +129@@@@1@@Иван думает, что студент лежит@@@@1@5@@@ +130@@@@1@@Иван думает, студент лежит@@@@1@4@@@ +131@@@@1@@Иван спрашивает, студент читает книгу@@@@0@5@@@ +132@@@@1@@Иван думает, что студент читает книгу@@@@1@6@@@ +133@@@@1@@Думает Иван, что студент читает книгу@@@@1@6@@@ +134@@@@1@@Думает Иван, студент читает книгу что@@@@0@6@@@ +135@@@@1@@Иван думает, что читает книгу студент@@@@1@6@@@ +136@@@@1@@Иван думает, что книгу читает студент@@@@1@6@@@ +137@@@@1@@Иван что студент читает книгу думает@@@@1@6@@@ +138@@@@1@@Иван студент читает книгу думает что@@@@0@6@@@ +139@@@@1@@Иван знает, что студент лежит.@@@@1@5@@@ +140@@@@1@@Иван знает, студент лежит.@@@@1@4@@@ +141@@@@1@@@@@@1@0@@@ +142@@@@1@@@@@@1@0@@@ +143@@@@1@@# Embedded question about subject of intransitive clause@@@@1@8@@@ +144@@@@1@@Иван спрашивает, кто идет@@@@1@4@@@ +145@@@@1@@Иван думает, кто идет?@@@@0@4@@@ +146@@@@1@@Спрашивает Иван, кто идет.@@@@1@4@@@ +147@@@@1@@Кто идет, Иван спрашивает.@@@@1@4@@@ +148@@@@1@@Иван спрашивает, кому идет.@@@@0@4@@@ +149@@@@1@@Иван спрашивает, кто идешь.@@@@0@4@@@ +150@@@@1@@Иван знает, кто идет@@@@1@4@@@ +151@@@@1@@@@@@1@0@@@ +152@@@@1@@@@@@1@0@@@ +153@@@@1@@# Embedded question about object of intransitive clause@@@@1@8@@@ +154@@@@1@@Иван спрашивает, кто книгу читает?@@@@1@5@@@ +155@@@@1@@Иван спрашивает, кто читает книгу?@@@@1@5@@@ +156@@@@1@@Иван спрашивает, что студент читает?@@@@1@5@@@ +157@@@@1@@Иван думает, что студент читает?@@@@0@5@@@ +158@@@@1@@Иван спрашивает, какую книгу студент читает@@@@1@6@@@ +159@@@@1@@Иван спрашивает, какую студент читает книгу@@@@1@6@@@ +160@@@@1@@Иван знает, что читает студент?@@@@1@5@@@ +161@@@@1@@@@@@1@0@@@ +162@@@@1@@# Embedded question about both subject and object of intransitive clause@@@@1@11@@@ +163@@@@1@@Иван спрашивает, кто что видит.@@@@1@5@@@ +164@@@@1@@Иван спрашивает, что кто видит.@@@@1@5@@@ +165@@@@1@@Иван спрашивает, кто видит что.@@@@1@5@@@ +166@@@@1@@Иван спрашивает, что видит кто.@@@@1@5@@@ +167@@@@1@@Иван думает, кто что видит.@@@@0@5@@@ +168@@@@1@@Иван знает, кто что видит@@@@1@5@@@ +169@@@@1@@@@@@1@0@@@ +170@@@@1@@@@@@1@0@@@ +171@@@@1@@# Embedded that-clause with question in it@@@@1@7@@@ +172@@@@1@@Иван думает, что кто идет?@@@@1@5@@@ +173@@@@1@@Иван спрашивает, что кто идет?@@@@0@5@@@ +174@@@@1@@Иван спрашивает, что что студент читает?@@@@0@6@@@ +175@@@@1@@Иван спрашивает, что студент читает книгу@@@@0@6@@@ +176@@@@1@@Иван спрашивает, что кто что читает?@@@@0@6@@@ +177@@@@1@@Иван думает, что кто что читает?@@@@1@6@@@ +178@@@@1@@Иван спрашивает, что где студент лежит?@@@@0@6@@@ +179@@@@1@@Иван спрашивает, что где студент купил книгу?@@@@0@7@@@ +180@@@@1@@Иван спрашивает, что как студент читает книгу?@@@@0@7@@@ +181@@@@1@@Иван думает, что Иван где купил эту книгу?@@@@1@8@@@ +182@@@@1@@?Иван знает, что кто идет?@@@@1@5@@@ +183@@@@1@@@@@@1@0@@@ +184@@@@1@@# Questioning adjunct of the embedded clause@@@@1@7@@@ +185@@@@1@@Иван спрашивает, где студент лежит@@@@1@5@@@ +186@@@@1@@Иван спрашивает, как студент читает книгу?@@@@1@6@@@ +187@@@@1@@Иван думает, как студент читает книгу@@@@0@6@@@ +188@@@@1@@Иван знает, где студент лежит?@@@@1@5@@@ +189@@@@1@@Иван знает, как студент читает книгу.@@@@1@6@@@ +190@@@@1@@@@@@1@0@@@ +191@@@@1@@# Negation@@@@1@2@@@ +192@@@@1@@Иван не спрашивает, куда идет студент.@@@@1@6@@@ +193@@@@1@@Куда идет студент, Иван не спрашивает.@@@@1@6@@@ +194@@@@1@@Иван не спрашивает, кто идет@@@@1@5@@@ +195@@@@1@@Не спрашивает Иван, кто идет@@@@1@5@@@ +196@@@@1@@Кто идет, Иван не спрашивает@@@@1@5@@@ +197@@@@1@@Иван не спрашивает, какую книгу студент читает@@@@1@7@@@ +198@@@@1@@Иван не знает, куда идет студент.@@@@1@6@@@ +199@@@@1@@@@@@1@0@@@ +200@@@@1@@# Fronted question about subject, object, or adjunct of embedded clause@@@@1@11@@@ +201@@@@1@@?Кто, Иван спрашивает, идет?@@@@1@4@@@ +202@@@@1@@?Кто, Иван спрашивает, книгу читает?@@@@1@5@@@ +203@@@@1@@?Что, Иван спрашивает, читает студент?@@@@1@5@@@ +204@@@@1@@?Где, Иван спрашивает, студент купил книгу?@@@@1@6@@@ +205@@@@1@@Где, Иван думает, что студент купил эту книгу?@@@@1@8@@@ +206@@@@1@@Где, Иван думает, студент купил эту книгу?@@@@1@7@@@ +207@@@@1@@?Где, Иван спрашивает, студент лежит?@@@@1@5@@@ +208@@@@1@@Где, я спрашиваю, студент лежит?@@@@1@5@@@ +209@@@@1@@Где, Иван думает, студент лежит?@@@@1@5@@@ +210@@@@1@@Кто, Иван думает, идет?@@@@1@4@@@ +211@@@@1@@Что, Иван думает, студент читает?@@@@1@5@@@ +212@@@@1@@Кто в какой город, Иван спрашивает, приехал?@@@@1@7@@@ +213@@@@1@@Кто и в какой город,ты спрашиваешь, приехал?@@@@1@7@@@ +214@@@@1@@?Где, Иван знает, студент лежит?@@@@1@5@@@ +215@@@@1@@?Кто, Иван знает, идет?@@@@1@4@@@ +216@@@@1@@?Что, Иван знает, студент читает?@@@@1@5@@@ +217@@@@1@@@@@@1@0@@@ +218@@@@1@@@@@@1@0@@@ +219@@@@1@@# Fronted question from that-clause@@@@1@5@@@ +220@@@@1@@Кто, Иван спрашивает, что идет?@@@@0@5@@@ +221@@@@1@@Где Иван спрашивает что студент купил книгу?@@@@0@7@@@ +222@@@@1@@Где Иван спрашивает что студент лежит?@@@@0@6@@@ +223@@@@1@@?Где, Иван точно знает, что студент лежит?@@@@1@7@@@ +224@@@@1@@?Где, Иван думает, что студент лежит?@@@@1@6@@@ +225@@@@1@@Кто, Иван спрашивает, что читает книгу?@@@@0@6@@@ +226@@@@1@@@@@@1@0@@@ +227@@@@1@@@@@@1@0@@@ +228@@@@1@@# Multiple fronted questions about subject, object, or adjunct of embedded clause@@@@1@12@@@ +229@@@@1@@?Кто, Иван спрашивает, видит что?@@@@1@5@@@ +230@@@@1@@?Кто, Иван спрашивает, что видит?@@@@1@5@@@ +231@@@@1@@?Кто что, Иван спрашивает, видит?@@@@1@5@@@ +232@@@@1@@?Кто куда, Иван спрашивает, идет?@@@@1@5@@@ +233@@@@1@@?Где, Иван спрашивает, студент купил книгу?@@@@1@6@@@ +234@@@@1@@?Где, Иван спрашивает, студент купил какую книгу?@@@@1@7@@@ +235@@@@1@@?Где, Иван спрашивает, студент что купил?@@@@1@6@@@ +236@@@@1@@?Где кто что, Иван спрашивает, купил?@@@@1@6@@@ +237@@@@1@@?Где кто, Иван спрашивает, что купил?@@@@1@6@@@ +238@@@@1@@?Где, Иван спрашивает, кто что купил?@@@@1@6@@@ +239@@@@1@@?Кто, Иван спрашивает, что видел?@@@@1@5@@@ +240@@@@1@@?Кто Иван спрашивает какую книгу читает?@@@@1@6@@@ +241@@@@1@@?Кто Иван спрашивает какую читает книгу?@@@@1@6@@@ +242@@@@1@@Иван спрашивает, какую книгу студент читает?@@@@1@6@@@ +243@@@@1@@Какую книгу, Иван спрашивает, студент читает?@@@@1@6@@@ +244@@@@1@@Какую книгу, Иван спрашивает, читает студент? @@@@1@6@@@ +245@@@@1@@Какую, Иван спрашивает, студент читает книгу?@@@@1@6@@@ +246@@@@1@@Кто какую книгу, Иван думает, читает?@@@@1@6@@@ +247@@@@1@@?Где кто что, Иван знает, что читает?@@@@1@7@@@ +248@@@@1@@Где кто что, Иван знает, читает?@@@@0@6@@@ +249@@@@1@@?Какую кто, Иван думает, купил книгу?@@@@1@6@@@ +250@@@@1@@?Кто, Иван думает, что видел?@@@@1@5@@@ +251@@@@1@@?Кто, Иван думает, видел что?@@@@1@5@@@ +252@@@@1@@?Кто, Иван думает, купил какую книгу?@@@@1@6@@@ +253@@@@1@@?Кто, Иван точно знает, что видел?@@@@1@6@@@ +254@@@@1@@Кто, Иван спрашивает, что видел?@@@@1@5@@@ +255@@@@1@@@@@@1@0@@@ +256@@@@1@@# Multiple questions and that-clause@@@@1@5@@@ +257@@@@1@@Кто что, Иван спрашивает, что видел?@@@@0@6@@@ +258@@@@1@@Кто какую книгу, Иван думает, что читает?@@@@1@7@@@ +259@@@@1@@?Кто какую книгу, Иван точно знает, что читает?@@@@1@8@@@ +260@@@@1@@?Кто, Иван точно знает, что читает какую книгу?@@@@1@8@@@ +261@@@@1@@Где что Иван спрашивает, что мы видели?@@@@0@7@@@ +262@@@@1@@Как Иван спрашивает, что студент читает эту книгу?@@@@0@8@@@ +263@@@@1@@?Кто, Иван думает, что что видел?@@@@1@6@@@ +264@@@@1@@?Кто, Иван точно знает, что что видел?@@@@1@7@@@ +265@@@@1@@Кто, Иван спрашивает, что что видел?@@@@0@6@@@ +266@@@@1@@@@@@1@0@@@ +267@@@@1@@# Question both to the subject of matrix and subj/obj/adj of embedded clause@@@@1@13@@@ +268@@@@1@@Кто спрашивает, где мы что видели?@@@@1@6@@@ +269@@@@1@@Кто спрашивает, где мы видели какие книги?@@@@1@7@@@ +270@@@@1@@Кто спрашивает, где мы видели эти книги?@@@@1@7@@@ +271@@@@1@@Кто спрашивает, что где мы видели эти книги?@@@@0@8@@@ +272@@@@1@@Кто спрашивает какие книги мы где видели?@@@@1@7@@@ +273@@@@1@@Кто спрашивает эти книги мы где видели?@@@@1@7@@@ +274@@@@1@@Кто спрашивает книги мы где видели?@@@@1@6@@@ +275@@@@1@@Кто думает, где мы что видели?@@@@0@6@@@ +276@@@@1@@Кто думает, где мы видели какие книги?@@@@0@7@@@ +277@@@@1@@Кто думает, где мы видели эти книги?@@@@0@7@@@ +278@@@@1@@Кто думает, что где мы видели эти книги?@@@@0@8@@@ +279@@@@1@@Кто думает какие книги мы где видели?@@@@0@7@@@ +280@@@@1@@Кто думает эти книги мы где видели?@@@@0@7@@@ +281@@@@1@@Кто думает книги мы где видели?@@@@0@6@@@ +282@@@@1@@Кто знает, где мы что видели?@@@@1@6@@@ +283@@@@1@@Кто знает, что где мы что видели?@@@@0@7@@@ +284@@@@1@@@@@@1@0@@@ +285@@@@1@@@@@@1@0@@@ +286@@@@1@@# Second position question clitic in embedded questions@@@@1@8@@@ +287@@@@1@@Ты спрашиваешь, видит ли Иван Машу?@@@@1@6@@@ +288@@@@1@@Ты спрашиваешь, что видит ли Иван?@@@@0@6@@@ +289@@@@1@@Ты спрашиваешь, ли видит Иван Машу?@@@@0@6@@@ +290@@@@1@@Ты спрашиваешь, что видит ли Иван?@@@@0@6@@@ +291@@@@1@@Ты спрашиваешь, ли видит Иван Машу?@@@@0@6@@@ +292@@@@1@@Ты думаешь, видит ли Иван Машу?@@@@0@6@@@ +293@@@@1@@Кто ли идет@@@@0@3@@@ +294@@@@1@@Что ли Иван видит@@@@0@4@@@ +295@@@@1@@Ты не спрашиваешь, читает ли Иван эту книгу?@@@@1@8@@@ +296@@@@1@@Ты спрашиваешь, читает ли Иван эту книгу?@@@@1@7@@@ +297@@@@1@@Какую книгу, ты спрашиваешь, читает ли Иван?@@@@1@7@@@ +298@@@@1@@Ты знаешь, видит ли Иван Машу?@@@@1@6@@@ +299@@@@1@@Знаешь ли ты, видит ли Иван Машу?@@@@1@7@@@ +300@@@@1@@Думаешь ли ты, видит ли Иван Машу?@@@@0@7@@@ +301@@@@1@@Спрашиваешь ли ты, видит ли Иван Машу?@@@@1@7@@@ +302@@@@1@@Ты не знаешь, видит ли Иван Машу@@@@1@7@@@ +303@@@@1@@Ты знаешь, что видит ли Иван Машу@@@@0@7@@@ +304@@@@1@@@@@@1@0@@@ +305@@@@1@@@@@@1@0@@@ +306@@@@1@@# Infinitival embedded questions@@@@1@4@@@ +307@@@@1@@Иван спрашивает, как читать эту книгу@@@@1@6@@@ +308@@@@1@@Иван спрашивает, как читать какую книгу@@@@1@6@@@ +309@@@@1@@Иван спрашивает, как что читать@@@@1@5@@@ +310@@@@1@@Иван спрашивает, как читать что@@@@1@5@@@ +311@@@@1@@Иван спрашивает, как читать книгу@@@@1@5@@@ +312@@@@1@@Иван думает, как читать эту книгу@@@@0@6@@@ +313@@@@1@@Иван знает, как читать эту книгу@@@@1@6@@@ +314@@@@1@@@@@@1@0@@@ +315@@@@1@@# Coordination@@@@1@2@@@ +316@@@@1@@Где и когда Иван купил книгу?@@@@1@6@@@ +317@@@@1@@Кого и что Иван видит?@@@@1@5@@@ +318@@@@1@@Кого что Иван видит?@@@@0@4@@@ +319@@@@1@@Кого и чему Иван видит?@@@@0@5@@@ +320@@@@1@@Кому и чему Иван видит?@@@@0@5@@@ +321@@@@1@@Кого Иван видит и что Иван слышит?@@@@1@7@@@ +322@@@@1@@Кого Иван видит и чему Иван слышит?@@@@0@7@@@ +323@@@@1@@Кому Иван видит и чему Иван слышит?@@@@0@7@@@ +324@@@@1@@Кого видит Иван и что слышала Маша?@@@@1@7@@@ +325@@@@1@@Кого видит Иван и что слышит?@@@@1@6@@@ +326@@@@1@@Кого видел Иван и что слышала?@@@@0@6@@@ +327@@@@1@@Иван лежит и читает книгу.@@@@1@5@@@ diff --git a/tests/regression/skeletons/wh-dev-rus/item-phenomenon b/tests/regression/skeletons/wh-dev-rus/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/item-set b/tests/regression/skeletons/wh-dev-rus/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/output b/tests/regression/skeletons/wh-dev-rus/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/parameter b/tests/regression/skeletons/wh-dev-rus/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/parse b/tests/regression/skeletons/wh-dev-rus/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/phenomenon b/tests/regression/skeletons/wh-dev-rus/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/preference b/tests/regression/skeletons/wh-dev-rus/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/relations b/tests/regression/skeletons/wh-dev-rus/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh-dev-rus/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh-dev-rus/result b/tests/regression/skeletons/wh-dev-rus/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/rule b/tests/regression/skeletons/wh-dev-rus/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/run b/tests/regression/skeletons/wh-dev-rus/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/score b/tests/regression/skeletons/wh-dev-rus/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/set b/tests/regression/skeletons/wh-dev-rus/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/tree b/tests/regression/skeletons/wh-dev-rus/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-dev-rus/update b/tests/regression/skeletons/wh-dev-rus/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/analysis b/tests/regression/skeletons/wh-eng-dev/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/decision b/tests/regression/skeletons/wh-eng-dev/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/edge b/tests/regression/skeletons/wh-eng-dev/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/fold b/tests/regression/skeletons/wh-eng-dev/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/item b/tests/regression/skeletons/wh-eng-dev/item new file mode 100644 index 000000000..7de8facb0 --- /dev/null +++ b/tests/regression/skeletons/wh-eng-dev/item @@ -0,0 +1,68 @@ +1@@@@1@@the cats chase the dogs@@@@1@5@@@ +2@@@@1@@the dogs sleep@@@@1@3@@@ +3@@@@1@@@@@@1@0@@@ +4@@@@1@@do the cats chase the dogs?@@@@1@6@@@ +5@@@@1@@do the dogs sleep?@@@@1@4@@@ +6@@@@1@@Do I think that the cats chase the dogs?@@@@1@9@@@ +7@@@@1@@@@@@1@0@@@ +8@@@@1@@who sleeps?@@@@1@2@@@ +9@@@@1@@sleep who?@@@@0@2@@@ +10@@@@1@@@@@@1@0@@@ +11@@@@1@@who chases the dogs?@@@@1@4@@@ +12@@@@1@@who do chase the dog?@@@@0@5@@@ +13@@@@1@@@@@@1@0@@@ +14@@@@1@@what do the dogs chase?@@@@1@5@@@ +15@@@@1@@what the dogs chase?@@@@0@4@@@ +16@@@@1@@@@@@1@0@@@ +17@@@@1@@where do the dogs sleep?@@@@1@5@@@ +18@@@@1@@where the dogs sleep?@@@@0@4@@@ +19@@@@1@@@@@@1@0@@@ +20@@@@1@@where do the dogs chase the cats?@@@@1@7@@@ +21@@@@1@@the cats chase the dogs where?@@@@0@6@@@ +22@@@@1@@do the cats chase the dogs where?@@@@0@7@@@ +23@@@@1@@@@@@1@0@@@ +24@@@@1@@Who chases what?@@@@1@3@@@ +25@@@@1@@Who what chases?@@@@0@3@@@ +26@@@@1@@Who do chase what?@@@@0@4@@@ +27@@@@1@@Who what do chase?@@@@0@4@@@ +28@@@@1@@@@@@1@0@@@ +29@@@@1@@Who chases what where?@@@@1@4@@@ +30@@@@1@@Who what where chases?@@@@0@4@@@ +31@@@@1@@@@@@1@0@@@ +32@@@@1@@Which cat sleeps?@@@@1@3@@@ +33@@@@1@@Which sleeps cat?@@@@0@3@@@ +34@@@@1@@Which cat chases the dogs?@@@@1@5@@@ +35@@@@1@@@@@@1@0@@@ +36@@@@1@@Which dogs do the cats chase?@@@@1@6@@@ +37@@@@1@@Which do the cats chase dogs?@@@@0@6@@@ +38@@@@1@@Which dogs the cats chase@@@@0@5@@@ +39@@@@1@@@@@@1@0@@@ +40@@@@1@@In which house do the cats sleep?@@@@1@7@@@ +41@@@@1@@Which house do the cats sleep in?@@@@1@7@@@ +42@@@@1@@In which do the cats sleep house@@@@0@7@@@ +43@@@@1@@In which house the cats sleep?@@@@0@6@@@ +44@@@@1@@@@@@1@0@@@ +45@@@@1@@I think that the cats chase the dogs@@@@1@8@@@ +46@@@@1@@@@@@1@0@@@ +47@@@@1@@I wonder who sleeps@@@@1@4@@@ +48@@@@1@@I wonder who do sleep@@@@0@5@@@ +49@@@@1@@@@@@1@0@@@ +50@@@@1@@I wonder what the cats chase@@@@1@6@@@ +51@@@@1@@I wonder what do the cats chase@@@@0@7@@@ +52@@@@1@@@@@@1@0@@@ +53@@@@1@@Who do I think chases the dogs?@@@@1@7@@@ +54@@@@1@@Who I think the cats chase?@@@@0@6@@@ +55@@@@1@@Who I think sleeps?@@@@0@4@@@ +56@@@@1@@Who do I wonder chases the dogs?@@@@0@7@@@ +57@@@@1@@@@@@1@0@@@ +58@@@@1@@What do I think the cats chase?@@@@1@7@@@ +59@@@@1@@What do I wonder whether the cats chase?@@@@1@8@@@ +60@@@@1@@What do I wonder that the cats chase?@@@@0@8@@@ +61@@@@1@@@@@@1@0@@@ +62@@@@1@@@@@@1@0@@@ +63@@@@1@@Where do I think the cats sleep?@@@@1@7@@@ +64@@@@1@@In which house do I think the cats sleep?@@@@1@9@@@ +65@@@@1@@Where do I wonder whether the cats sleep?@@@@1@8@@@ +66@@@@1@@Which house do I think the cats sleep in?@@@@1@9@@@ +67@@@@1@@Which do I think the cats sleep in house?@@@@0@9@@@ +68@@@@1@@Which do I think the cats sleep house in?@@@@0@9@@@ diff --git a/tests/regression/skeletons/wh-eng-dev/item-phenomenon b/tests/regression/skeletons/wh-eng-dev/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/item-set b/tests/regression/skeletons/wh-eng-dev/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/output b/tests/regression/skeletons/wh-eng-dev/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/parameter b/tests/regression/skeletons/wh-eng-dev/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/parse b/tests/regression/skeletons/wh-eng-dev/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/phenomenon b/tests/regression/skeletons/wh-eng-dev/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/preference b/tests/regression/skeletons/wh-eng-dev/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/relations b/tests/regression/skeletons/wh-eng-dev/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh-eng-dev/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh-eng-dev/result b/tests/regression/skeletons/wh-eng-dev/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/rule b/tests/regression/skeletons/wh-eng-dev/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/run b/tests/regression/skeletons/wh-eng-dev/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/score b/tests/regression/skeletons/wh-eng-dev/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/set b/tests/regression/skeletons/wh-eng-dev/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/tree b/tests/regression/skeletons/wh-eng-dev/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-eng-dev/update b/tests/regression/skeletons/wh-eng-dev/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/analysis b/tests/regression/skeletons/wh-svo-sg-oblig-min/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/decision b/tests/regression/skeletons/wh-svo-sg-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/edge b/tests/regression/skeletons/wh-svo-sg-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/fold b/tests/regression/skeletons/wh-svo-sg-oblig-min/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/item b/tests/regression/skeletons/wh-svo-sg-oblig-min/item new file mode 100644 index 000000000..cc8366c70 --- /dev/null +++ b/tests/regression/skeletons/wh-svo-sg-oblig-min/item @@ -0,0 +1,17 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@0@3@@@ +9@@@@1@@cat what sees?@@@@0@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@0@3@@@ +13@@@@1@@where sleeps cat?@@@@0@3@@@ +14@@@@1@@cat where sleeps?@@@@0@3@@@ +15@@@@1@@cat sees cat in house.@@@@1@5@@@ +16@@@@1@@what cat sees in house?@@@@1@5@@@ +17@@@@1@@cat sees what in house?@@@@0@5@@@ diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/item-phenomenon b/tests/regression/skeletons/wh-svo-sg-oblig-min/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/item-set b/tests/regression/skeletons/wh-svo-sg-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/output b/tests/regression/skeletons/wh-svo-sg-oblig-min/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/parameter b/tests/regression/skeletons/wh-svo-sg-oblig-min/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/parse b/tests/regression/skeletons/wh-svo-sg-oblig-min/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/phenomenon b/tests/regression/skeletons/wh-svo-sg-oblig-min/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/preference b/tests/regression/skeletons/wh-svo-sg-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/relations b/tests/regression/skeletons/wh-svo-sg-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh-svo-sg-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/result b/tests/regression/skeletons/wh-svo-sg-oblig-min/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/rule b/tests/regression/skeletons/wh-svo-sg-oblig-min/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/run b/tests/regression/skeletons/wh-svo-sg-oblig-min/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/score b/tests/regression/skeletons/wh-svo-sg-oblig-min/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/set b/tests/regression/skeletons/wh-svo-sg-oblig-min/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/tree b/tests/regression/skeletons/wh-svo-sg-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-svo-sg-oblig-min/update b/tests/regression/skeletons/wh-svo-sg-oblig-min/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/analysis b/tests/regression/skeletons/wh-yux-dev/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/decision b/tests/regression/skeletons/wh-yux-dev/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/edge b/tests/regression/skeletons/wh-yux-dev/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/fold b/tests/regression/skeletons/wh-yux-dev/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/item b/tests/regression/skeletons/wh-yux-dev/item new file mode 100644 index 000000000..033252bea --- /dev/null +++ b/tests/regression/skeletons/wh-yux-dev/item @@ -0,0 +1,24 @@ +1@@@@1@@kin mit-gele qamie?@@@@1@3@@@ +2@@@@1@@kin mit-gele qamie-m?@@@@1@3@@@ +3@@@@1@@kin mit-ek qamie-tem?@@@@0@3@@@ +4@@@@1@@kin mit-ek qamie?@@@@0@3@@@ +5@@@@1@@kin-ek mit-gele qamie?@@@@0@3@@@ +6@@@@1@@kin met-gele edies-m?@@@@1@3@@@ +7@@@@1@@kin met-gele edies?@@@@1@3@@@ +8@@@@1@@kin-ek met-gele edies?@@@@0@3@@@ +9@@@@1@@kin-ek met-gele edies-l@@@@0@3@@@ +10@@@@1@@kin met-ek edies-tem?@@@@0@3@@@ +11@@@@1@@kin-ek jaqte-l?@@@@1@2@@@ +12@@@@1@@kin-tek jaqte?@@@@0@2@@@ +13@@@@1@@kin jaqte-j?@@@@0@2@@@ +14@@@@1@@kin jaqte?@@@@0@2@@@ +15@@@@1@@lem-tek kesī-me@@@@1@2@@@ +16@@@@1@@lem-tek kesī-k@@@@0@2@@@ +17@@@@1@@lem kesī-k@@@@0@2@@@ +18@@@@1@@lem-gele kesī-mek?@@@@0@2@@@ +19@@@@1@@emde noŋōn kude-ōk?@@@@1@3@@@ +20@@@@1@@noŋōn emde kude-ōk@@@@1@3@@@ +21@@@@1@@noŋōn emde kude-j?@@@@0@3@@@ +22@@@@1@@noŋōn emde-tek kude-l?@@@@0@3@@@ +23@@@@1@@ejrie-nun-k?@@@@1@1@@@ +24@@@@1@@ejrie-nun-jek?@@@@1@1@@@ diff --git a/tests/regression/skeletons/wh-yux-dev/item-phenomenon b/tests/regression/skeletons/wh-yux-dev/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/item-set b/tests/regression/skeletons/wh-yux-dev/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/output b/tests/regression/skeletons/wh-yux-dev/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/parameter b/tests/regression/skeletons/wh-yux-dev/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/parse b/tests/regression/skeletons/wh-yux-dev/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/phenomenon b/tests/regression/skeletons/wh-yux-dev/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/preference b/tests/regression/skeletons/wh-yux-dev/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/relations b/tests/regression/skeletons/wh-yux-dev/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh-yux-dev/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh-yux-dev/result b/tests/regression/skeletons/wh-yux-dev/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/rule b/tests/regression/skeletons/wh-yux-dev/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/run b/tests/regression/skeletons/wh-yux-dev/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/score b/tests/regression/skeletons/wh-yux-dev/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/set b/tests/regression/skeletons/wh-yux-dev/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/tree b/tests/regression/skeletons/wh-yux-dev/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh-yux-dev/update b/tests/regression/skeletons/wh-yux-dev/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/analysis b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/decision b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/edge b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/fold b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/item b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/item new file mode 100644 index 000000000..082d95fd9 --- /dev/null +++ b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/item @@ -0,0 +1,10 @@ +1@@@@1@@who sleeps@@@@1@2@@@ +2@@@@1@@sleeps who@@@@0@2@@@ +3@@@@1@@who sees what@@@@0@3@@@ +4@@@@1@@who what sees@@@@1@3@@@ +5@@@@1@@sees who what@@@@0@3@@@ +6@@@@1@@what who sees@@@@1@3@@@ +7@@@@1@@where who sleeps@@@@1@3@@@ +8@@@@1@@who sleeps where@@@@0@3@@@ +9@@@@1@@who where sleeps@@@@0@3@@@ +10@@@@1@@sleeps who where@@@@0@3@@@ diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/item-phenomenon b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/item-set b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/output b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/parameter b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/parse b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/phenomenon b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/preference b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/relations b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/result b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/rule b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/run b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/score b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/set b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/tree b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/update b/tests/regression/skeletons/wh10-svo-multi-all-oblig-min/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/analysis b/tests/regression/skeletons/wh11-svo-multi-one-oblig/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/decision b/tests/regression/skeletons/wh11-svo-multi-one-oblig/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/edge b/tests/regression/skeletons/wh11-svo-multi-one-oblig/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/fold b/tests/regression/skeletons/wh11-svo-multi-one-oblig/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/item b/tests/regression/skeletons/wh11-svo-multi-one-oblig/item new file mode 100644 index 000000000..608c59933 --- /dev/null +++ b/tests/regression/skeletons/wh11-svo-multi-one-oblig/item @@ -0,0 +1,10 @@ +1@@@@1@@who sleeps@@@@1@2@@@ +2@@@@1@@sleeps who@@@@0@2@@@ +3@@@@1@@who sees what@@@@1@3@@@ +4@@@@1@@who what sees@@@@1@3@@@ +5@@@@1@@sees who what@@@@0@3@@@ +6@@@@1@@what who sees@@@@1@3@@@ +7@@@@1@@where who sleeps@@@@1@3@@@ +8@@@@1@@who sleeps where@@@@1@3@@@ +9@@@@1@@who where sleeps@@@@1@3@@@ +10@@@@1@@sleeps who where@@@@0@3@@@ diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/item-phenomenon b/tests/regression/skeletons/wh11-svo-multi-one-oblig/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/item-set b/tests/regression/skeletons/wh11-svo-multi-one-oblig/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/output b/tests/regression/skeletons/wh11-svo-multi-one-oblig/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/parameter b/tests/regression/skeletons/wh11-svo-multi-one-oblig/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/parse b/tests/regression/skeletons/wh11-svo-multi-one-oblig/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/phenomenon b/tests/regression/skeletons/wh11-svo-multi-one-oblig/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/preference b/tests/regression/skeletons/wh11-svo-multi-one-oblig/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/relations b/tests/regression/skeletons/wh11-svo-multi-one-oblig/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh11-svo-multi-one-oblig/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/result b/tests/regression/skeletons/wh11-svo-multi-one-oblig/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/rule b/tests/regression/skeletons/wh11-svo-multi-one-oblig/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/run b/tests/regression/skeletons/wh11-svo-multi-one-oblig/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/score b/tests/regression/skeletons/wh11-svo-multi-one-oblig/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/set b/tests/regression/skeletons/wh11-svo-multi-one-oblig/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/tree b/tests/regression/skeletons/wh11-svo-multi-one-oblig/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh11-svo-multi-one-oblig/update b/tests/regression/skeletons/wh11-svo-multi-one-oblig/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/analysis b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/decision b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/edge b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/fold b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/item b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/item new file mode 100644 index 000000000..10c711343 --- /dev/null +++ b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/item @@ -0,0 +1,12 @@ +1@@@@1@@which cat sleeps?@@@@1@3@@@ +2@@@@1@@cat which sleeps?@@@@0@3@@@ +3@@@@1@@sleeps which cat?@@@@0@3@@@ +4@@@@1@@sleeps cat which?@@@@0@3@@@ +5@@@@1@@which house sees the cat?@@@@1@5@@@ +6@@@@1@@the house which cat sees?@@@@0@5@@@ +7@@@@1@@sees the cat which house?@@@@0@5@@@ +8@@@@1@@which sees the cat house?@@@@0@5@@@ +9@@@@1@@in which house sleeps the cat?@@@@1@6@@@ +10@@@@1@@which house sleeps the cat in?@@@@1@6@@@ +11@@@@1@@which in house sleeps the cat?@@@@0@6@@@ +12@@@@1@@which house in sleeps the cat?@@@@0@6@@@ diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/item-phenomenon b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/item-set b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/output b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/parameter b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/parse b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/phenomenon b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/preference b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/relations b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/result b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/rule b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/run b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/score b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/set b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/tree b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/update b/tests/regression/skeletons/wh12-vos-sg-oblig-pied-adp-opt/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/analysis b/tests/regression/skeletons/wh13-oblig-particle-osv/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/decision b/tests/regression/skeletons/wh13-oblig-particle-osv/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/edge b/tests/regression/skeletons/wh13-oblig-particle-osv/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/fold b/tests/regression/skeletons/wh13-oblig-particle-osv/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/item b/tests/regression/skeletons/wh13-oblig-particle-osv/item new file mode 100644 index 000000000..f6015e54f --- /dev/null +++ b/tests/regression/skeletons/wh13-oblig-particle-osv/item @@ -0,0 +1,20 @@ +1@@@@1@@Q who iv@@@@1@3@@@ +2@@@@1@@Q what who tv@@@@1@4@@@ +3@@@@1@@Q iv who@@@@0@3@@@ +4@@@@1@@Q what tv who@@@@0@4@@@ +5@@@@1@@Q where n1 iv@@@@1@4@@@ +6@@@@1@@Q n1 iv where@@@@1@4@@@ +7@@@@1@@Q n1 where iv@@@@1@4@@@ +8@@@@1@@who iv@@@@0@2@@@ +9@@@@1@@who iv Q@@@@0@3@@@ +10@@@@1@@what who tv@@@@0@3@@@ +11@@@@1@@what who tv Q@@@@0@4@@@ +12@@@@1@@who Q iv@@@@0@3@@@ +13@@@@1@@what who Q tv@@@@0@4@@@ +14@@@@1@@where n1 iv@@@@0@3@@@ +15@@@@1@@ni iv where@@@@0@3@@@ +16@@@@1@@n1 where iv@@@@0@3@@@ +17@@@@1@@where n1 iv Q@@@@0@4@@@ +18@@@@1@@n1 iv where Q@@@@0@4@@@ +19@@@@1@@n1 Q where iv@@@@0@4@@@ +20@@@@1@@n1 where Q iv@@@@0@4@@@ diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/item-phenomenon b/tests/regression/skeletons/wh13-oblig-particle-osv/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/item-set b/tests/regression/skeletons/wh13-oblig-particle-osv/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/output b/tests/regression/skeletons/wh13-oblig-particle-osv/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/parameter b/tests/regression/skeletons/wh13-oblig-particle-osv/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/parse b/tests/regression/skeletons/wh13-oblig-particle-osv/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/phenomenon b/tests/regression/skeletons/wh13-oblig-particle-osv/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/preference b/tests/regression/skeletons/wh13-oblig-particle-osv/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/relations b/tests/regression/skeletons/wh13-oblig-particle-osv/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh13-oblig-particle-osv/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/result b/tests/regression/skeletons/wh13-oblig-particle-osv/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/rule b/tests/regression/skeletons/wh13-oblig-particle-osv/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/run b/tests/regression/skeletons/wh13-oblig-particle-osv/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/score b/tests/regression/skeletons/wh13-oblig-particle-osv/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/set b/tests/regression/skeletons/wh13-oblig-particle-osv/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/tree b/tests/regression/skeletons/wh13-oblig-particle-osv/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh13-oblig-particle-osv/update b/tests/regression/skeletons/wh13-oblig-particle-osv/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/analysis b/tests/regression/skeletons/wh14-oblig-imposs-part/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/decision b/tests/regression/skeletons/wh14-oblig-imposs-part/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/edge b/tests/regression/skeletons/wh14-oblig-imposs-part/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/fold b/tests/regression/skeletons/wh14-oblig-imposs-part/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/item b/tests/regression/skeletons/wh14-oblig-imposs-part/item new file mode 100644 index 000000000..5987dad3a --- /dev/null +++ b/tests/regression/skeletons/wh14-oblig-imposs-part/item @@ -0,0 +1,6 @@ +1@@@@1@@Q-oblig who iv@@@@1@3@@@ +2@@@@1@@Q-oblig what who tv@@@@1@4@@@ +3@@@@1@@Q-imp who iv@@@@0@3@@@ +4@@@@1@@Q-imp what who tv@@@@0@4@@@ +5@@@@1@@Q-imp n1 iv@@@@1@3@@@ +6@@@@1@@Q-oblig n1 iv@@@@1@3@@@ diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/item-phenomenon b/tests/regression/skeletons/wh14-oblig-imposs-part/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/item-set b/tests/regression/skeletons/wh14-oblig-imposs-part/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/output b/tests/regression/skeletons/wh14-oblig-imposs-part/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/parameter b/tests/regression/skeletons/wh14-oblig-imposs-part/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/parse b/tests/regression/skeletons/wh14-oblig-imposs-part/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/phenomenon b/tests/regression/skeletons/wh14-oblig-imposs-part/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/preference b/tests/regression/skeletons/wh14-oblig-imposs-part/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/relations b/tests/regression/skeletons/wh14-oblig-imposs-part/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh14-oblig-imposs-part/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/result b/tests/regression/skeletons/wh14-oblig-imposs-part/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/rule b/tests/regression/skeletons/wh14-oblig-imposs-part/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/run b/tests/regression/skeletons/wh14-oblig-imposs-part/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/score b/tests/regression/skeletons/wh14-oblig-imposs-part/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/set b/tests/regression/skeletons/wh14-oblig-imposs-part/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/tree b/tests/regression/skeletons/wh14-oblig-imposs-part/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh14-oblig-imposs-part/update b/tests/regression/skeletons/wh14-oblig-imposs-part/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/analysis b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/decision b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/edge b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/fold b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/item b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/item new file mode 100644 index 000000000..eb855dde3 --- /dev/null +++ b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/item @@ -0,0 +1,20 @@ +1@@@@1@@n1 iv@@@@1@2@@@ +2@@@@1@@iv n1@@@@0@2@@@ +3@@@@1@@n1 Q iv@@@@1@3@@@ +4@@@@1@@n1 iv Q@@@@0@3@@@ +5@@@@1@@Q n1 iv@@@@0@3@@@ +6@@@@1@@n1 n2 tv@@@@1@3@@@ +7@@@@1@@n1 tv n2@@@@0@3@@@ +8@@@@1@@tv n1 n2@@@@0@3@@@ +9@@@@1@@n1 Q n2 tv@@@@1@4@@@ +10@@@@1@@Q n1 n2 tv@@@@0@4@@@ +11@@@@1@@n1 n2 Q tv@@@@0@4@@@ +12@@@@1@@n1 n2 tv Q@@@@0@4@@@ +13@@@@1@@who Q iv@@@@1@3@@@ +14@@@@1@@who iv@@@@0@2@@@ +15@@@@1@@who Q what tv@@@@1@4@@@ +16@@@@1@@who what Q tv@@@@0@4@@@ +17@@@@1@@Q who iv@@@@0@3@@@ +18@@@@1@@Q who what tv@@@@0@4@@@ +19@@@@1@@who what tv Q@@@@0@4@@@ +20@@@@1@@where Q n1 iv@@@@1@4@@@ diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/item-phenomenon b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/item-set b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/output b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/parameter b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/parse b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/phenomenon b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/preference b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/relations b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/result b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/rule b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/run b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/score b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/set b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/tree b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/update b/tests/regression/skeletons/wh15-insitu-oblig-part-vfinal/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/analysis b/tests/regression/skeletons/wh16-morph-sep-opt/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/decision b/tests/regression/skeletons/wh16-morph-sep-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/edge b/tests/regression/skeletons/wh16-morph-sep-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/fold b/tests/regression/skeletons/wh16-morph-sep-opt/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/item b/tests/regression/skeletons/wh16-morph-sep-opt/item new file mode 100644 index 000000000..1fb6640c3 --- /dev/null +++ b/tests/regression/skeletons/wh16-morph-sep-opt/item @@ -0,0 +1,9 @@ +1@@@@1@@n iv@@@@1@2@@@ +2@@@@1@@n tv n@@@@1@3@@@ +3@@@@1@@n iv-PQ@@@@1@2@@@ +4@@@@1@@n tv-PQ n@@@@1@3@@@ +5@@@@1@@n iv-WHQ@@@@0@2@@@ +6@@@@1@@n tv-WHQ n@@@@0@3@@@ +7@@@@1@@who iv@@@@1@2@@@ +8@@@@1@@who iv-WHQ@@@@1@2@@@ +9@@@@1@@who iv-PQ@@@@0@2@@@ diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/item-phenomenon b/tests/regression/skeletons/wh16-morph-sep-opt/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/item-set b/tests/regression/skeletons/wh16-morph-sep-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/output b/tests/regression/skeletons/wh16-morph-sep-opt/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/parameter b/tests/regression/skeletons/wh16-morph-sep-opt/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/parse b/tests/regression/skeletons/wh16-morph-sep-opt/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/phenomenon b/tests/regression/skeletons/wh16-morph-sep-opt/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/preference b/tests/regression/skeletons/wh16-morph-sep-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/relations b/tests/regression/skeletons/wh16-morph-sep-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh16-morph-sep-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/result b/tests/regression/skeletons/wh16-morph-sep-opt/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/rule b/tests/regression/skeletons/wh16-morph-sep-opt/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/run b/tests/regression/skeletons/wh16-morph-sep-opt/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/score b/tests/regression/skeletons/wh16-morph-sep-opt/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/set b/tests/regression/skeletons/wh16-morph-sep-opt/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/tree b/tests/regression/skeletons/wh16-morph-sep-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh16-morph-sep-opt/update b/tests/regression/skeletons/wh16-morph-sep-opt/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/analysis b/tests/regression/skeletons/wh17-morph-sep-oblig/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/decision b/tests/regression/skeletons/wh17-morph-sep-oblig/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/edge b/tests/regression/skeletons/wh17-morph-sep-oblig/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/fold b/tests/regression/skeletons/wh17-morph-sep-oblig/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/item b/tests/regression/skeletons/wh17-morph-sep-oblig/item new file mode 100644 index 000000000..933eeb0d4 --- /dev/null +++ b/tests/regression/skeletons/wh17-morph-sep-oblig/item @@ -0,0 +1,9 @@ +1@@@@1@@n iv@@@@1@2@@@ +2@@@@1@@n tv n@@@@1@3@@@ +3@@@@1@@n iv-PQ@@@@1@2@@@ +4@@@@1@@n tv-PQ n@@@@1@3@@@ +5@@@@1@@n iv-WHQ@@@@0@2@@@ +6@@@@1@@n tv-WHQ n@@@@0@3@@@ +7@@@@1@@who iv@@@@0@2@@@ +8@@@@1@@who iv-WHQ@@@@1@2@@@ +9@@@@1@@who iv-PQ@@@@0@2@@@ diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/item-phenomenon b/tests/regression/skeletons/wh17-morph-sep-oblig/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/item-set b/tests/regression/skeletons/wh17-morph-sep-oblig/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/output b/tests/regression/skeletons/wh17-morph-sep-oblig/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/parameter b/tests/regression/skeletons/wh17-morph-sep-oblig/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/parse b/tests/regression/skeletons/wh17-morph-sep-oblig/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/phenomenon b/tests/regression/skeletons/wh17-morph-sep-oblig/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/preference b/tests/regression/skeletons/wh17-morph-sep-oblig/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/relations b/tests/regression/skeletons/wh17-morph-sep-oblig/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh17-morph-sep-oblig/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/result b/tests/regression/skeletons/wh17-morph-sep-oblig/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/rule b/tests/regression/skeletons/wh17-morph-sep-oblig/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/run b/tests/regression/skeletons/wh17-morph-sep-oblig/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/score b/tests/regression/skeletons/wh17-morph-sep-oblig/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/set b/tests/regression/skeletons/wh17-morph-sep-oblig/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/tree b/tests/regression/skeletons/wh17-morph-sep-oblig/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh17-morph-sep-oblig/update b/tests/regression/skeletons/wh17-morph-sep-oblig/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/analysis b/tests/regression/skeletons/wh18-aux-inv-both/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/decision b/tests/regression/skeletons/wh18-aux-inv-both/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/edge b/tests/regression/skeletons/wh18-aux-inv-both/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/fold b/tests/regression/skeletons/wh18-aux-inv-both/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/item b/tests/regression/skeletons/wh18-aux-inv-both/item new file mode 100644 index 000000000..98d8575c0 --- /dev/null +++ b/tests/regression/skeletons/wh18-aux-inv-both/item @@ -0,0 +1,11 @@ +1@@@@1@@do the dogs sleep@@@@1@4@@@ +2@@@@1@@I wonder whether do the dogs sleep@@@@0@7@@@ +3@@@@1@@I wonder whether the dogs sleep@@@@1@6@@@ +4@@@@1@@who do sleep@@@@1@3@@@ +5@@@@1@@who sleep@@@@0@2@@@ +6@@@@1@@I wonder who do sleep@@@@1@5@@@ +7@@@@1@@I wonder who sleep@@@@0@4@@@ +8@@@@1@@what do the dogs chase@@@@1@5@@@ +9@@@@1@@what the dogs chase@@@@0@4@@@ +10@@@@1@@I wonder what do the dogs chase@@@@1@7@@@ +11@@@@1@@I wonder what the dogs chase@@@@0@6@@@ diff --git a/tests/regression/skeletons/wh18-aux-inv-both/item-phenomenon b/tests/regression/skeletons/wh18-aux-inv-both/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/item-set b/tests/regression/skeletons/wh18-aux-inv-both/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/output b/tests/regression/skeletons/wh18-aux-inv-both/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/parameter b/tests/regression/skeletons/wh18-aux-inv-both/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/parse b/tests/regression/skeletons/wh18-aux-inv-both/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/phenomenon b/tests/regression/skeletons/wh18-aux-inv-both/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/preference b/tests/regression/skeletons/wh18-aux-inv-both/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/relations b/tests/regression/skeletons/wh18-aux-inv-both/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh18-aux-inv-both/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh18-aux-inv-both/result b/tests/regression/skeletons/wh18-aux-inv-both/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/rule b/tests/regression/skeletons/wh18-aux-inv-both/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/run b/tests/regression/skeletons/wh18-aux-inv-both/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/score b/tests/regression/skeletons/wh18-aux-inv-both/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/set b/tests/regression/skeletons/wh18-aux-inv-both/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/tree b/tests/regression/skeletons/wh18-aux-inv-both/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh18-aux-inv-both/update b/tests/regression/skeletons/wh18-aux-inv-both/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/analysis b/tests/regression/skeletons/wh19-cfocus-marking/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/decision b/tests/regression/skeletons/wh19-cfocus-marking/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/edge b/tests/regression/skeletons/wh19-cfocus-marking/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/fold b/tests/regression/skeletons/wh19-cfocus-marking/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/item b/tests/regression/skeletons/wh19-cfocus-marking/item new file mode 100644 index 000000000..0594b897d --- /dev/null +++ b/tests/regression/skeletons/wh19-cfocus-marking/item @@ -0,0 +1,10 @@ +1@@@@1@@CN IV@@@@1@2@@@ +2@@@@1@@CN CF IV@@@@1@3@@@ +3@@@@1@@who IV@@@@1@2@@@ +4@@@@1@@CN what TV@@@@1@3@@@ +5@@@@1@@CN what CF TV@@@@1@4@@@ +6@@@@1@@who CF IV@@@@1@3@@@ +7@@@@1@@who CF CN TV@@@@1@4@@@ +8@@@@1@@CN CN TV@@@@1@3@@@ +9@@@@1@@CN CF CN TV@@@@1@4@@@ +10@@@@1@@CN CN CF TV@@@@1@4@@@ diff --git a/tests/regression/skeletons/wh19-cfocus-marking/item-phenomenon b/tests/regression/skeletons/wh19-cfocus-marking/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/item-set b/tests/regression/skeletons/wh19-cfocus-marking/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/output b/tests/regression/skeletons/wh19-cfocus-marking/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/parameter b/tests/regression/skeletons/wh19-cfocus-marking/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/parse b/tests/regression/skeletons/wh19-cfocus-marking/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/phenomenon b/tests/regression/skeletons/wh19-cfocus-marking/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/preference b/tests/regression/skeletons/wh19-cfocus-marking/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/relations b/tests/regression/skeletons/wh19-cfocus-marking/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh19-cfocus-marking/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh19-cfocus-marking/result b/tests/regression/skeletons/wh19-cfocus-marking/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/rule b/tests/regression/skeletons/wh19-cfocus-marking/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/run b/tests/regression/skeletons/wh19-cfocus-marking/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/score b/tests/regression/skeletons/wh19-cfocus-marking/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/set b/tests/regression/skeletons/wh19-cfocus-marking/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/tree b/tests/regression/skeletons/wh19-cfocus-marking/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh19-cfocus-marking/update b/tests/regression/skeletons/wh19-cfocus-marking/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/analysis b/tests/regression/skeletons/wh2-sov-sg-oblig-min/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/decision b/tests/regression/skeletons/wh2-sov-sg-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/edge b/tests/regression/skeletons/wh2-sov-sg-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/fold b/tests/regression/skeletons/wh2-sov-sg-oblig-min/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/item b/tests/regression/skeletons/wh2-sov-sg-oblig-min/item new file mode 100644 index 000000000..64be43309 --- /dev/null +++ b/tests/regression/skeletons/wh2-sov-sg-oblig-min/item @@ -0,0 +1,10 @@ +1@@@@1@@cat house sees@@@@1@3@@@ +2@@@@1@@cat sees house@@@@0@3@@@ +3@@@@1@@what cat sees?@@@@1@3@@@ +4@@@@1@@cat sees what?@@@@0@3@@@ +5@@@@1@@cat what sees?@@@@0@3@@@ +6@@@@1@@cat cat sees in house@@@@1@5@@@ +7@@@@1@@what cat sees in house?@@@@1@5@@@ +8@@@@1@@cat sees cat in house@@@@0@5@@@ +9@@@@1@@cat what sees in house?@@@@0@5@@@ +10@@@@1@@cat sees what in house?@@@@0@5@@@ diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/item-phenomenon b/tests/regression/skeletons/wh2-sov-sg-oblig-min/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/item-set b/tests/regression/skeletons/wh2-sov-sg-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/output b/tests/regression/skeletons/wh2-sov-sg-oblig-min/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/parameter b/tests/regression/skeletons/wh2-sov-sg-oblig-min/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/parse b/tests/regression/skeletons/wh2-sov-sg-oblig-min/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/phenomenon b/tests/regression/skeletons/wh2-sov-sg-oblig-min/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/preference b/tests/regression/skeletons/wh2-sov-sg-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/relations b/tests/regression/skeletons/wh2-sov-sg-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh2-sov-sg-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/result b/tests/regression/skeletons/wh2-sov-sg-oblig-min/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/rule b/tests/regression/skeletons/wh2-sov-sg-oblig-min/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/run b/tests/regression/skeletons/wh2-sov-sg-oblig-min/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/score b/tests/regression/skeletons/wh2-sov-sg-oblig-min/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/set b/tests/regression/skeletons/wh2-sov-sg-oblig-min/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/tree b/tests/regression/skeletons/wh2-sov-sg-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh2-sov-sg-oblig-min/update b/tests/regression/skeletons/wh2-sov-sg-oblig-min/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/analysis b/tests/regression/skeletons/wh20-no-cfocus-marking/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/decision b/tests/regression/skeletons/wh20-no-cfocus-marking/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/edge b/tests/regression/skeletons/wh20-no-cfocus-marking/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/fold b/tests/regression/skeletons/wh20-no-cfocus-marking/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/item b/tests/regression/skeletons/wh20-no-cfocus-marking/item new file mode 100644 index 000000000..9387bcff5 --- /dev/null +++ b/tests/regression/skeletons/wh20-no-cfocus-marking/item @@ -0,0 +1,10 @@ +1@@@@1@@CN IV@@@@1@2@@@ +2@@@@1@@CN CF IV@@@@1@3@@@ +3@@@@1@@who IV@@@@1@2@@@ +4@@@@1@@CN what TV@@@@1@3@@@ +5@@@@1@@CN what CF TV@@@@0@4@@@ +6@@@@1@@who CF IV@@@@0@3@@@ +7@@@@1@@who CF CN TV@@@@0@4@@@ +8@@@@1@@CN CN TV@@@@1@3@@@ +9@@@@1@@CN CF CN TV@@@@1@4@@@ +10@@@@1@@CN CN CF TV@@@@1@4@@@ diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/item-phenomenon b/tests/regression/skeletons/wh20-no-cfocus-marking/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/item-set b/tests/regression/skeletons/wh20-no-cfocus-marking/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/output b/tests/regression/skeletons/wh20-no-cfocus-marking/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/parameter b/tests/regression/skeletons/wh20-no-cfocus-marking/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/parse b/tests/regression/skeletons/wh20-no-cfocus-marking/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/phenomenon b/tests/regression/skeletons/wh20-no-cfocus-marking/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/preference b/tests/regression/skeletons/wh20-no-cfocus-marking/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/relations b/tests/regression/skeletons/wh20-no-cfocus-marking/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh20-no-cfocus-marking/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/result b/tests/regression/skeletons/wh20-no-cfocus-marking/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/rule b/tests/regression/skeletons/wh20-no-cfocus-marking/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/run b/tests/regression/skeletons/wh20-no-cfocus-marking/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/score b/tests/regression/skeletons/wh20-no-cfocus-marking/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/set b/tests/regression/skeletons/wh20-no-cfocus-marking/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/tree b/tests/regression/skeletons/wh20-no-cfocus-marking/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh20-no-cfocus-marking/update b/tests/regression/skeletons/wh20-no-cfocus-marking/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/analysis b/tests/regression/skeletons/wh21-embed-insitu/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/decision b/tests/regression/skeletons/wh21-embed-insitu/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/edge b/tests/regression/skeletons/wh21-embed-insitu/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/fold b/tests/regression/skeletons/wh21-embed-insitu/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/item b/tests/regression/skeletons/wh21-embed-insitu/item new file mode 100644 index 000000000..86c28dbb2 --- /dev/null +++ b/tests/regression/skeletons/wh21-embed-insitu/item @@ -0,0 +1,19 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@1@3@@@ +9@@@@1@@cat what sees?@@@@0@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@1@3@@@ +13@@@@1@@cat where sleeps?@@@@1@3@@@ +14@@@@1@@who sees what?@@@@1@3@@@ +15@@@@1@@who what sees?@@@@0@3@@@ +16@@@@1@@cat asks who sleeps@@@@1@4@@@ +17@@@@1@@cat asks who sees what@@@@1@5@@@ +18@@@@1@@cat asks cat sees what@@@@1@5@@@ +19@@@@1@@cat asks what cat sees@@@@1@5@@@ diff --git a/tests/regression/skeletons/wh21-embed-insitu/item-phenomenon b/tests/regression/skeletons/wh21-embed-insitu/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/item-set b/tests/regression/skeletons/wh21-embed-insitu/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/output b/tests/regression/skeletons/wh21-embed-insitu/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/parameter b/tests/regression/skeletons/wh21-embed-insitu/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/parse b/tests/regression/skeletons/wh21-embed-insitu/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/phenomenon b/tests/regression/skeletons/wh21-embed-insitu/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/preference b/tests/regression/skeletons/wh21-embed-insitu/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/relations b/tests/regression/skeletons/wh21-embed-insitu/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh21-embed-insitu/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh21-embed-insitu/result b/tests/regression/skeletons/wh21-embed-insitu/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/rule b/tests/regression/skeletons/wh21-embed-insitu/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/run b/tests/regression/skeletons/wh21-embed-insitu/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/score b/tests/regression/skeletons/wh21-embed-insitu/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/set b/tests/regression/skeletons/wh21-embed-insitu/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/tree b/tests/regression/skeletons/wh21-embed-insitu/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh21-embed-insitu/update b/tests/regression/skeletons/wh21-embed-insitu/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/analysis b/tests/regression/skeletons/wh22-no-multi-ques/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/decision b/tests/regression/skeletons/wh22-no-multi-ques/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/edge b/tests/regression/skeletons/wh22-no-multi-ques/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/fold b/tests/regression/skeletons/wh22-no-multi-ques/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/item b/tests/regression/skeletons/wh22-no-multi-ques/item new file mode 100644 index 000000000..02f3a8630 --- /dev/null +++ b/tests/regression/skeletons/wh22-no-multi-ques/item @@ -0,0 +1,22 @@ +1@@@@1@@tv the n1 the n2@@@@1@5@@@ +2@@@@1@@who tv the n2?@@@@1@4@@@ +3@@@@1@@tv who the n2?@@@@1@4@@@ +4@@@@1@@tv the n1 what?@@@@1@4@@@ +5@@@@1@@what tv the n1?@@@@1@4@@@ +6@@@@1@@tv who what?@@@@0@3@@@ +7@@@@1@@who tv what?@@@@0@3@@@ +8@@@@1@@what tv who?@@@@0@3@@@ +9@@@@1@@where tv the n1 the n2?@@@@1@6@@@ +10@@@@1@@tv the n1 the n2 where?@@@@1@6@@@ +11@@@@1@@who tv the n2 where?@@@@0@5@@@ +12@@@@1@@which n1 tv the n2?@@@@1@5@@@ +13@@@@1@@which n1 tv what?@@@@0@4@@@ +14@@@@1@@ask the n1 who iv@@@@1@5@@@ +15@@@@1@@ask the n1 iv who@@@@1@5@@@ +16@@@@1@@ask the n1 who tv the n2@@@@1@7@@@ +17@@@@1@@ask the n1 who tv what@@@@0@6@@@ +18@@@@1@@ask the n1 who tv the n2 where@@@@0@8@@@ +19@@@@1@@ask the n1 where iv the n2@@@@1@7@@@ +20@@@@1@@who ask the n1 iv@@@@1@5@@@ +21@@@@1@@who ask the n1 tv what@@@@0@6@@@ +22@@@@1@@who ask the n1 tv the n2@@@@1@7@@@ diff --git a/tests/regression/skeletons/wh22-no-multi-ques/item-phenomenon b/tests/regression/skeletons/wh22-no-multi-ques/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/item-set b/tests/regression/skeletons/wh22-no-multi-ques/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/output b/tests/regression/skeletons/wh22-no-multi-ques/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/parameter b/tests/regression/skeletons/wh22-no-multi-ques/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/parse b/tests/regression/skeletons/wh22-no-multi-ques/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/phenomenon b/tests/regression/skeletons/wh22-no-multi-ques/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/preference b/tests/regression/skeletons/wh22-no-multi-ques/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/relations b/tests/regression/skeletons/wh22-no-multi-ques/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh22-no-multi-ques/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh22-no-multi-ques/result b/tests/regression/skeletons/wh22-no-multi-ques/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/rule b/tests/regression/skeletons/wh22-no-multi-ques/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/run b/tests/regression/skeletons/wh22-no-multi-ques/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/score b/tests/regression/skeletons/wh22-no-multi-ques/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/set b/tests/regression/skeletons/wh22-no-multi-ques/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/tree b/tests/regression/skeletons/wh22-no-multi-ques/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh22-no-multi-ques/update b/tests/regression/skeletons/wh22-no-multi-ques/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/analysis b/tests/regression/skeletons/wh23-quesverbs/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/decision b/tests/regression/skeletons/wh23-quesverbs/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/edge b/tests/regression/skeletons/wh23-quesverbs/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/fold b/tests/regression/skeletons/wh23-quesverbs/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/item b/tests/regression/skeletons/wh23-quesverbs/item new file mode 100644 index 000000000..1d8ef358c --- /dev/null +++ b/tests/regression/skeletons/wh23-quesverbs/item @@ -0,0 +1,5 @@ +1@@@@1@@nǐ gànmá@@@@1@2@@@ +2@@@@1@@ke trò@@@@1@2@@@ +3@@@@1@@vasia@@@@1@1@@@ +4@@@@1@@ʔeʔenət@@@@1@1@@@ +5@@@@1@@čem@@@@1@1@@@ diff --git a/tests/regression/skeletons/wh23-quesverbs/item-phenomenon b/tests/regression/skeletons/wh23-quesverbs/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/item-set b/tests/regression/skeletons/wh23-quesverbs/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/output b/tests/regression/skeletons/wh23-quesverbs/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/parameter b/tests/regression/skeletons/wh23-quesverbs/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/parse b/tests/regression/skeletons/wh23-quesverbs/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/phenomenon b/tests/regression/skeletons/wh23-quesverbs/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/preference b/tests/regression/skeletons/wh23-quesverbs/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/relations b/tests/regression/skeletons/wh23-quesverbs/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh23-quesverbs/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh23-quesverbs/result b/tests/regression/skeletons/wh23-quesverbs/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/rule b/tests/regression/skeletons/wh23-quesverbs/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/run b/tests/regression/skeletons/wh23-quesverbs/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/score b/tests/regression/skeletons/wh23-quesverbs/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/set b/tests/regression/skeletons/wh23-quesverbs/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/tree b/tests/regression/skeletons/wh23-quesverbs/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh23-quesverbs/update b/tests/regression/skeletons/wh23-quesverbs/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/analysis b/tests/regression/skeletons/wh24-particles-embed/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/decision b/tests/regression/skeletons/wh24-particles-embed/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/edge b/tests/regression/skeletons/wh24-particles-embed/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/fold b/tests/regression/skeletons/wh24-particles-embed/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/item b/tests/regression/skeletons/wh24-particles-embed/item new file mode 100644 index 000000000..1760b1d48 --- /dev/null +++ b/tests/regression/skeletons/wh24-particles-embed/item @@ -0,0 +1,14 @@ +1@@@@1@@cat who sleeps Q2 asks@@@@1@5@@@ +2@@@@1@@cat who what sees Q2 asks@@@@1@6@@@ +3@@@@1@@cat cat what sees Q2 asks@@@@1@6@@@ +4@@@@1@@cat cat house sees thinks@@@@1@5@@@ +5@@@@1@@cat cat house sees knows@@@@1@5@@@ +6@@@@1@@cat cat house sees asks@@@@0@5@@@ +7@@@@1@@cat cat house sees Q2 asks@@@@0@6@@@ +8@@@@1@@cat cat house sees Q2 knows@@@@0@6@@@ +9@@@@1@@cat cat house sees Q2 thinks@@@@0@6@@@ +10@@@@1@@cat cat what sees Q2 knows@@@@1@6@@@ +11@@@@1@@cat sleeps Q1@@@@1@3@@@ +12@@@@1@@cat what sees Q1?@@@@0@4@@@ +13@@@@1@@cat cat what sees Q1 asks@@@@0@6@@@ +14@@@@1@@cat what sees Q2@@@@0@4@@@ diff --git a/tests/regression/skeletons/wh24-particles-embed/item-phenomenon b/tests/regression/skeletons/wh24-particles-embed/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/item-set b/tests/regression/skeletons/wh24-particles-embed/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/output b/tests/regression/skeletons/wh24-particles-embed/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/parameter b/tests/regression/skeletons/wh24-particles-embed/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/parse b/tests/regression/skeletons/wh24-particles-embed/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/phenomenon b/tests/regression/skeletons/wh24-particles-embed/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/preference b/tests/regression/skeletons/wh24-particles-embed/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/relations b/tests/regression/skeletons/wh24-particles-embed/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh24-particles-embed/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh24-particles-embed/result b/tests/regression/skeletons/wh24-particles-embed/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/rule b/tests/regression/skeletons/wh24-particles-embed/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/run b/tests/regression/skeletons/wh24-particles-embed/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/score b/tests/regression/skeletons/wh24-particles-embed/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/set b/tests/regression/skeletons/wh24-particles-embed/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/tree b/tests/regression/skeletons/wh24-particles-embed/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh24-particles-embed/update b/tests/regression/skeletons/wh24-particles-embed/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/analysis b/tests/regression/skeletons/wh25-no-multi-insitu-morph/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/decision b/tests/regression/skeletons/wh25-no-multi-insitu-morph/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/edge b/tests/regression/skeletons/wh25-no-multi-insitu-morph/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/fold b/tests/regression/skeletons/wh25-no-multi-insitu-morph/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/item b/tests/regression/skeletons/wh25-no-multi-insitu-morph/item new file mode 100644 index 000000000..c15adaef7 --- /dev/null +++ b/tests/regression/skeletons/wh25-no-multi-insitu-morph/item @@ -0,0 +1,12 @@ +1@@@@1@@tv the n2 the n1@@@@1@5@@@ +2@@@@1@@tv what the n1?@@@@1@4@@@ +3@@@@1@@tv the n2 who?@@@@1@4@@@ +4@@@@1@@who tv the n2?@@@@0@4@@@ +5@@@@1@@where iv the n1?@@@@1@4@@@ +6@@@@1@@iv the n1 where?@@@@1@4@@@ +7@@@@1@@iv where the n1?@@@@1@4@@@ +8@@@@1@@who iv?@@@@0@2@@@ +9@@@@1@@iv who@@@@1@2@@@ +10@@@@1@@iv who where?@@@@0@3@@@ +11@@@@1@@tv what who?@@@@0@3@@@ +12@@@@1@@iv-Q who?@@@@1@2@@@ diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/item-phenomenon b/tests/regression/skeletons/wh25-no-multi-insitu-morph/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/item-set b/tests/regression/skeletons/wh25-no-multi-insitu-morph/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/output b/tests/regression/skeletons/wh25-no-multi-insitu-morph/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/parameter b/tests/regression/skeletons/wh25-no-multi-insitu-morph/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/parse b/tests/regression/skeletons/wh25-no-multi-insitu-morph/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/phenomenon b/tests/regression/skeletons/wh25-no-multi-insitu-morph/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/preference b/tests/regression/skeletons/wh25-no-multi-insitu-morph/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/relations b/tests/regression/skeletons/wh25-no-multi-insitu-morph/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh25-no-multi-insitu-morph/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/result b/tests/regression/skeletons/wh25-no-multi-insitu-morph/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/rule b/tests/regression/skeletons/wh25-no-multi-insitu-morph/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/run b/tests/regression/skeletons/wh25-no-multi-insitu-morph/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/score b/tests/regression/skeletons/wh25-no-multi-insitu-morph/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/set b/tests/regression/skeletons/wh25-no-multi-insitu-morph/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/tree b/tests/regression/skeletons/wh25-no-multi-insitu-morph/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh25-no-multi-insitu-morph/update b/tests/regression/skeletons/wh25-no-multi-insitu-morph/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/analysis b/tests/regression/skeletons/wh3-vso-sg-oblig-det/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/decision b/tests/regression/skeletons/wh3-vso-sg-oblig-det/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/edge b/tests/regression/skeletons/wh3-vso-sg-oblig-det/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/fold b/tests/regression/skeletons/wh3-vso-sg-oblig-det/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/item b/tests/regression/skeletons/wh3-vso-sg-oblig-det/item new file mode 100644 index 000000000..7e4cab5d9 --- /dev/null +++ b/tests/regression/skeletons/wh3-vso-sg-oblig-det/item @@ -0,0 +1,24 @@ +1@@@@1@@sleeps cat the@@@@1@3@@@ +2@@@@1@@sleeps the cat@@@@0@3@@@ +3@@@@1@@the cat sleeps@@@@0@3@@@ +4@@@@1@@cat the sleeps@@@@0@3@@@ +5@@@@1@@sees cat the house the@@@@1@5@@@ +6@@@@1@@sees the cat the house@@@@0@5@@@ +7@@@@1@@cat the sees house the@@@@0@5@@@ +8@@@@1@@cat the house the sees@@@@0@5@@@ +9@@@@1@@what sees cat the?@@@@1@4@@@ +10@@@@1@@sees cat the what?@@@@0@4@@@ +11@@@@1@@sees what cat the?@@@@0@4@@@ +12@@@@1@@what the sees cat the?@@@@0@5@@@ +13@@@@1@@house which sees cat the?@@@@1@5@@@ +14@@@@1@@which house sees cat the?@@@@0@5@@@ +15@@@@1@@sees house which cat the?@@@@0@5@@@ +16@@@@1@@sees cat the house which?@@@@0@5@@@ +17@@@@1@@sleeps cat the in house the@@@@1@6@@@ +18@@@@1@@sleeps cat in house the the@@@@1@6@@@ +19@@@@1@@cat which sees cat the in house the?@@@@1@8@@@ +20@@@@1@@what sees cat the in house the?@@@@1@7@@@ +21@@@@1@@who sleeps in house the?@@@@1@5@@@ +22@@@@1@@sleeps who in house the?@@@@0@5@@@ +23@@@@1@@sees cat the what in house the?@@@@0@7@@@ +24@@@@1@@sees cat the what house the in?@@@@0@7@@@ diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/item-phenomenon b/tests/regression/skeletons/wh3-vso-sg-oblig-det/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/item-set b/tests/regression/skeletons/wh3-vso-sg-oblig-det/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/output b/tests/regression/skeletons/wh3-vso-sg-oblig-det/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/parameter b/tests/regression/skeletons/wh3-vso-sg-oblig-det/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/parse b/tests/regression/skeletons/wh3-vso-sg-oblig-det/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/phenomenon b/tests/regression/skeletons/wh3-vso-sg-oblig-det/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/preference b/tests/regression/skeletons/wh3-vso-sg-oblig-det/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/relations b/tests/regression/skeletons/wh3-vso-sg-oblig-det/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh3-vso-sg-oblig-det/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/result b/tests/regression/skeletons/wh3-vso-sg-oblig-det/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/rule b/tests/regression/skeletons/wh3-vso-sg-oblig-det/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/run b/tests/regression/skeletons/wh3-vso-sg-oblig-det/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/score b/tests/regression/skeletons/wh3-vso-sg-oblig-det/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/set b/tests/regression/skeletons/wh3-vso-sg-oblig-det/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/tree b/tests/regression/skeletons/wh3-vso-sg-oblig-det/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh3-vso-sg-oblig-det/update b/tests/regression/skeletons/wh3-vso-sg-oblig-det/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/analysis b/tests/regression/skeletons/wh4-free-sg-oblig-min/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/decision b/tests/regression/skeletons/wh4-free-sg-oblig-min/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/edge b/tests/regression/skeletons/wh4-free-sg-oblig-min/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/fold b/tests/regression/skeletons/wh4-free-sg-oblig-min/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/item b/tests/regression/skeletons/wh4-free-sg-oblig-min/item new file mode 100644 index 000000000..fbfca5964 --- /dev/null +++ b/tests/regression/skeletons/wh4-free-sg-oblig-min/item @@ -0,0 +1,11 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@cat sees house@@@@1@3@@@ +3@@@@1@@who sleeps?@@@@1@2@@@ +4@@@@1@@what cat sees?@@@@1@3@@@ +5@@@@1@@sleeps cat@@@@1@2@@@ +6@@@@1@@sees cat house@@@@1@3@@@ +7@@@@1@@house sees cat@@@@1@3@@@ +8@@@@1@@house cat sees@@@@1@3@@@ +9@@@@1@@sleeps who?@@@@0@2@@@ +10@@@@1@@sees what cat?@@@@0@3@@@ +11@@@@1@@sees who house?@@@@0@3@@@ diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/item-phenomenon b/tests/regression/skeletons/wh4-free-sg-oblig-min/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/item-set b/tests/regression/skeletons/wh4-free-sg-oblig-min/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/output b/tests/regression/skeletons/wh4-free-sg-oblig-min/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/parameter b/tests/regression/skeletons/wh4-free-sg-oblig-min/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/parse b/tests/regression/skeletons/wh4-free-sg-oblig-min/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/phenomenon b/tests/regression/skeletons/wh4-free-sg-oblig-min/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/preference b/tests/regression/skeletons/wh4-free-sg-oblig-min/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/relations b/tests/regression/skeletons/wh4-free-sg-oblig-min/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh4-free-sg-oblig-min/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/result b/tests/regression/skeletons/wh4-free-sg-oblig-min/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/rule b/tests/regression/skeletons/wh4-free-sg-oblig-min/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/run b/tests/regression/skeletons/wh4-free-sg-oblig-min/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/score b/tests/regression/skeletons/wh4-free-sg-oblig-min/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/set b/tests/regression/skeletons/wh4-free-sg-oblig-min/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/tree b/tests/regression/skeletons/wh4-free-sg-oblig-min/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh4-free-sg-oblig-min/update b/tests/regression/skeletons/wh4-free-sg-oblig-min/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/analysis b/tests/regression/skeletons/wh5-free-sg-oblig-det/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/decision b/tests/regression/skeletons/wh5-free-sg-oblig-det/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/edge b/tests/regression/skeletons/wh5-free-sg-oblig-det/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/fold b/tests/regression/skeletons/wh5-free-sg-oblig-det/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/item b/tests/regression/skeletons/wh5-free-sg-oblig-det/item new file mode 100644 index 000000000..1ea3165d9 --- /dev/null +++ b/tests/regression/skeletons/wh5-free-sg-oblig-det/item @@ -0,0 +1,32 @@ +1@@@@1@@the cat sleeps@@@@1@3@@@ +2@@@@1@@the cat sees the house@@@@1@5@@@ +3@@@@1@@who sleeps?@@@@1@2@@@ +4@@@@1@@what the cat sees?@@@@1@4@@@ +5@@@@1@@sleeps the cat@@@@1@3@@@ +6@@@@1@@sees the cat the house@@@@1@5@@@ +7@@@@1@@the house sees the cat@@@@1@5@@@ +8@@@@1@@the house the cat sees@@@@1@5@@@ +9@@@@1@@sleeps who?@@@@0@2@@@ +10@@@@1@@sees what cat?@@@@0@3@@@ +11@@@@1@@sees who house?@@@@0@3@@@ +12@@@@1@@cat sleeps@@@@0@2@@@ +13@@@@1@@cat the sleeps@@@@0@3@@@ +14@@@@1@@cat sleeps the@@@@0@3@@@ +15@@@@1@@cat sees house@@@@0@3@@@ +16@@@@1@@cat the sees the house@@@@0@5@@@ +17@@@@1@@cat the sees house the@@@@0@5@@@ +18@@@@1@@the cat sees house the@@@@0@5@@@ +19@@@@1@@what cat the sees?@@@@0@4@@@ +20@@@@1@@sleeps cat the@@@@0@3@@@ +21@@@@1@@sees cat the house the@@@@0@5@@@ +22@@@@1@@house the cat sees@@@@0@4@@@ +23@@@@1@@house the cat the sees@@@@0@5@@@ +24@@@@1@@which cat sleeps?@@@@1@3@@@ +25@@@@1@@cat which sleeps?@@@@0@3@@@ +26@@@@1@@sleeps which cat?@@@@0@3@@@ +27@@@@1@@sleeps cat which?@@@@0@3@@@ +28@@@@1@@which house the cat sees?@@@@1@5@@@ +29@@@@1@@the house which cat sees?@@@@0@5@@@ +30@@@@1@@sees the cat which house?@@@@0@5@@@ +31@@@@1@@which which cat sleeps?@@@@0@4@@@ +32@@@@1@@which the cat sleeps?@@@@0@4@@@ diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/item-phenomenon b/tests/regression/skeletons/wh5-free-sg-oblig-det/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/item-set b/tests/regression/skeletons/wh5-free-sg-oblig-det/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/output b/tests/regression/skeletons/wh5-free-sg-oblig-det/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/parameter b/tests/regression/skeletons/wh5-free-sg-oblig-det/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/parse b/tests/regression/skeletons/wh5-free-sg-oblig-det/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/phenomenon b/tests/regression/skeletons/wh5-free-sg-oblig-det/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/preference b/tests/regression/skeletons/wh5-free-sg-oblig-det/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/relations b/tests/regression/skeletons/wh5-free-sg-oblig-det/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh5-free-sg-oblig-det/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/result b/tests/regression/skeletons/wh5-free-sg-oblig-det/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/rule b/tests/regression/skeletons/wh5-free-sg-oblig-det/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/run b/tests/regression/skeletons/wh5-free-sg-oblig-det/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/score b/tests/regression/skeletons/wh5-free-sg-oblig-det/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/set b/tests/regression/skeletons/wh5-free-sg-oblig-det/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/tree b/tests/regression/skeletons/wh5-free-sg-oblig-det/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh5-free-sg-oblig-det/update b/tests/regression/skeletons/wh5-free-sg-oblig-det/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/analysis b/tests/regression/skeletons/wh6-svo-sg-opt/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/decision b/tests/regression/skeletons/wh6-svo-sg-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/edge b/tests/regression/skeletons/wh6-svo-sg-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/fold b/tests/regression/skeletons/wh6-svo-sg-opt/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/item b/tests/regression/skeletons/wh6-svo-sg-opt/item new file mode 100644 index 000000000..99bca1c3c --- /dev/null +++ b/tests/regression/skeletons/wh6-svo-sg-opt/item @@ -0,0 +1,15 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@1@3@@@ +9@@@@1@@cat what sees?@@@@0@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@1@3@@@ +13@@@@1@@cat where sleeps?@@@@1@3@@@ +14@@@@1@@who sees what?@@@@1@3@@@ +15@@@@1@@who what sees?@@@@0@3@@@ diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/item-phenomenon b/tests/regression/skeletons/wh6-svo-sg-opt/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/item-set b/tests/regression/skeletons/wh6-svo-sg-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/output b/tests/regression/skeletons/wh6-svo-sg-opt/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/parameter b/tests/regression/skeletons/wh6-svo-sg-opt/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/parse b/tests/regression/skeletons/wh6-svo-sg-opt/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/phenomenon b/tests/regression/skeletons/wh6-svo-sg-opt/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/preference b/tests/regression/skeletons/wh6-svo-sg-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/relations b/tests/regression/skeletons/wh6-svo-sg-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh6-svo-sg-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/result b/tests/regression/skeletons/wh6-svo-sg-opt/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/rule b/tests/regression/skeletons/wh6-svo-sg-opt/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/run b/tests/regression/skeletons/wh6-svo-sg-opt/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/score b/tests/regression/skeletons/wh6-svo-sg-opt/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/set b/tests/regression/skeletons/wh6-svo-sg-opt/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/tree b/tests/regression/skeletons/wh6-svo-sg-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh6-svo-sg-opt/update b/tests/regression/skeletons/wh6-svo-sg-opt/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/analysis b/tests/regression/skeletons/wh7-sov-sg-opt/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/decision b/tests/regression/skeletons/wh7-sov-sg-opt/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/edge b/tests/regression/skeletons/wh7-sov-sg-opt/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/fold b/tests/regression/skeletons/wh7-sov-sg-opt/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/item b/tests/regression/skeletons/wh7-sov-sg-opt/item new file mode 100644 index 000000000..da95ff94f --- /dev/null +++ b/tests/regression/skeletons/wh7-sov-sg-opt/item @@ -0,0 +1,15 @@ +1@@@@1@@cat sleeps@@@@1@2@@@ +2@@@@1@@sleeps cat@@@@0@2@@@ +3@@@@1@@cat sees house@@@@0@3@@@ +4@@@@1@@cat house sees@@@@1@3@@@ +5@@@@1@@who sleeps?@@@@1@2@@@ +6@@@@1@@sleeps who?@@@@0@2@@@ +7@@@@1@@what cat sees?@@@@1@3@@@ +8@@@@1@@cat sees what?@@@@0@3@@@ +9@@@@1@@cat what sees?@@@@1@3@@@ +10@@@@1@@cat sleeps in house@@@@1@4@@@ +11@@@@1@@where cat sleeps?@@@@1@3@@@ +12@@@@1@@cat sleeps where?@@@@1@3@@@ +13@@@@1@@cat where sleeps?@@@@1@3@@@ +14@@@@1@@who sees what?@@@@0@3@@@ +15@@@@1@@who what sees?@@@@1@3@@@ diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/item-phenomenon b/tests/regression/skeletons/wh7-sov-sg-opt/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/item-set b/tests/regression/skeletons/wh7-sov-sg-opt/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/output b/tests/regression/skeletons/wh7-sov-sg-opt/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/parameter b/tests/regression/skeletons/wh7-sov-sg-opt/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/parse b/tests/regression/skeletons/wh7-sov-sg-opt/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/phenomenon b/tests/regression/skeletons/wh7-sov-sg-opt/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/preference b/tests/regression/skeletons/wh7-sov-sg-opt/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/relations b/tests/regression/skeletons/wh7-sov-sg-opt/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh7-sov-sg-opt/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/result b/tests/regression/skeletons/wh7-sov-sg-opt/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/rule b/tests/regression/skeletons/wh7-sov-sg-opt/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/run b/tests/regression/skeletons/wh7-sov-sg-opt/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/score b/tests/regression/skeletons/wh7-sov-sg-opt/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/set b/tests/regression/skeletons/wh7-sov-sg-opt/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/tree b/tests/regression/skeletons/wh7-sov-sg-opt/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh7-sov-sg-opt/update b/tests/regression/skeletons/wh7-sov-sg-opt/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/analysis b/tests/regression/skeletons/wh8-ovs-insitu/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/decision b/tests/regression/skeletons/wh8-ovs-insitu/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/edge b/tests/regression/skeletons/wh8-ovs-insitu/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/fold b/tests/regression/skeletons/wh8-ovs-insitu/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/item b/tests/regression/skeletons/wh8-ovs-insitu/item new file mode 100644 index 000000000..1717b61bd --- /dev/null +++ b/tests/regression/skeletons/wh8-ovs-insitu/item @@ -0,0 +1,17 @@ +1@@@@1@@cat sleeps@@@@0@2@@@ +2@@@@1@@sleeps cat@@@@1@2@@@ +3@@@@1@@house sees cat@@@@1@3@@@ +4@@@@1@@cat house sees@@@@0@3@@@ +5@@@@1@@who sleeps?@@@@0@2@@@ +6@@@@1@@sleeps who?@@@@1@2@@@ +7@@@@1@@what cat sees?@@@@0@3@@@ +8@@@@1@@cat what sees?@@@@0@3@@@ +9@@@@1@@sleeps cat in house@@@@1@4@@@ +10@@@@1@@where sleeps cat?@@@@1@3@@@ +11@@@@1@@cat sleeps where?@@@@0@3@@@ +12@@@@1@@cat where sleeps?@@@@0@3@@@ +13@@@@1@@who sees what?@@@@1@3@@@ +14@@@@1@@who what sees?@@@@0@3@@@ +15@@@@1@@what sees cat@@@@1@3@@@ +16@@@@1@@what sees who@@@@1@3@@@ +17@@@@1@@sees who what@@@@0@3@@@ diff --git a/tests/regression/skeletons/wh8-ovs-insitu/item-phenomenon b/tests/regression/skeletons/wh8-ovs-insitu/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/item-set b/tests/regression/skeletons/wh8-ovs-insitu/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/output b/tests/regression/skeletons/wh8-ovs-insitu/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/parameter b/tests/regression/skeletons/wh8-ovs-insitu/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/parse b/tests/regression/skeletons/wh8-ovs-insitu/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/phenomenon b/tests/regression/skeletons/wh8-ovs-insitu/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/preference b/tests/regression/skeletons/wh8-ovs-insitu/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/relations b/tests/regression/skeletons/wh8-ovs-insitu/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh8-ovs-insitu/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh8-ovs-insitu/result b/tests/regression/skeletons/wh8-ovs-insitu/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/rule b/tests/regression/skeletons/wh8-ovs-insitu/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/run b/tests/regression/skeletons/wh8-ovs-insitu/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/score b/tests/regression/skeletons/wh8-ovs-insitu/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/set b/tests/regression/skeletons/wh8-ovs-insitu/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/tree b/tests/regression/skeletons/wh8-ovs-insitu/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh8-ovs-insitu/update b/tests/regression/skeletons/wh8-ovs-insitu/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/analysis b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/analysis new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/decision b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/decision new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/edge b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/edge new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/fold b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/fold new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/item b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/item new file mode 100644 index 000000000..20356ba27 --- /dev/null +++ b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/item @@ -0,0 +1,36 @@ +1@@@@1@@the cat sleeps@@@@0@3@@@ +2@@@@1@@the cat sees the house@@@@0@5@@@ +3@@@@1@@who sleeps?@@@@1@2@@@ +4@@@@1@@what the cat sees?@@@@0@4@@@ +5@@@@1@@sleeps the cat@@@@1@3@@@ +6@@@@1@@sees the cat the house@@@@1@5@@@ +7@@@@1@@the house sees the cat@@@@0@5@@@ +8@@@@1@@the house the cat sees@@@@0@5@@@ +9@@@@1@@sleeps who?@@@@0@2@@@ +10@@@@1@@sees what cat?@@@@0@3@@@ +11@@@@1@@sees who house?@@@@0@3@@@ +12@@@@1@@cat sleeps@@@@0@2@@@ +13@@@@1@@cat the sleeps@@@@0@3@@@ +14@@@@1@@cat sleeps the@@@@0@3@@@ +15@@@@1@@cat sees house@@@@0@3@@@ +16@@@@1@@cat the sees the house@@@@0@5@@@ +17@@@@1@@cat the sees house the@@@@0@5@@@ +18@@@@1@@the cat sees house the@@@@0@5@@@ +19@@@@1@@what cat the sees?@@@@0@4@@@ +20@@@@1@@sleeps cat the@@@@0@3@@@ +21@@@@1@@sees cat the house the@@@@0@5@@@ +22@@@@1@@house the cat sees@@@@0@4@@@ +23@@@@1@@house the cat the sees@@@@0@5@@@ +24@@@@1@@which cat sleeps?@@@@1@3@@@ +25@@@@1@@cat which sleeps?@@@@0@3@@@ +26@@@@1@@sleeps which cat?@@@@0@3@@@ +27@@@@1@@sleeps cat which?@@@@0@3@@@ +28@@@@1@@which house sees the cat ?@@@@1@6@@@ +29@@@@1@@the house which cat sees?@@@@0@5@@@ +30@@@@1@@sees the cat which house?@@@@0@5@@@ +31@@@@1@@which which cat sleeps?@@@@0@4@@@ +32@@@@1@@which the cat sleeps?@@@@0@4@@@ +33@@@@1@@which sees the cat house?@@@@0@5@@@ +34@@@@1@@in which house sleeps the cat?@@@@1@6@@@ +35@@@@1@@in which sleeps the cat house?@@@@0@6@@@ +36@@@@1@@in sleeps the cat which house?@@@@0@6@@@ diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/item-phenomenon b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/item-phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/item-set b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/item-set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/output b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/output new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/parameter b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/parameter new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/parse b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/parse new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/phenomenon b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/phenomenon new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/preference b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/preference new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/relations b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/relations new file mode 100644 index 000000000..a099b8a5c --- /dev/null +++ b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/relations @@ -0,0 +1,251 @@ +item: + i-id :integer :key + i-origin :string + i-register :string + i-format :string + i-difficulty :integer + i-category :string + i-input :string + i-tokens :string + i-gloss :string + i-translation :string + i-wf :integer + i-length :integer + i-comment :string + i-author :string + i-date :date + +analysis: + i-id :integer :key + a-position :string + a-instance :string + a-category :string + a-function :string + a-domain :string + a-tag :string + a-comment :string + +phenomenon: + p-id :integer :key + p-name :string + p-supertypes :string + p-presupposition :string + p-interaction :string + p-purpose :string + p-restrictions :string + p-comment :string + p-author :string + p-date :date + +parameter: + ip-id :integer :key + position :string + attribute :string + value :string + instance :string + pa-comment :string + +set: + s-id :integer :key + p-id :integer :key :partial + s-author :string + s-date :date + +item-phenomenon: + ip-id :integer :key + i-id :integer :key + p-id :integer :key + ip-author :string + ip-date :date + +item-set: + i-id :integer :key :partial + s-id :integer :key + polarity :integer + +run: + run-id :integer :key # unique test run identifier + run-comment :string # descriptive narrative + platform :string # implementation platform (version) + protocol :integer # [incr tsdb()] protocol version + tsdb :string # tsdb(1) (version) used + application :string # application (version) used + environment :string # application-specific information + grammar :string # grammar (version) used + avms :integer # number of avm types in image + sorts :integer # number of sort types in image + templates :integer # number of templates in image + lexicon :integer # number of lexical entries + lrules :integer # number of lexical rules + rules :integer # number of (non-lexical) rules + user :string # user who did the test run + host :string # machine used for this run + os :string # operating system (version) + start :date # start time of this test run + end :date # end time for this test run + items :integer # number of test items in this run + status :string # exit status (PVM only) + +parse: + parse-id :integer :key # unique parse identifier + run-id :integer :key # test run for this parse + i-id :integer :key # item parsed + ninputs :integer # number of initial tokens + p-input :string # initial (pre-processed) parser input + ntokens :integer # number of internal tokens + p-tokens :string # internal parser input: lexical lookup + readings :integer # number of readings obtained + first :integer # time to find first reading (msec) + total :integer # total time for parsing (msec) + tcpu :integer # total (cpu) processing time (msec) + tgc :integer # gc time used (msec) + treal :integer # overall real time (msec) + words :integer # lexical entries retrieved + l-stasks :integer # successful lexical rule applications + p-ctasks :integer # parser contemplated tasks (LKB) + p-ftasks :integer # parser filtered tasks + p-etasks :integer # parser executed tasks + p-stasks :integer # parser succeeding tasks + aedges :integer # active items in chart + pedges :integer # passive items in chart + raedges :integer # active items contributing to result + rpedges :integer # passive items contributing to result + tedges :integer # type-0 entries in (visible) forest + eedges :integer # type-1 entries in (visible) forest + ledges :integer # type-2 entries in (visible) forest + sedges :integer # type-3 entries in (visible) forest + redges :integer # type-4 entries in (visible) forest + unifications :integer # number of (top-level) unifications + copies :integer # number of (top-level) copy operations + conses :integer # cons() cells allocated + symbols :integer # symbols allocated + others :integer # bytes of memory allocated + gcs :integer # number of garbage collections + i-load :integer # initial load (start of parse) + a-load :integer # average load + date :date # date and time of parse + error :string # error string (if applicable |:-) + comment :string # application-specific comment + +result: + parse-id :integer :key # parse for this result + result-id :integer # unique result identifier + time :integer # time to find this result (msec) + r-ctasks :integer # parser contemplated tasks + r-ftasks :integer # parser filtered tasks + r-etasks :integer # parser executed tasks + r-stasks :integer # parser succeeding tasks + size :integer # size of feature structure + r-aedges :integer # active items for this result + r-pedges :integer # passive items in this result + derivation :string # derivation tree for this reading + surface :string # surface string (e.g. realization) + tree :string # phrase structure tree (CSLI labels) + mrs :string # mrs for this reading + flags :string # arbitrary annotation (e.g. BLEU) + +rule: + parse-id :integer :key # parse for this rule summary + rule :string # rule name + filtered :integer # rule postulations filtered + executed :integer # rule postulations executed + successes :integer # successful rule postulations + actives :integer # active edges built from this rule + passives :integer # passive edges built from this rule + +output: + i-id :integer :key # item for this output specification + o-application :string # applicable application(s) + o-grammar :string # applicable grammar(s) + o-ignore :string # ignore this item flag + o-wf :integer # application-specific grammaticality + o-gc :integer # maximal number of garbage collections + o-derivation :string # expected derivation + o-surface :string # expected surface string + o-tree :string # expected phrase structure tree + o-mrs :string # expected mrs + o-edges :integer # maximal number of edges to build + o-user :string # author of this output specification + o-date :date # creation date + +edge: + e-id :integer :key # unique edge identifier + parse-id :integer :key # parse for this edge + e-label :string # edge label (as in ‘derivation’) + e-type :integer # item type for edge (0 -- 4) + e-status :integer # bit-coded item flags + e-start :integer # start vertex for this edge + e-end :integer # end vertex for this edge + e-score :string # platform-specific figure of merit + e-daughters :string # space-separated list of daughters + e-parents :string # space-separated list of parents + e-alternates :string # alternates packed into this edge + +tree: + parse-id :integer :key + t-version :integer + t-active :integer :key + t-confidence :integer + t-author :string + t-start :date + t-end :date + t-comment :string + +decision: + parse-id :integer :key + t-version :integer + d-state :integer + d-type :integer + d-key :string + d-value :string + d-start :integer + d-end :integer + d-date :date + +preference: + parse-id :integer :key + t-version :integer + result-id :integer + +update: + parse-id :integer :key + t-version :integer + u-matches :integer + u-mismatches :integer + u-new :integer + u-gin :integer + u-gout :integer + u-pin :integer + u-pout :integer + u-in :integer + u-out :integer + +fold: + f-id :integer :key + f-train :integer + f-trains :string + f-test :integer + f-tests :string + f-events :integer + f-features :integer + f-environment :string + f-iterations :integer + f-etime :integer + f-estimation :string + f-accuracy :string + f-extras :string + f-user :string + f-host :string + f-start :date + f-end :date + f-comment :string + +score: + parse-id :integer :key + result-id :integer + score-start :integer + score-end :integer + score-id :integer + learner :string + rank :integer + score :string diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/result b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/result new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/rule b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/rule new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/run b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/run new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/score b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/score new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/set b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/set new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/tree b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/tree new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/update b/tests/regression/skeletons/wh9-vos-sg-oblig-ppip-all-oblig/update new file mode 100644 index 000000000..e69de29bb diff --git a/tests/regression/txt-suites/adv-s-vp-v-min b/tests/regression/txt-suites/adv-s-vp-v-min new file mode 100644 index 000000000..fbf460567 --- /dev/null +++ b/tests/regression/txt-suites/adv-s-vp-v-min @@ -0,0 +1,12 @@ +the cat sleeps +the cat sees the house +the cat sleeps in the house +the cat sleeps there +there the cat sleeps +the cat there sleeps +*the there cat sleeps +the cat sees the house there +the cat sees there the house +the cat there sees the house +*the there cat sees the house +*the cat sees the there house diff --git a/tests/regression/txt-suites/wh-dev-ckt-mini b/tests/regression/txt-suites/wh-dev-ckt-mini new file mode 100644 index 000000000..99ef63079 --- /dev/null +++ b/tests/regression/txt-suites/wh-dev-ckt-mini @@ -0,0 +1,6 @@ +req-ərkənəm igirkej gənin ekək +ine-n-req +req-iγət +umqə nutku lejw tite? +mik-ənti +mik-iγət \ No newline at end of file diff --git a/tests/regression/txt-suites/wh-dev-mini-japanese b/tests/regression/txt-suites/wh-dev-mini-japanese new file mode 100644 index 000000000..337be429c --- /dev/null +++ b/tests/regression/txt-suites/wh-dev-mini-japanese @@ -0,0 +1,10 @@ +Kim-wa nani-o yonda no +Kim-wa nani-o yonda +Sandy-wa Kim-ga nani-o yonda ka sitteiru +dare-ga kuru +dare-ga kuru no +*dare-ga kuru ka +Sandy-wa Kim-ga nani-o yonda no sitteiru +Sandy-wa Kim-ga nani-o yonda sitteiru +*no dare-ga kuru +*ka dare-ga kuru diff --git a/tests/regression/txt-suites/wh-dev-rus b/tests/regression/txt-suites/wh-dev-rus new file mode 100644 index 000000000..49abe7db9 --- /dev/null +++ b/tests/regression/txt-suites/wh-dev-rus @@ -0,0 +1,327 @@ +# Simple intransitive propositions +Иван лежит +Лежит Иван + +# Simple transitive propositions +Иван читает книгу +Читает книгу Иван +Читает Иван книгу +Книгу Иван читает +Книгу читает Иван +Иван книгу читает + +# Question about intransitive subject of matrix clause +Кто идет? +*Кого идет? +*Чему лежит? +*Кто идешь? +*Кто идете? +*Что лежишь? +Что лежит? + +# Question about subject of transitive matrix clause +Кто видит сон? +Кто сон видит? +?Видит кто сон? +?Видит сон кто? +Сон кто видит? +Сон видит кто? +Кто видит Ивана? +*Кого видит Ивана? +Кто видит женщину в книге? + +# Question about object of transitive matrix clause +Что видит Иван? +Кого видит Иван? +*Кто видит Иван? + +# Multiple questions about subject and object of transitive matrix clause +Кто что видит? +Кто видит что? +Что видит кто? +Кого что видит? +*Кто чему видит? +*Кого чему видит? + +# Question about adjunct of intransitive and transitive matrix clause +Иван идет куда? +Куда идет Иван? +Иван куда идет? +?Идет Иван куда? +?Идет куда Иван? +Иван куда идет в книге? +Куда Иван идет в книге? +Куда Иван в книге идет? +Где Иван видел Машу? +Как Иван пишет диссертацию? +Иван как пишет диссертацию? +?Иван пишет как диссертацию? +?Иван пишет диссертацию как? + +# PP-adjuncts +В какой город Иван приехал? +В какой Иван приехал город? +*В Иван приехал какой город? +*В Иван какой приехал город? +*Какого Иван приехал из города? +*Какой город Иван приехал? +*Какому город Иван приехал? +*В какому город Иван приехал? +*В какому городу Иван приехал? +Из какого города Иван приехал? +*Какого города Иван приехал? +Кто и в какой город приехал? +Иван видит женщину в книге. +Иван видит женщину в этой книге. +*Иван видит женщину книге в. +*Иван видит женщину этой в книге. +*Иван видит женщину книге в этой. +В какой книге Иван видит женщину? +*Каких в книгах Иван видит женщину? +*Книге в какой Иван видит женщину? +*Книге какой в Иван видит женщину? +Иван видит женщину в какой книге? +Какой человек в книге видит женщину? +В какой же книге Иван видит женщину? +*В какого книге Иван видит женщину? +*В какой книги Иван видит женщину? + +# Multiple questions about subject and adjunct of intransitive matrix clause +Кто куда идет? +*Кому куда идет? +Куда кто идет? +?Идет кто куда? +?Куда идет кто? +?Идет куда кто? +Кто идет куда? +*Где когда кто что купил? +*Где когда Иван купил книгу? + +# Question about determiner in the object NP in embedded clause +Сколько книг Иван читает? +Сколько Иван книг читает? +*Сколько книгу Иван читает? +Сколько Иван читает книг? +Иван сколько книг читает? +Иван читает сколько книг? +Иван сколько читает книг? +Иван читает книг сколько? + +Который человек приехал? +Какой человек приехал? +Какой приехал человек? +*Какого человек приехал? +*Какому человек приехал? +Какую книгу Иван читает? +Какую Иван читает книгу? +*Какого книгу Иван читает? +Какую книгу читает Иван? +*Какую книга читает Иван? +*Какую книги читает Иван? +Какие книги читает Иван? +*Какие книгу читает Иван? +*Какую сон видит Иван? +Какой сон видит Иван? + + +# Embedded proposition +*Иван спрашивает, что студент лежит +Иван думает, что студент лежит +Иван думает, студент лежит +*Иван спрашивает, студент читает книгу +Иван думает, что студент читает книгу +Думает Иван, что студент читает книгу +*Думает Иван, студент читает книгу что +Иван думает, что читает книгу студент +Иван думает, что книгу читает студент +Иван что студент читает книгу думает +*Иван студент читает книгу думает что +Иван знает, что студент лежит. +Иван знает, студент лежит. + + +# Embedded question about subject of intransitive clause +Иван спрашивает, кто идет +*Иван думает, кто идет? +Спрашивает Иван, кто идет. +Кто идет, Иван спрашивает. +*Иван спрашивает, кому идет. +*Иван спрашивает, кто идешь. +Иван знает, кто идет + + +# Embedded question about object of intransitive clause +Иван спрашивает, кто книгу читает? +Иван спрашивает, кто читает книгу? +Иван спрашивает, что студент читает? +*Иван думает, что студент читает? +Иван спрашивает, какую книгу студент читает +Иван спрашивает, какую студент читает книгу +Иван знает, что читает студент? + +# Embedded question about both subject and object of intransitive clause +Иван спрашивает, кто что видит. +Иван спрашивает, что кто видит. +Иван спрашивает, кто видит что. +Иван спрашивает, что видит кто. +*Иван думает, кто что видит. +Иван знает, кто что видит + + +# Embedded that-clause with question in it +Иван думает, что кто идет? +*Иван спрашивает, что кто идет? +*Иван спрашивает, что что студент читает? +*Иван спрашивает, что студент читает книгу +*Иван спрашивает, что кто что читает? +Иван думает, что кто что читает? +*Иван спрашивает, что где студент лежит? +*Иван спрашивает, что где студент купил книгу? +*Иван спрашивает, что как студент читает книгу? +Иван думает, что Иван где купил эту книгу? +?Иван знает, что кто идет? + +# Questioning adjunct of the embedded clause +Иван спрашивает, где студент лежит +Иван спрашивает, как студент читает книгу? +*Иван думает, как студент читает книгу +Иван знает, где студент лежит? +Иван знает, как студент читает книгу. + +# Negation +Иван не спрашивает, куда идет студент. +Куда идет студент, Иван не спрашивает. +Иван не спрашивает, кто идет +Не спрашивает Иван, кто идет +Кто идет, Иван не спрашивает +Иван не спрашивает, какую книгу студент читает +Иван не знает, куда идет студент. + +# Fronted question about subject, object, or adjunct of embedded clause +?Кто, Иван спрашивает, идет? +?Кто, Иван спрашивает, книгу читает? +?Что, Иван спрашивает, читает студент? +?Где, Иван спрашивает, студент купил книгу? +Где, Иван думает, что студент купил эту книгу? +Где, Иван думает, студент купил эту книгу? +?Где, Иван спрашивает, студент лежит? +Где, я спрашиваю, студент лежит? +Где, Иван думает, студент лежит? +Кто, Иван думает, идет? +Что, Иван думает, студент читает? +Кто в какой город, Иван спрашивает, приехал? +Кто и в какой город,ты спрашиваешь, приехал? +?Где, Иван знает, студент лежит? +?Кто, Иван знает, идет? +?Что, Иван знает, студент читает? + + +# Fronted question from that-clause +*Кто, Иван спрашивает, что идет? +*Где Иван спрашивает что студент купил книгу? +*Где Иван спрашивает что студент лежит? +?Где, Иван точно знает, что студент лежит? +?Где, Иван думает, что студент лежит? +*Кто, Иван спрашивает, что читает книгу? + + +# Multiple fronted questions about subject, object, or adjunct of embedded clause +?Кто, Иван спрашивает, видит что? +?Кто, Иван спрашивает, что видит? +?Кто что, Иван спрашивает, видит? +?Кто куда, Иван спрашивает, идет? +?Где, Иван спрашивает, студент купил книгу? +?Где, Иван спрашивает, студент купил какую книгу? +?Где, Иван спрашивает, студент что купил? +?Где кто что, Иван спрашивает, купил? +?Где кто, Иван спрашивает, что купил? +?Где, Иван спрашивает, кто что купил? +?Кто, Иван спрашивает, что видел? +?Кто Иван спрашивает какую книгу читает? +?Кто Иван спрашивает какую читает книгу? +Иван спрашивает, какую книгу студент читает? +Какую книгу, Иван спрашивает, студент читает? +Какую книгу, Иван спрашивает, читает студент? +Какую, Иван спрашивает, студент читает книгу? +Кто какую книгу, Иван думает, читает? +?Где кто что, Иван знает, что читает? +*Где кто что, Иван знает, читает? +?Какую кто, Иван думает, купил книгу? +?Кто, Иван думает, что видел? +?Кто, Иван думает, видел что? +?Кто, Иван думает, купил какую книгу? +?Кто, Иван точно знает, что видел? +Кто, Иван спрашивает, что видел? + +# Multiple questions and that-clause +*Кто что, Иван спрашивает, что видел? +Кто какую книгу, Иван думает, что читает? +?Кто какую книгу, Иван точно знает, что читает? +?Кто, Иван точно знает, что читает какую книгу? +*Где что Иван спрашивает, что мы видели? +*Как Иван спрашивает, что студент читает эту книгу? +?Кто, Иван думает, что что видел? +?Кто, Иван точно знает, что что видел? +*Кто, Иван спрашивает, что что видел? + +# Question both to the subject of matrix and subj/obj/adj of embedded clause +Кто спрашивает, где мы что видели? +Кто спрашивает, где мы видели какие книги? +Кто спрашивает, где мы видели эти книги? +*Кто спрашивает, что где мы видели эти книги? +Кто спрашивает какие книги мы где видели? +Кто спрашивает эти книги мы где видели? +Кто спрашивает книги мы где видели? +*Кто думает, где мы что видели? +*Кто думает, где мы видели какие книги? +*Кто думает, где мы видели эти книги? +*Кто думает, что где мы видели эти книги? +*Кто думает какие книги мы где видели? +*Кто думает эти книги мы где видели? +*Кто думает книги мы где видели? +Кто знает, где мы что видели? +*Кто знает, что где мы что видели? + + +# Second position question clitic in embedded questions +Ты спрашиваешь, видит ли Иван Машу? +*Ты спрашиваешь, что видит ли Иван? +*Ты спрашиваешь, ли видит Иван Машу? +*Ты спрашиваешь, что видит ли Иван? +*Ты спрашиваешь, ли видит Иван Машу? +*Ты думаешь, видит ли Иван Машу? +*Кто ли идет +*Что ли Иван видит +Ты не спрашиваешь, читает ли Иван эту книгу? +Ты спрашиваешь, читает ли Иван эту книгу? +Какую книгу, ты спрашиваешь, читает ли Иван? +Ты знаешь, видит ли Иван Машу? +Знаешь ли ты, видит ли Иван Машу? +*Думаешь ли ты, видит ли Иван Машу? +Спрашиваешь ли ты, видит ли Иван Машу? +Ты не знаешь, видит ли Иван Машу +*Ты знаешь, что видит ли Иван Машу + + +# Infinitival embedded questions +Иван спрашивает, как читать эту книгу +Иван спрашивает, как читать какую книгу +Иван спрашивает, как что читать +Иван спрашивает, как читать что +Иван спрашивает, как читать книгу +*Иван думает, как читать эту книгу +Иван знает, как читать эту книгу + +# Coordination +Где и когда Иван купил книгу? +Кого и что Иван видит? +*Кого что Иван видит? +*Кого и чему Иван видит? +*Кому и чему Иван видит? +Кого Иван видит и что Иван слышит? +*Кого Иван видит и чему Иван слышит? +*Кому Иван видит и чему Иван слышит? +Кого видит Иван и что слышала Маша? +Кого видит Иван и что слышит? +*Кого видел Иван и что слышала? +Иван лежит и читает книгу. \ No newline at end of file diff --git a/tests/regression/txt-suites/wh-eng-dev b/tests/regression/txt-suites/wh-eng-dev new file mode 100644 index 000000000..d520ebf4f --- /dev/null +++ b/tests/regression/txt-suites/wh-eng-dev @@ -0,0 +1,68 @@ +the cats chase the dogs +the dogs sleep + +do the cats chase the dogs? +do the dogs sleep? +Do I think that the cats chase the dogs? + +who sleeps? +*sleep who? + +who chases the dogs? +*who do chase the dog? + +what do the dogs chase? +*what the dogs chase? + +where do the dogs sleep? +*where the dogs sleep? + +where do the dogs chase the cats? +*the cats chase the dogs where? +*do the cats chase the dogs where? + +Who chases what? +*Who what chases? +*Who do chase what? +*Who what do chase? + +Who chases what where? +*Who what where chases? + +Which cat sleeps? +*Which sleeps cat? +Which cat chases the dogs? + +Which dogs do the cats chase? +*Which do the cats chase dogs? +*Which dogs the cats chase + +In which house do the cats sleep? +Which house do the cats sleep in? +*In which do the cats sleep house +*In which house the cats sleep? + +I think that the cats chase the dogs + +I wonder who sleeps +*I wonder who do sleep + +I wonder what the cats chase +*I wonder what do the cats chase + +Who do I think chases the dogs? +*Who I think the cats chase? +*Who I think sleeps? +*Who do I wonder chases the dogs? + +What do I think the cats chase? +What do I wonder whether the cats chase? +*What do I wonder that the cats chase? + + +Where do I think the cats sleep? +In which house do I think the cats sleep? +Where do I wonder whether the cats sleep? +Which house do I think the cats sleep in? +*Which do I think the cats sleep in house? +*Which do I think the cats sleep house in? \ No newline at end of file diff --git a/tests/regression/txt-suites/wh-svo-sg-oblig-min b/tests/regression/txt-suites/wh-svo-sg-oblig-min new file mode 100644 index 000000000..122f52fac --- /dev/null +++ b/tests/regression/txt-suites/wh-svo-sg-oblig-min @@ -0,0 +1,23 @@ +cat sleeps +*sleeps cat +cat sees house +*cat house sees +who sleeps? +*sleeps who? +what cat sees? +*cat sees what? +*cat what sees? +cat sleeps in house +where cat sleeps? +*cat sleeps where? +*where sleeps cat? +*cat where sleeps? +cat sees cat in house. +what cat sees in house? +*cat sees what in house? +*who sees what? +*who sleeps where? +*what what sees? +*who where sleeps? +*where who sleeps? +*sleeps who where? \ No newline at end of file diff --git a/tests/regression/txt-suites/wh-yux-dev b/tests/regression/txt-suites/wh-yux-dev new file mode 100644 index 000000000..9a4910120 --- /dev/null +++ b/tests/regression/txt-suites/wh-yux-dev @@ -0,0 +1,24 @@ +kin mit-gele qamie? +kin mit-gele qamie-m? +*kin mit-ek qamie-tem? +*kin mit-ek qamie? +*kin-ek mit-gele qamie? +kin met-gele edies-m? +kin met-gele edies? +*kin-ek met-gele edies? +*kin-ek met-gele edies-l +*kin met-ek edies-tem? +kin-ek jaqte-l? +*kin-tek jaqte? +*kin jaqte-j? +*kin jaqte? +lem-tek kesī-me +*lem-tek kesī-k +*lem kesī-k +*lem-gele kesī-mek? +emde noŋōn kude-ōk? +noŋōn emde kude-ōk +*noŋōn emde kude-j? +*noŋōn emde-tek kude-l? +ejrie-nun-k? +ejrie-nun-jek? \ No newline at end of file diff --git a/tests/regression/txt-suites/wh10-svo-multi-all-oblig-min b/tests/regression/txt-suites/wh10-svo-multi-all-oblig-min new file mode 100644 index 000000000..32ec781cb --- /dev/null +++ b/tests/regression/txt-suites/wh10-svo-multi-all-oblig-min @@ -0,0 +1,10 @@ +who sleeps +*sleeps who +*who sees what +who what sees +*sees who what +what who sees +where who sleeps +*who sleeps where +*who where sleeps +*sleeps who where diff --git a/tests/regression/txt-suites/wh11-svo-multi-one-oblig b/tests/regression/txt-suites/wh11-svo-multi-one-oblig new file mode 100644 index 000000000..92d77e713 --- /dev/null +++ b/tests/regression/txt-suites/wh11-svo-multi-one-oblig @@ -0,0 +1,10 @@ +who sleeps +*sleeps who +who sees what +who what sees +*sees who what +what who sees +where who sleeps +who sleeps where +who where sleeps +*sleeps who where diff --git a/tests/regression/txt-suites/wh12-vos-sg-oblig-pied-adp-opt b/tests/regression/txt-suites/wh12-vos-sg-oblig-pied-adp-opt new file mode 100644 index 000000000..b258e9c79 --- /dev/null +++ b/tests/regression/txt-suites/wh12-vos-sg-oblig-pied-adp-opt @@ -0,0 +1,12 @@ +which cat sleeps? +*cat which sleeps? +*sleeps which cat? +*sleeps cat which? +which house sees the cat? +*the house which cat sees? +*sees the cat which house? +*which sees the cat house? +in which house sleeps the cat? +which house sleeps the cat in? +*which in house sleeps the cat? +*which house in sleeps the cat? \ No newline at end of file diff --git a/tests/regression/txt-suites/wh13-oblig-particle-osv b/tests/regression/txt-suites/wh13-oblig-particle-osv new file mode 100644 index 000000000..95bf47051 --- /dev/null +++ b/tests/regression/txt-suites/wh13-oblig-particle-osv @@ -0,0 +1,20 @@ +Q who iv +Q what who tv +*Q iv who +*Q what tv who +Q where n1 iv +Q n1 iv where +Q n1 where iv +*who iv +*who iv Q +*what who tv +*what who tv Q +*who Q iv +*what who Q tv +*where n1 iv +*ni iv where +*n1 where iv +*where n1 iv Q +*n1 iv where Q +*n1 Q where iv +*n1 where Q iv diff --git a/tests/regression/txt-suites/wh14-oblig-imposs-part b/tests/regression/txt-suites/wh14-oblig-imposs-part new file mode 100644 index 000000000..d9a19a8a6 --- /dev/null +++ b/tests/regression/txt-suites/wh14-oblig-imposs-part @@ -0,0 +1,6 @@ +Q-oblig who iv +Q-oblig what who tv +*Q-imp who iv +*Q-imp what who tv +Q-imp n1 iv +Q-oblig n1 iv diff --git a/tests/regression/txt-suites/wh15-insitu-oblig-part-vfinal b/tests/regression/txt-suites/wh15-insitu-oblig-part-vfinal new file mode 100644 index 000000000..9051e653d --- /dev/null +++ b/tests/regression/txt-suites/wh15-insitu-oblig-part-vfinal @@ -0,0 +1,20 @@ +n1 iv +*iv n1 +n1 Q iv +*n1 iv Q +*Q n1 iv +n1 n2 tv +*n1 tv n2 +*tv n1 n2 +n1 Q n2 tv +*Q n1 n2 tv +*n1 n2 Q tv +*n1 n2 tv Q +who Q iv +*who iv +who Q what tv +*who what Q tv +*Q who iv +*Q who what tv +*who what tv Q +where Q n1 iv diff --git a/tests/regression/txt-suites/wh16-morph-sep-opt b/tests/regression/txt-suites/wh16-morph-sep-opt new file mode 100644 index 000000000..f50df1ce9 --- /dev/null +++ b/tests/regression/txt-suites/wh16-morph-sep-opt @@ -0,0 +1,9 @@ +n iv +n tv n +n iv-PQ +n tv-PQ n +*n iv-WHQ +*n tv-WHQ n +who iv +who iv-WHQ +*who iv-PQ diff --git a/tests/regression/txt-suites/wh17-morph-sep-oblig b/tests/regression/txt-suites/wh17-morph-sep-oblig new file mode 100644 index 000000000..305270258 --- /dev/null +++ b/tests/regression/txt-suites/wh17-morph-sep-oblig @@ -0,0 +1,9 @@ +n iv +n tv n +n iv-PQ +n tv-PQ n +*n iv-WHQ +*n tv-WHQ n +*who iv +who iv-WHQ +*who iv-PQ diff --git a/tests/regression/txt-suites/wh18-aux-inv-both b/tests/regression/txt-suites/wh18-aux-inv-both new file mode 100644 index 000000000..e7b6cede0 --- /dev/null +++ b/tests/regression/txt-suites/wh18-aux-inv-both @@ -0,0 +1,11 @@ +do the dogs sleep +*I wonder whether do the dogs sleep +I wonder whether the dogs sleep +who do sleep +*who sleep +I wonder who do sleep +*I wonder who sleep +what do the dogs chase +*what the dogs chase +I wonder what do the dogs chase +*I wonder what the dogs chase diff --git a/tests/regression/txt-suites/wh19-cfocus-marking b/tests/regression/txt-suites/wh19-cfocus-marking new file mode 100644 index 000000000..39e7b87a6 --- /dev/null +++ b/tests/regression/txt-suites/wh19-cfocus-marking @@ -0,0 +1,10 @@ +CN IV +CN CF IV +who IV +CN what TV +CN what CF TV +who CF IV +who CF CN TV +CN CN TV +CN CF CN TV +CN CN CF TV diff --git a/tests/regression/txt-suites/wh2-sov-sg-oblig-min b/tests/regression/txt-suites/wh2-sov-sg-oblig-min new file mode 100644 index 000000000..7196b0f9a --- /dev/null +++ b/tests/regression/txt-suites/wh2-sov-sg-oblig-min @@ -0,0 +1,13 @@ +cat house sees +*cat sees house +what cat sees? +*cat sees what? +*cat what sees? +cat cat sees in house +what cat sees in house? +*cat sees cat in house +*cat what sees in house? +*cat sees what in house? +*who sees what? +*sees what who? +*what who sees? \ No newline at end of file diff --git a/tests/regression/txt-suites/wh20-no-cfocus-marking b/tests/regression/txt-suites/wh20-no-cfocus-marking new file mode 100644 index 000000000..14c155718 --- /dev/null +++ b/tests/regression/txt-suites/wh20-no-cfocus-marking @@ -0,0 +1,10 @@ +CN IV +CN CF IV +who IV +CN what TV +*CN what CF TV +*who CF IV +*who CF CN TV +CN CN TV +CN CF CN TV +CN CN CF TV diff --git a/tests/regression/txt-suites/wh21-embed-insitu b/tests/regression/txt-suites/wh21-embed-insitu new file mode 100644 index 000000000..b40266834 --- /dev/null +++ b/tests/regression/txt-suites/wh21-embed-insitu @@ -0,0 +1,19 @@ +cat sleeps +*sleeps cat +cat sees house +*cat house sees +who sleeps? +*sleeps who? +what cat sees? +cat sees what? +*cat what sees? +cat sleeps in house +where cat sleeps? +cat sleeps where? +cat where sleeps? +who sees what? +*who what sees? +cat asks who sleeps +cat asks who sees what +cat asks cat sees what +cat asks what cat sees diff --git a/tests/regression/txt-suites/wh22-no-multi-ques b/tests/regression/txt-suites/wh22-no-multi-ques new file mode 100644 index 000000000..29d022b64 --- /dev/null +++ b/tests/regression/txt-suites/wh22-no-multi-ques @@ -0,0 +1,22 @@ +tv the n1 the n2 +who tv the n2? +tv who the n2? +tv the n1 what? +what tv the n1? +*tv who what? +*who tv what? +*what tv who? +where tv the n1 the n2? +tv the n1 the n2 where? +*who tv the n2 where? +which n1 tv the n2? +*which n1 tv what? +ask the n1 who iv +ask the n1 iv who +ask the n1 who tv the n2 +*ask the n1 who tv what +*ask the n1 who tv the n2 where +ask the n1 where iv the n2 +who ask the n1 iv +*who ask the n1 tv what +who ask the n1 tv the n2 diff --git a/tests/regression/txt-suites/wh23-quesverbs b/tests/regression/txt-suites/wh23-quesverbs new file mode 100644 index 000000000..f6259a9eb --- /dev/null +++ b/tests/regression/txt-suites/wh23-quesverbs @@ -0,0 +1,5 @@ +nǐ gànmá +ke trò +vasia +ʔeʔenət +čem diff --git a/tests/regression/txt-suites/wh24-particles-embed b/tests/regression/txt-suites/wh24-particles-embed new file mode 100644 index 000000000..b58776e4a --- /dev/null +++ b/tests/regression/txt-suites/wh24-particles-embed @@ -0,0 +1,14 @@ +cat who sleeps Q2 asks +cat who what sees Q2 asks +cat cat what sees Q2 asks +cat cat house sees thinks +cat cat house sees knows +*cat cat house sees asks +*cat cat house sees Q2 asks +*cat cat house sees Q2 knows +*cat cat house sees Q2 thinks +cat cat what sees Q2 knows +cat sleeps Q1 +*cat what sees Q1? +*cat cat what sees Q1 asks +*cat what sees Q2 diff --git a/tests/regression/txt-suites/wh25-no-multi-insitu-morph b/tests/regression/txt-suites/wh25-no-multi-insitu-morph new file mode 100644 index 000000000..7554b11e3 --- /dev/null +++ b/tests/regression/txt-suites/wh25-no-multi-insitu-morph @@ -0,0 +1,12 @@ +tv the n2 the n1 +tv what the n1? +tv the n2 who? +*who tv the n2? +where iv the n1? +iv the n1 where? +iv where the n1? +*who iv? +iv who +*iv who where? +*tv what who? +iv-Q who? diff --git a/tests/regression/txt-suites/wh3-vso-sg-oblig-det b/tests/regression/txt-suites/wh3-vso-sg-oblig-det new file mode 100644 index 000000000..c913e437d --- /dev/null +++ b/tests/regression/txt-suites/wh3-vso-sg-oblig-det @@ -0,0 +1,26 @@ +sleeps cat the +*sleeps the cat +*the cat sleeps +*cat the sleeps +sees cat the house the +*sees the cat the house +*cat the sees house the +*cat the house the sees +what sees cat the? +*who sees which house? +*which house sees who? +*sees cat the what? +*sees what cat the? +*what the sees cat the? +house which sees cat the? +*which house sees cat the? +*sees house which cat the? +*sees cat the house which? +sleeps cat the in house the +sleeps cat in house the the +cat which sees cat the in house the? +what sees cat the in house the? +who sleeps in house the? +*sleeps who in house the? +*sees cat the what in house the? +*sees cat the what house the in? diff --git a/tests/regression/txt-suites/wh4-free-sg-oblig-min b/tests/regression/txt-suites/wh4-free-sg-oblig-min new file mode 100644 index 000000000..40c4b1358 --- /dev/null +++ b/tests/regression/txt-suites/wh4-free-sg-oblig-min @@ -0,0 +1,11 @@ +cat sleeps +cat sees house +who sleeps? +what cat sees? +sleeps cat +sees cat house +house sees cat +house cat sees +*sleeps who? +*sees what cat? +*sees who house? diff --git a/tests/regression/txt-suites/wh5-free-sg-oblig-det b/tests/regression/txt-suites/wh5-free-sg-oblig-det new file mode 100644 index 000000000..3beae814d --- /dev/null +++ b/tests/regression/txt-suites/wh5-free-sg-oblig-det @@ -0,0 +1,32 @@ +the cat sleeps +the cat sees the house +who sleeps? +what the cat sees? +sleeps the cat +sees the cat the house +the house sees the cat +the house the cat sees +*sleeps who? +*sees what cat? +*sees who house? +*cat sleeps +*cat the sleeps +*cat sleeps the +*cat sees house +*cat the sees the house +*cat the sees house the +*the cat sees house the +*what cat the sees? +*sleeps cat the +*sees cat the house the +*house the cat sees +*house the cat the sees +which cat sleeps? +*cat which sleeps? +*sleeps which cat? +*sleeps cat which? +which house the cat sees? +*the house which cat sees? +*sees the cat which house? +*which which cat sleeps? +*which the cat sleeps? diff --git a/tests/regression/txt-suites/wh6-svo-sg-opt b/tests/regression/txt-suites/wh6-svo-sg-opt new file mode 100644 index 000000000..7cb38babc --- /dev/null +++ b/tests/regression/txt-suites/wh6-svo-sg-opt @@ -0,0 +1,15 @@ +cat sleeps +*sleeps cat +cat sees house +*cat house sees +who sleeps? +*sleeps who? +what cat sees? +cat sees what? +*cat what sees? +cat sleeps in house +where cat sleeps? +cat sleeps where? +cat where sleeps? +who sees what? +*who what sees? diff --git a/tests/regression/txt-suites/wh7-sov-sg-opt b/tests/regression/txt-suites/wh7-sov-sg-opt new file mode 100644 index 000000000..8bd7598e6 --- /dev/null +++ b/tests/regression/txt-suites/wh7-sov-sg-opt @@ -0,0 +1,15 @@ +cat sleeps +*sleeps cat +*cat sees house +cat house sees +who sleeps? +*sleeps who? +what cat sees? +*cat sees what? +cat what sees? +cat sleeps in house +where cat sleeps? +cat sleeps where? +cat where sleeps? +*who sees what? +who what sees? diff --git a/tests/regression/txt-suites/wh8-ovs-insitu b/tests/regression/txt-suites/wh8-ovs-insitu new file mode 100644 index 000000000..a2187d09f --- /dev/null +++ b/tests/regression/txt-suites/wh8-ovs-insitu @@ -0,0 +1,17 @@ +*cat sleeps +sleeps cat +house sees cat +*cat house sees +*who sleeps? +sleeps who? +*what cat sees? +*cat what sees? +sleeps cat in house +where sleeps cat? +*cat sleeps where? +*cat where sleeps? +who sees what? +*who what sees? +what sees cat +what sees who +*sees who what diff --git a/tests/regression/txt-suites/wh9-vos-sg-oblig-ppip-all-oblig b/tests/regression/txt-suites/wh9-vos-sg-oblig-ppip-all-oblig new file mode 100644 index 000000000..ab1acda7e --- /dev/null +++ b/tests/regression/txt-suites/wh9-vos-sg-oblig-ppip-all-oblig @@ -0,0 +1,36 @@ +*the cat sleeps +*the cat sees the house +who sleeps? +*what the cat sees? +sleeps the cat +sees the cat the house +*the house sees the cat +*the house the cat sees +*sleeps who? +*sees what cat? +*sees who house? +*cat sleeps +*cat the sleeps +*cat sleeps the +*cat sees house +*cat the sees the house +*cat the sees house the +*the cat sees house the +*what cat the sees? +*sleeps cat the +*sees cat the house the +*house the cat sees +*house the cat the sees +which cat sleeps? +*cat which sleeps? +*sleeps which cat? +*sleeps cat which? +which house sees the cat ? +*the house which cat sees? +*sees the cat which house? +*which which cat sleeps? +*which the cat sleeps? +*which sees the cat house? +in which house sleeps the cat? +*in which sleeps the cat house? +*in sleeps the cat which house?