From 5c5f63a48d7a0e40c0c526ccb5bd7fed2dd4450d Mon Sep 17 00:00:00 2001 From: bringert Date: Sat, 24 Mar 2007 15:48:29 +0000 Subject: [PATCH] Shrunk srg0005 --- test/srg/srg0005/srg0005.gf | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/test/srg/srg0005/srg0005.gf b/test/srg/srg0005/srg0005.gf index 19a9701ca..4d2b39440 100644 --- a/test/srg/srg0005/srg0005.gf +++ b/test/srg/srg0005/srg0005.gf @@ -1,13 +1,9 @@ -cat S; X; E; +cat S; E; -fun s : S ; -fun es : E -> S -> S ; -fun sx : S -> X -> S ; -fun x : X ; +fun es : E -> S ; +fun sx : S -> S ; fun e : E ; -lin s = { s = "s" } ; -lin es e s = { s = e.s ++ s.s } ; -lin sx s x = { s = s.s ++ x.s } ; -lin x = { s = "x" } ; +lin es e = { s = e.s } ; +lin sx s = { s = s.s ++ "x" } ; lin e = { s = "e" } ;