Oct 26 20:20:52.369 INFO checking starrtnow/mcts-connect-four against try#19f01b935b91481fd445b16b533d2f87661bf12e for pr-55192-2 Oct 26 20:20:52.371 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192-2/worker-3/try#19f01b935b91481fd445b16b533d2f87661bf12e:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-3/pr-55192-2/try#19f01b935b91481fd445b16b533d2f87661bf12e:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +19f01b935b91481fd445b16b533d2f87661bf12e-alt check --frozen --all --all-targets" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 26 20:20:52.911 INFO blam! d3212b04b3d28910113413087a49ee9e35a2e8955b48b47da930a81a2aaa1dc6 Oct 26 20:20:52.939 INFO running `"docker" "start" "-a" "d3212b04b3d28910113413087a49ee9e35a2e8955b48b47da930a81a2aaa1dc6"` Oct 26 20:20:54.354 INFO kablam! usermod: no changes Oct 26 20:20:54.487 INFO kablam! Checking connect_three v0.1.0 (/source) Oct 26 20:20:54.835 INFO kablam! warning: unnecessary parentheses around `if` condition Oct 26 20:20:54.835 INFO kablam! --> src/game_state.rs:53:12 Oct 26 20:20:54.835 INFO kablam! | Oct 26 20:20:54.835 INFO kablam! 53 | if (column[i] == Color::Empty){ Oct 26 20:20:54.835 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 20:20:54.835 INFO kablam! | Oct 26 20:20:54.835 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 26 20:20:54.835 INFO kablam! Oct 26 20:20:54.835 INFO kablam! warning: unnecessary parentheses around `if` condition Oct 26 20:20:54.835 INFO kablam! --> src/monte_carlo.rs:243:19 Oct 26 20:20:54.835 INFO kablam! | Oct 26 20:20:54.835 INFO kablam! 243 | if(uct > best_uct){ Oct 26 20:20:54.835 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 20:20:54.835 INFO kablam! Oct 26 20:20:54.939 INFO kablam! warning: unnecessary parentheses around `if` condition Oct 26 20:20:54.939 INFO kablam! --> src/game_state.rs:53:12 Oct 26 20:20:54.939 INFO kablam! | Oct 26 20:20:54.939 INFO kablam! 53 | if (column[i] == Color::Empty){ Oct 26 20:20:54.939 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 20:20:54.939 INFO kablam! | Oct 26 20:20:54.939 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 26 20:20:54.939 INFO kablam! Oct 26 20:20:54.939 INFO kablam! warning: unused import: `super::*` Oct 26 20:20:54.939 INFO kablam! --> src/game_state.rs:190:9 Oct 26 20:20:54.939 INFO kablam! | Oct 26 20:20:54.939 INFO kablam! 190 | use super::*; Oct 26 20:20:54.939 INFO kablam! | ^^^^^^^^ Oct 26 20:20:54.939 INFO kablam! | Oct 26 20:20:54.939 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 26 20:20:54.939 INFO kablam! Oct 26 20:20:54.939 INFO kablam! warning: unnecessary parentheses around `if` condition Oct 26 20:20:54.939 INFO kablam! --> src/monte_carlo.rs:243:19 Oct 26 20:20:54.939 INFO kablam! | Oct 26 20:20:54.939 INFO kablam! 243 | if(uct > best_uct){ Oct 26 20:20:54.939 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 20:20:54.939 INFO kablam! Oct 26 20:20:54.999 INFO kablam! warning: unused variable: `item` Oct 26 20:20:54.999 INFO kablam! --> src/game_state.rs:51:14 Oct 26 20:20:54.999 INFO kablam! | Oct 26 20:20:54.999 INFO kablam! 51 | fn push_back(item : Color, column : &mut [Color; 6]) -> usize{ Oct 26 20:20:54.999 INFO kablam! | ^^^^ help: consider using `_item` instead Oct 26 20:20:54.999 INFO kablam! | Oct 26 20:20:54.999 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 26 20:20:54.999 INFO kablam! Oct 26 20:20:54.999 INFO kablam! warning: unused variable: `player` Oct 26 20:20:54.999 INFO kablam! --> src/monte_carlo.rs:66:54 Oct 26 20:20:54.999 INFO kablam! | Oct 26 20:20:54.999 INFO kablam! 66 | pub fn run_simulation(state : game_state::GameState, player : game_state::Color) -> game_state::End{ Oct 26 20:20:54.999 INFO kablam! | ^^^^^^ help: consider using `_player` instead Oct 26 20:20:54.999 INFO kablam! Oct 26 20:20:55.043 INFO kablam! warning: function is never used: `optimal_move_highest_win` Oct 26 20:20:55.043 INFO kablam! --> src/monte_carlo.rs:161:1 Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! 161 | fn optimal_move_highest_win(possible_moves : &Vec<(game_state::Move, &UCTData)>) -> game_state::Move{ Oct 26 20:20:55.043 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! = note: #[warn(dead_code)] on by default Oct 26 20:20:55.043 INFO kablam! Oct 26 20:20:55.043 INFO kablam! warning: comparison is useless due to type limits Oct 26 20:20:55.043 INFO kablam! --> src/game_state.rs:47:35 Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! 47 | (self.x <= BOARD_WIDTH && self.x >= 0) Oct 26 20:20:55.043 INFO kablam! | ^^^^^^^^^^^^ Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! = note: #[warn(unused_comparisons)] on by default Oct 26 20:20:55.043 INFO kablam! Oct 26 20:20:55.043 INFO kablam! warning: variable `stepX` should have a snake case name such as `step_x` Oct 26 20:20:55.043 INFO kablam! --> src/game_state.rs:109:62 Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! 109 | pub fn linear_match(&self, start_x : i32, start_y : i32, stepX : i32, stepY : i32, color : Color) -> bool{ Oct 26 20:20:55.043 INFO kablam! | ^^^^^ Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 26 20:20:55.043 INFO kablam! Oct 26 20:20:55.043 INFO kablam! warning: variable `stepY` should have a snake case name such as `step_y` Oct 26 20:20:55.043 INFO kablam! --> src/game_state.rs:109:75 Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! 109 | pub fn linear_match(&self, start_x : i32, start_y : i32, stepX : i32, stepY : i32, color : Color) -> bool{ Oct 26 20:20:55.043 INFO kablam! | ^^^^^ Oct 26 20:20:55.043 INFO kablam! Oct 26 20:20:55.043 INFO kablam! warning: comparison is useless due to type limits Oct 26 20:20:55.043 INFO kablam! --> src/game_state.rs:114:16 Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! 114 | if x < 0 || x >= BOARD_HEIGHT || y < 0 || y >= BOARD_WIDTH{ Oct 26 20:20:55.043 INFO kablam! | ^^^^^ Oct 26 20:20:55.043 INFO kablam! Oct 26 20:20:55.043 INFO kablam! warning: comparison is useless due to type limits Oct 26 20:20:55.043 INFO kablam! --> src/game_state.rs:114:46 Oct 26 20:20:55.043 INFO kablam! | Oct 26 20:20:55.043 INFO kablam! 114 | if x < 0 || x >= BOARD_HEIGHT || y < 0 || y >= BOARD_WIDTH{ Oct 26 20:20:55.043 INFO kablam! | ^^^^^ Oct 26 20:20:55.043 INFO kablam! Oct 26 20:20:55.174 INFO kablam! warning: unused variable: `item` Oct 26 20:20:55.174 INFO kablam! --> src/game_state.rs:51:14 Oct 26 20:20:55.175 INFO kablam! | Oct 26 20:20:55.175 INFO kablam! 51 | fn push_back(item : Color, column : &mut [Color; 6]) -> usize{ Oct 26 20:20:55.175 INFO kablam! | ^^^^ help: consider using `_item` instead Oct 26 20:20:55.175 INFO kablam! | Oct 26 20:20:55.175 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 26 20:20:55.175 INFO kablam! Oct 26 20:20:55.176 INFO kablam! warning: unused variable: `player` Oct 26 20:20:55.176 INFO kablam! --> src/monte_carlo.rs:66:54 Oct 26 20:20:55.176 INFO kablam! | Oct 26 20:20:55.176 INFO kablam! 66 | pub fn run_simulation(state : game_state::GameState, player : game_state::Color) -> game_state::End{ Oct 26 20:20:55.176 INFO kablam! | ^^^^^^ help: consider using `_player` instead Oct 26 20:20:55.176 INFO kablam! Oct 26 20:20:55.236 INFO kablam! warning: function is never used: `optimal_move_highest_win` Oct 26 20:20:55.236 INFO kablam! --> src/monte_carlo.rs:161:1 Oct 26 20:20:55.236 INFO kablam! | Oct 26 20:20:55.236 INFO kablam! 161 | fn optimal_move_highest_win(possible_moves : &Vec<(game_state::Move, &UCTData)>) -> game_state::Move{ Oct 26 20:20:55.236 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 26 20:20:55.236 INFO kablam! | Oct 26 20:20:55.236 INFO kablam! = note: #[warn(dead_code)] on by default Oct 26 20:20:55.236 INFO kablam! Oct 26 20:20:55.237 INFO kablam! warning: comparison is useless due to type limits Oct 26 20:20:55.237 INFO kablam! --> src/game_state.rs:47:35 Oct 26 20:20:55.237 INFO kablam! | Oct 26 20:20:55.237 INFO kablam! 47 | (self.x <= BOARD_WIDTH && self.x >= 0) Oct 26 20:20:55.237 INFO kablam! | ^^^^^^^^^^^^ Oct 26 20:20:55.237 INFO kablam! | Oct 26 20:20:55.237 INFO kablam! = note: #[warn(unused_comparisons)] on by default Oct 26 20:20:55.237 INFO kablam! Oct 26 20:20:55.241 INFO kablam! warning: variable `stepX` should have a snake case name such as `step_x` Oct 26 20:20:55.241 INFO kablam! --> src/game_state.rs:109:62 Oct 26 20:20:55.241 INFO kablam! | Oct 26 20:20:55.241 INFO kablam! 109 | pub fn linear_match(&self, start_x : i32, start_y : i32, stepX : i32, stepY : i32, color : Color) -> bool{ Oct 26 20:20:55.241 INFO kablam! | ^^^^^ Oct 26 20:20:55.241 INFO kablam! | Oct 26 20:20:55.241 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 26 20:20:55.241 INFO kablam! Oct 26 20:20:55.241 INFO kablam! warning: variable `stepY` should have a snake case name such as `step_y` Oct 26 20:20:55.241 INFO kablam! --> src/game_state.rs:109:75 Oct 26 20:20:55.241 INFO kablam! | Oct 26 20:20:55.241 INFO kablam! 109 | pub fn linear_match(&self, start_x : i32, start_y : i32, stepX : i32, stepY : i32, color : Color) -> bool{ Oct 26 20:20:55.241 INFO kablam! | ^^^^^ Oct 26 20:20:55.241 INFO kablam! Oct 26 20:20:55.241 INFO kablam! warning: comparison is useless due to type limits Oct 26 20:20:55.241 INFO kablam! --> src/game_state.rs:114:16 Oct 26 20:20:55.241 INFO kablam! | Oct 26 20:20:55.241 INFO kablam! 114 | if x < 0 || x >= BOARD_HEIGHT || y < 0 || y >= BOARD_WIDTH{ Oct 26 20:20:55.241 INFO kablam! | ^^^^^ Oct 26 20:20:55.241 INFO kablam! Oct 26 20:20:55.241 INFO kablam! warning: comparison is useless due to type limits Oct 26 20:20:55.241 INFO kablam! --> src/game_state.rs:114:46 Oct 26 20:20:55.241 INFO kablam! | Oct 26 20:20:55.241 INFO kablam! 114 | if x < 0 || x >= BOARD_HEIGHT || y < 0 || y >= BOARD_WIDTH{ Oct 26 20:20:55.241 INFO kablam! | ^^^^^ Oct 26 20:20:55.241 INFO kablam! Oct 26 20:20:55.283 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.90s Oct 26 20:20:55.288 INFO kablam! su: No module specific data is present Oct 26 20:20:55.983 INFO running `"docker" "rm" "-f" "d3212b04b3d28910113413087a49ee9e35a2e8955b48b47da930a81a2aaa1dc6"` Oct 26 20:20:56.251 INFO blam! d3212b04b3d28910113413087a49ee9e35a2e8955b48b47da930a81a2aaa1dc6