summaryrefslogtreecommitdiff
path: root/examples/big/postedit.hs
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-06-25 16:54:35 +0000
committeraarne <aarne@cs.chalmers.se>2008-06-25 16:54:35 +0000
commite9e80fc389365e24d4300d7d5390c7d833a96c50 (patch)
treef0b58473adaa670bd8fc52ada419d8cad470ee03 /examples/big/postedit.hs
parentb96b36f43de3e2f8b58d5f539daa6f6d47f25870 (diff)
changed names of resource-1.3; added a note on homepage on release
Diffstat (limited to 'examples/big/postedit.hs')
-rw-r--r--examples/big/postedit.hs49
1 files changed, 0 insertions, 49 deletions
diff --git a/examples/big/postedit.hs b/examples/big/postedit.hs
deleted file mode 100644
index 628b64752..000000000
--- a/examples/big/postedit.hs
+++ /dev/null
@@ -1,49 +0,0 @@
-import Char
-import System
-
-infile = "BigLexEng.gf"
-tmp = "tm"
-
-main = do
- writeFile tmp ""
- s <- readFile infile
- mapM_ (appendFile tmp . mkTwo) $ lines s --- $ chop s
- system "cp BigLexEng.gf bak"
- system "mv tm BigLexEng.gf"
-
-chop s = case s of
- ';':cs -> ";\n"++chop cs
- c:cs -> c:chop cs
- _ -> s
-
-mkTwo s = case words s of
- lin:tie:eq:"dirV3":tie_V:ws ->
- let prep = case reverse (takeWhile (/='_') (reverse tie)) of
- "loc" -> "in" ---
- p -> p
- in unwords $
- [lin,tie,eq,"dirV3",show (take (length tie_V - 2) tie_V),show prep] ++
- ws ++ ["\n"]
- _ -> s ++ "\n"
-
-mkOne s = case words s of
- lin:a2:eq:pa2:ws | take 6 pa2 == "prepA2" ->
- unwords $ [lin,a2,eq,"prepA2"] ++ ws ++ ["\n"]
- lin:a2:eq:pa2:ws | take 6 pa2 == "prepV2" ->
- unwords $ [lin,a2,eq,"prepV2"] ++ ws ++ ["\n"]
- lin:v2:eq:"mkV2":v:_:ws ->
- unwords $ [lin,v2,eq,"mkV2",(read v ++ "_V")] ++ ws ++ ["\n"]
- lin:v2:eq:"mkV3":v:_:ws ->
- unwords $ [lin,v2,eq,"dirV3",(read v ++ "_V")] ++ ws ++ ["\n"]
- lin:a2:eq:pa2:ws | take 4 pa2 == "mkV2" ->
- unwords $ [lin,a2,eq,"mkV2"] ++ ws ++ ["\n"]
- lin:a2:eq:pa2:ws | take 6 pa2 == "prepN2" ->
- unwords $ [lin,a2,eq,"prepN2"] ++ ws ++ ["\n"]
- lin:a2:eq:pa2:ws | take 4 pa2 == "mkV3" ->
- unwords $ [lin,a2,eq,"mkV3"] ++ ws ++ ["\n"]
-
- lin:v2:eq:"irreg":v:_:ws ->
- unwords $ [lin,v2,eq,"dirV2",(read v ++ "_V")] ++ ws ++ ["\n"]
-
-
- _ -> s ++ "\n"