SCM Repository
Annotation of /sml/trunk/src/cm/main/stdcfg.sml
Parent Directory
|
Revision Log
Revision 344 - (view) (download)
1 : | blume | 276 | (* |
2 : | * CM parameters that are configurable via shell-environment variables. | ||
3 : | * | ||
4 : | * Copyright (c) 1999 by Lucent Technologies, Bell Laboratories. | ||
5 : | * | ||
6 : | * author: Matthias Blume (blume@cs.princeton.edu) | ||
7 : | *) | ||
8 : | structure StdConfig = struct | ||
9 : | local | ||
10 : | val bool = EnvConfig.new Bool.fromString | ||
11 : | val int = EnvConfig.new Int.fromString | ||
12 : | in | ||
13 : | val verbose = bool ("VERBOSE", true) | ||
14 : | blume | 344 | val debug = bool ("DEBUG", false) |
15 : | val keep_going = bool ("KEEP_GOING", false) | ||
16 : | blume | 276 | |
17 : | val parse_caching = int ("PARSE_CACHING", 100) | ||
18 : | end | ||
19 : | end |
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |