1
1
use std:: time:: Duration ;
2
2
3
+
3
4
use crate :: algorithms:: the_algorithm:: Algorithm ;
4
5
#[ allow( unused_imports) ]
5
- use crate :: common:: constants:: modules:: {
6
+ use crate :: common:: constants:: { modules:: {
6
7
ALPHA_BETA , ANALYZE , NAIVE_PSQT , PAWN_STRUCTURE , SEARCH_EXTENSIONS , SKIP_BAD_MOVES ,
7
8
SQUARE_CONTROL_METRIC , TAPERED_EVERY_PESTO_PSQT , TAPERED_INCREMENTAL_PESTO_PSQT ,
8
9
TRANSPOSITION_TABLE ,
9
- } ;
10
+ } , NUMBER_OF_MODULES } ;
11
+ use crate :: io:: { write_result, modules_to_string} ;
10
12
11
- use self :: pitter:: logic:: Competition ;
13
+ use self :: pitter:: logic:: { Competition , CompetitionResults } ;
12
14
13
15
mod algorithms;
14
16
mod common;
15
17
mod modules;
16
18
mod pitter;
19
+ mod io;
17
20
18
21
//If we should print the moves played and results of each game.
19
- pub ( crate ) const PRINT_GAME : bool = false ;
22
+ pub ( crate ) const PRINT_GAME : bool = true ;
23
+ //If we should test all possible pairs of combinations.
24
+ const TEST_ALL_PAIRS : bool = true ;
25
+
20
26
21
27
#[ tokio:: main]
22
28
async fn main ( ) {
23
- //ALPHA_BETA | ANALYZE | SEARCH_EXTENSIONS | SKIP_BAD_MOVES | SQUARE_CONTROL_METRIC | TRANSPOSITION_TABLE | NAIVE_PSQT | PAWN_STRUCTURE | TAPERED_EVERY_PESTO_PSQT | TAPERED_INCREMENTAL_PESTO_PSQT
24
- //Put 0 for no modules.
25
- let modules1 = ALPHA_BETA | TAPERED_EVERY_PESTO_PSQT ;
26
- let modules2 = ALPHA_BETA ;
27
- let time_per_move1 = Duration :: from_micros ( 4000 ) ;
28
- let time_per_move2 = Duration :: from_micros ( 2000 ) ;
29
+ if !TEST_ALL_PAIRS {
30
+ //ALPHA_BETA | ANALYZE | SEARCH_EXTENSIONS | SKIP_BAD_MOVES | SQUARE_CONTROL_METRIC | TRANSPOSITION_TABLE | NAIVE_PSQT | PAWN_STRUCTURE | TAPERED_EVERY_PESTO_PSQT | TAPERED_INCREMENTAL_PESTO_PSQT
31
+ //Put 0 for no modules.
32
+ //Setup modules
33
+ let modules1 = ALPHA_BETA | TAPERED_INCREMENTAL_PESTO_PSQT ;
34
+ let modules2 = ALPHA_BETA | TAPERED_EVERY_PESTO_PSQT ;
35
+ let time_per_move1 = Duration :: from_micros ( 2000 ) ;
36
+ let time_per_move2 = Duration :: from_micros ( 2000 ) ;
37
+ let game_pairs = 500 ;
38
+
39
+ //Run competition
40
+ let result = do_competition ( modules1, modules2, time_per_move1, time_per_move2, game_pairs) . await ;
41
+
42
+ //Save results to file
43
+ let mut output: String = "\n Algo 1 modules: " . to_owned ( ) + & modules_to_string ( modules1) + "\n Algo 2 modules: " + & modules_to_string ( modules2)
44
+ + & "\n Game pairs: " + & game_pairs. to_string ( ) + & "\n Time per move, algo1: " + & format ! ( "{:?}" , time_per_move1) + "\n Time per move, algo2: " + & format ! ( "{:?}" , time_per_move2) ;
45
+ let result = format ! ( "\n Competition results: {:#?}" , & result) ;
46
+ output = output + & result + & "\n \n \n " ;
47
+ let buf = output. as_bytes ( ) ;
48
+ let _ = write_result ( buf, "./output.txt" ) ;
49
+
50
+ } else {
51
+ println ! ( "Running {} possibilites" , ( NUMBER_OF_MODULES +1 ) * NUMBER_OF_MODULES /2 ) ;
52
+ let time_per_move1 = Duration :: from_micros ( 2000 ) ;
53
+ let time_per_move2 = Duration :: from_micros ( 2000 ) ;
54
+ let game_pairs = 1000 ;
55
+
56
+ let mut competitions_run: u32 = 0 ;
57
+ for i in 0 ..NUMBER_OF_MODULES +1 {
58
+ for j in i+1 ..NUMBER_OF_MODULES +1 {
59
+ competitions_run += 1 ;
60
+ println ! ( "\r Testing pair {} out of {}" , competitions_run, ( NUMBER_OF_MODULES +1 ) * NUMBER_OF_MODULES /2 ) ;
61
+ let modules1 = 1 << i;
62
+ let modules2 = 1 << j;
63
+
64
+ let result = do_competition ( modules1, modules2, time_per_move1, time_per_move2, game_pairs) . await ;
65
+
66
+ let mut output: String = "\n Algo 1 modules: " . to_owned ( ) + & modules_to_string ( modules1) + "\n Algo 2 modules: " + & modules_to_string ( modules2)
67
+ + & "\n Game pairs: " + & game_pairs. to_string ( ) + & "\n Time per move, algo1: " + & format ! ( "{:?}" , time_per_move1) + "\n Time per move, algo2: " + & format ! ( "{:?}" , time_per_move2) ;
68
+ let result = format ! ( "\n Competition results: {:#?}" , & result) ;
69
+ output = output + & result + & "\n \n \n " ;
70
+ let buf = output. as_bytes ( ) ;
71
+ let _ = write_result ( buf, "./output.txt" ) ;
72
+ }
73
+ }
74
+ }
75
+
76
+ }
29
77
78
+ async fn do_competition ( modules1 : u32 , modules2 : u32 , time_per_move1 : Duration , time_per_move2 : Duration , game_pairs : u32 ) -> CompetitionResults {
30
79
let competition = Competition :: new (
31
80
Algorithm :: new ( modules1, time_per_move1) ,
32
81
Algorithm :: new ( modules2, time_per_move2) ,
@@ -35,6 +84,6 @@ async fn main() {
35
84
// competition.analyze_algorithm_choices(|(game_info, _), _| {
36
85
// game_info.outcome == GameOutcome::InconclusiveTooLong
37
86
// });
38
- let results = competition. start_competition ( 1000 ) . await ;
39
- dbg ! ( results) ;
87
+ let results = competition. start_competition ( game_pairs ) . await ;
88
+ results
40
89
}
0 commit comments