-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
32 lines (14 loc) · 760 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
- Command-line compile. In the connectx/ directory run::
javac -cp ".." *.java */*.java
CXGame application:
- Human vs Computer. In the connectx/ directory run:
java -cp ".." connectx.CXGame 6 7 4 connectx.L0.L0
- Computer vs Computer. In the connectx/ directory run:
java -cp ".." connectx.CXGame 6 7 4 connectx.L0.L0 connectx.L1.L1
CXPlayerTester application:
- Output score only:
java -cp ".." connectx.CXPlayerTester 6 7 4 connectx.L0.L0 connectx.L1.L1
- Verbose output
java -cp ".." connectx.CXPlayerTester 6 7 4 connectx.L0.L0 connectx.L1.L1 -v
- Verbose output and customized timeout (1 sec) and number of game repetitions (10 rounds)
java -cp ".." connectx.CXPlayerTester 6 7 4 connectx.L0.L0 connectx.L1.L1 -v -t 1 -r 10