From 63f4233fb8d4f2a1708239f2690a16ce4e502800 Mon Sep 17 00:00:00 2001 From: Felix Friese <ffriese@techfak.uni-bielefeld.de> Date: Wed, 8 Feb 2017 13:58:57 +0100 Subject: [PATCH] team hypnodisc: fixed orderGrammar --- psGrammar/exercise/team_hypnodisc/takeOrder.jsgf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/psGrammar/exercise/team_hypnodisc/takeOrder.jsgf b/psGrammar/exercise/team_hypnodisc/takeOrder.jsgf index 57e46373..91567c51 100644 --- a/psGrammar/exercise/team_hypnodisc/takeOrder.jsgf +++ b/psGrammar/exercise/team_hypnodisc/takeOrder.jsgf @@ -1,6 +1,7 @@ #JSGF V1.0; grammar ToBI_takeOrder; -public <order> = [tobi] <cmd> [tobi]; -<cmd> = ([i <wount> [to order]] | bring me a | i want a) <drink>; +public <order> = [<robot>] <cmd> [<robot>]; +<robot> = (tobi | biron | robot); +<cmd> = [((i <wount> [to order]) | ((bring | fetch) me))] [a] <drink>; <wount> = ( would like | want ); public <drink> = ( coke | beer | pringles ); -- GitLab