Line 0
Link Here
|
|
|
1 |
--- phalanx.c.orig Fri Jul 18 13:36:59 2003 |
2 |
+++ phalanx.c Fri Jul 18 13:38:52 2003 |
3 |
@@ -11,30 +11,30 @@ |
4 |
|
5 |
void badoptions(void) |
6 |
{ |
7 |
-printf("\ |
8 |
-Usage: phalanx [options] [<moves> <minutes> [<increment in seconds>]] |
9 |
- phalanx [options] [<seconds per move>] |
10 |
- phalanx bench |
11 |
- phalanx bcreate [options] |
12 |
-Options: -t <transposition table size in kilobytes> |
13 |
- -f <fixed search time in seconds> |
14 |
- -x <+/-> xboard mode on/off default: on |
15 |
- -p <+/-> permanent brain on/off default: off |
16 |
- -s <+/-> show thinking on/off default: off |
17 |
- -c <+/-> cpu time default: off |
18 |
- -o <+/-> polling input default: on |
19 |
- -b <+/-> opening book default: on |
20 |
- -r <resign value in centipawns> default: 0 (no resigning) |
21 |
- -e <easy level 0...100> default: 0 (best play) |
22 |
- -l <+/-> learning on/off default: on |
23 |
- -v print version and exit |
24 |
- -P <primary book directory> |
25 |
- -S <secondary book directory> |
26 |
- -L <learning file directory> |
27 |
- -g <log file name> |
28 |
-Examples: phalanx -c+ -s+ -o - -x- -f 60 -t4000 |
29 |
- xboard -fcp \"phalanx -l+ -r800\" |
30 |
-"); |
31 |
+printf("\n" |
32 |
+"Usage: phalanx [options] [<moves> <minutes> [<increment in seconds>]]\n" |
33 |
+ "phalanx [options] [<seconds per move>]\n" |
34 |
+ "phalanx bench\n" |
35 |
+ "phalanx bcreate [options]\n" |
36 |
+"Options: -t <transposition table size in kilobytes>\n" |
37 |
+ "-f <fixed search time in seconds>\n" |
38 |
+ "-x <+/-> xboard mode on/off default: on\n" |
39 |
+ "-p <+/-> permanent brain on/off default: off\n" |
40 |
+ "-s <+/-> show thinking on/off default: off\n" |
41 |
+ "-c <+/-> cpu time default: off\n" |
42 |
+ "-o <+/-> polling input default: on\n" |
43 |
+ "-b <+/-> opening book default: on\n" |
44 |
+ "-r <resign value in centipawns> default: 0 (no resigning)\n" |
45 |
+ "-e <easy level 0...100> default: 0 (best play)\n" |
46 |
+ "-l <+/-> learning on/off default: on\n" |
47 |
+ "-v print version and exit\n" |
48 |
+ "-P <primary book directory>\n" |
49 |
+ "-S <secondary book directory>\n" |
50 |
+ "-L <learning file directory>\n" |
51 |
+ "-g <log file name>\n" |
52 |
+"Examples: phalanx -c+ -s+ -o - -x- -f 60 -t4000\n" |
53 |
+ "xboard -fcp \"phalanx -l+ -r800\n" |
54 |
+); |
55 |
exit(0); |
56 |
} |
57 |
|