diff options
| author | aarne <aarne@chalmers.se> | 2010-05-08 13:54:38 +0000 |
|---|---|---|
| committer | aarne <aarne@chalmers.se> | 2010-05-08 13:54:38 +0000 |
| commit | abfda7dd48079418b91208292e4897d68cb699f3 (patch) | |
| tree | 852b6f9c49aeefc3eed3ee4f9357dc6768688b73 | |
| parent | 4ecc586a2d665779ef6396e4260c83d9c1aa612c (diff) | |
spacing of German numerals
| -rw-r--r-- | src/compiler/GF/Compile/Concrete/Compute.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/compiler/GF/Compile/Concrete/Compute.hs b/src/compiler/GF/Compile/Concrete/Compute.hs index 9c016116b..44a6bfad1 100644 --- a/src/compiler/GF/Compile/Concrete/Compute.hs +++ b/src/compiler/GF/Compile/Concrete/Compute.hs @@ -297,7 +297,12 @@ computeTermOpt rec gr = comput True where _ -> return p compSelect g (S t' v') = case v' of - FV vs -> mapM (\c -> comp g (S t' c)) vs >>= returnC . variants + FV vs -> mapM (\c -> comp g (S t' c)) vs >>= returnC . variants + +---- S (T i cs) e -> prawitz g i (S t') cs e -- AR 8/7/2010 sometimes better +---- S (V i cs) e -> prawitzV g i (S t') cs e -- sometimes much worse + + _ -> case t' of FV ccs -> mapM (\c -> comp g (S c v')) ccs >>= returnC . variants |
