Skip to content

Commit

Permalink
update to 5.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias committed Oct 31, 2014
1 parent b22ddfa commit c884a07
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions src/java_test/relex/test/TestRelEx.java
Original file line number Diff line number Diff line change
Expand Up @@ -1301,10 +1301,9 @@ public boolean test_inquisitives()
"_subj(sell, you)\n");

rc &= test_sentence ("To what do we owe the pleasure?",
"_quantity(do, what)\n" +
"_iobj(owe, do)\n" +
"to(owe, _$qVar)\n" +
"_obj(owe, pleasure)\n" +
"_subj(owe, we)\n");
"_subj(owe, we)\n");

rc &= test_sentence ("Who did you sell the children to?",
"to(sell, to)\n" +
Expand Down Expand Up @@ -1362,8 +1361,8 @@ public boolean test_inquisitives()
"_predadj(you, mad)\n");

rc &= test_sentence ("Is the book under the table?",
"_pobj(under, table)\n" +
"_psubj(under, book)\n");
"under(book, table)\n" +
"_subj(be, book)\n");

rc &= test_sentence ("Does he seem mad?",
"_to-be(seem, mad)\n" +
Expand Down Expand Up @@ -1498,14 +1497,12 @@ public boolean test_inquisitives()
"_subj(_%copula, party)\n");

rc &= test_sentence ("Why do you live?",
"_%because(live, _$qVar)\n" +
"_subj(live, you)\n");

rc &= test_sentence ("Why do you like terrible music?",
"_%because(like, _$qVar)\n" +
"_obj(like, music)\n" +
"_subj(like, you)\n" +
"_amod(music, terrible)\n");
"_amod(music, terrible)\n");

rc &= test_sentence ("Why are you such a fool?",
"_obj(be, fool)\n" +
Expand All @@ -1516,7 +1513,8 @@ public boolean test_inquisitives()
"_subj(sleep, you)\n");

rc &= test_sentence ("How was the party?",
"_subj(_$qVar, party)\n");
"how(_%copula, _$qVar)\n" +
"_subj(_%copula, party)\n");

rc &= test_sentence ("How is your food?",
"_poss(food, you)\n" +
Expand Down Expand Up @@ -1655,9 +1653,8 @@ public boolean test_inquisitives()

rc &= test_sentence ("Why did you give him the money?",
"_iobj(give, him)\n" +
"_%because(give, _$qVar)\n" +
"_obj(give, money)\n" +
"_subj(give, you)\n");
"_obj(give, money)\n" +
"_subj(give, you)\n");

rc &= test_sentence ("Why are you so stupid?",
"_advmod(stupid, so)\n" +
Expand Down

0 comments on commit c884a07

Please sign in to comment.