From c5ae2b139ffa819aafc1c1c896b066d3495519e0 Mon Sep 17 00:00:00 2001 From: "julia.niermann" <jniermann@techfak.uni-bielefeld.de> Date: Wed, 1 May 2019 17:12:35 +0200 Subject: [PATCH] Add option to order two things --- psGrammar/tasks/restaurant/order.jsgf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/psGrammar/tasks/restaurant/order.jsgf b/psGrammar/tasks/restaurant/order.jsgf index 6ec11840..1d9bcc74 100644 --- a/psGrammar/tasks/restaurant/order.jsgf +++ b/psGrammar/tasks/restaurant/order.jsgf @@ -3,8 +3,9 @@ grammar ordering; public <restaurant> = ([tobi] [(i want) | (bring me)] [one | a ] <objects> [please]); -<objects> = (<drinks> | <combo> | <food>); +<objects> = (<drinks> | <combo> | <food> | <comboTwo>); <combo> = ((<orderings> [and | with] <orderings> [and | with] <orderings>)); +<comboTwo> = ((<orderings> [and | with] <orderings>)); <orderings> = (<drinks> | <food>); <food> = ( (lemon) | (orange) | (bouillon) | (corn) | (noodles) | (pepper) | (salt) | (sauerkraut) |(seasoning_mix) | (tomatoes) | (cereal_bar_chocolate) | (cereal_bar_chocolate_banana) | (cracker) | (fruit_bar_apple) | (fruit_bar_forest_fruit) | (get_it) | (nut_fruit_mix) | (peanut_bits)); -- GitLab