remove the obsolete testsuite/srg directory

This commit is contained in:
krasimir
2009-05-20 12:39:32 +00:00
parent 0b2e093416
commit 878ad278b5
6 changed files with 0 additions and 47 deletions

View File

@@ -1,7 +0,0 @@
cat S;
fun f : S -> S ;
fun g : S ;
lin f s = { s = s.s } ;
lin g = { s = "g" } ;

View File

@@ -1,9 +0,0 @@
cat S; E;
fun s : S ;
fun es : E -> S -> S ;
fun e : E ;
lin s = { s = "s" } ;
lin es e s = { s = e.s ++ s.s } ;
lin e = { s = [] } ;

View File

@@ -1,11 +0,0 @@
-- a grammar with an indirect cycle
cat S; G;
fun f : S ;
fun fg : G -> S ;
fun gf : S -> G ;
lin f = { s = "f" } ;
lin fg x = x;
lin gf x = x;

View File

@@ -1,9 +0,0 @@
cat S; E;
fun f : E -> S ;
fun g : S -> S ;
fun e : E ;
lin f e = { s = e.s } ;
lin g s = { s = s.s ++ "x" } ;
lin e = { s = "e" } ;

View File

@@ -1,7 +0,0 @@
cat S;
fun f : S -> S ;
g : S ;
lin f x = { s = x.s ++ "f" } ;
g = { s = "s" } ;

View File

@@ -1,4 +0,0 @@
cat S;
fun f : S;
lin f = { s = variants {"a"; "b"} ++ variants {"c"; "d"} ++ variants {"e"; "f"} ++ variants { "g";"h";} } ;