Oct 31 22:18:04.060 INFO checking royburner/algolib against try#d7816399d50d407bbce1efe9dbadf8faaaf568fc for pr-55538 Oct 31 22:18:04.060 INFO running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-55538/worker-2/try#d7816399d50d407bbce1efe9dbadf8faaaf568fc:/target:rw,Z" "-v" "/mnt/big/crater/work/local/test-source/worker-2/pr-55538/try#d7816399d50d407bbce1efe9dbadf8faaaf568fc:/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 +d7816399d50d407bbce1efe9dbadf8faaaf568fc-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 31 22:18:04.404 INFO blam! d6a64349a7a8cbce687475ef2825eb76b254ff58b7cc5f2a639a68694dc1f703 Oct 31 22:18:04.406 INFO running `"docker" "start" "-a" "d6a64349a7a8cbce687475ef2825eb76b254ff58b7cc5f2a639a68694dc1f703"` Oct 31 22:18:05.803 INFO kablam! usermod: no changes Oct 31 22:18:05.855 INFO kablam! Checking algolib v0.0.1 (/source) Oct 31 22:18:06.180 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.180 INFO kablam! --> src/a_star.rs:34:19 Oct 31 22:18:06.180 INFO kablam! | Oct 31 22:18:06.180 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.180 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.180 INFO kablam! | Oct 31 22:18:06.180 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 31 22:18:06.180 INFO kablam! Oct 31 22:18:06.180 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.180 INFO kablam! --> src/a_star.rs:38:19 Oct 31 22:18:06.180 INFO kablam! | Oct 31 22:18:06.180 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.180 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.180 INFO kablam! Oct 31 22:18:06.211 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.211 INFO kablam! --> src/a_star.rs:34:19 Oct 31 22:18:06.211 INFO kablam! | Oct 31 22:18:06.211 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.211 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.211 INFO kablam! | Oct 31 22:18:06.211 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 31 22:18:06.211 INFO kablam! Oct 31 22:18:06.211 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.211 INFO kablam! --> src/a_star.rs:38:19 Oct 31 22:18:06.211 INFO kablam! | Oct 31 22:18:06.211 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.211 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.211 INFO kablam! Oct 31 22:18:06.284 INFO kablam! warning: unused variable: `closedSet` Oct 31 22:18:06.284 INFO kablam! --> src/a_star.rs:46:11 Oct 31 22:18:06.284 INFO kablam! | Oct 31 22:18:06.284 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.284 INFO kablam! | ^^^^^^^^^ help: consider using `_closedSet` instead Oct 31 22:18:06.284 INFO kablam! | Oct 31 22:18:06.284 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 31 22:18:06.284 INFO kablam! Oct 31 22:18:06.284 INFO kablam! warning: unused variable: `cameFrom` Oct 31 22:18:06.284 INFO kablam! --> src/a_star.rs:49:11 Oct 31 22:18:06.284 INFO kablam! | Oct 31 22:18:06.284 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.284 INFO kablam! | ^^^^^^^^ help: consider using `_cameFrom` instead Oct 31 22:18:06.284 INFO kablam! Oct 31 22:18:06.291 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.291 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.291 INFO kablam! | Oct 31 22:18:06.291 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.291 INFO kablam! | ----^^^^^^^^^ Oct 31 22:18:06.291 INFO kablam! | | Oct 31 22:18:06.291 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.291 INFO kablam! | Oct 31 22:18:06.291 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 31 22:18:06.291 INFO kablam! Oct 31 22:18:06.291 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.291 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.291 INFO kablam! | Oct 31 22:18:06.291 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.291 INFO kablam! | ----^^^^^^^^ Oct 31 22:18:06.291 INFO kablam! | | Oct 31 22:18:06.291 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.291 INFO kablam! Oct 31 22:18:06.291 INFO kablam! warning: struct is never constructed: `Board` Oct 31 22:18:06.291 INFO kablam! --> src/a_star.rs:9:1 Oct 31 22:18:06.291 INFO kablam! | Oct 31 22:18:06.291 INFO kablam! 9 | struct Board{ Oct 31 22:18:06.291 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.291 INFO kablam! | Oct 31 22:18:06.291 INFO kablam! = note: #[warn(dead_code)] on by default Oct 31 22:18:06.291 INFO kablam! Oct 31 22:18:06.291 INFO kablam! warning: method is never used: `new` Oct 31 22:18:06.291 INFO kablam! --> src/a_star.rs:19:2 Oct 31 22:18:06.291 INFO kablam! | Oct 31 22:18:06.291 INFO kablam! 19 | fn new(width : usize)->Board{ Oct 31 22:18:06.291 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.291 INFO kablam! Oct 31 22:18:06.295 INFO kablam! warning: method is never used: `newGScoreWithInfinity` Oct 31 22:18:06.295 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.295 INFO kablam! | Oct 31 22:18:06.295 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.295 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.295 INFO kablam! Oct 31 22:18:06.295 INFO kablam! warning: method is never used: `heuristic_cost_estimate` Oct 31 22:18:06.295 INFO kablam! --> src/a_star.rs:33:2 Oct 31 22:18:06.295 INFO kablam! | Oct 31 22:18:06.295 INFO kablam! 33 | fn heuristic_cost_estimate(&self, point:Point)->usize{ Oct 31 22:18:06.295 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.295 INFO kablam! Oct 31 22:18:06.296 INFO kablam! warning: method is never used: `a_star` Oct 31 22:18:06.296 INFO kablam! --> src/a_star.rs:45:2 Oct 31 22:18:06.296 INFO kablam! | Oct 31 22:18:06.296 INFO kablam! 45 | fn a_star(&self) -> Option>{ Oct 31 22:18:06.296 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.296 INFO kablam! Oct 31 22:18:06.300 INFO kablam! warning: method `newGScoreWithInfinity` should have a snake case name such as `new_gscore_with_infinity` Oct 31 22:18:06.300 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.300 INFO kablam! | Oct 31 22:18:06.300 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.300 INFO kablam! | _____^ Oct 31 22:18:06.300 INFO kablam! 24 | | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.300 INFO kablam! 25 | | for i in 0..self.width{ Oct 31 22:18:06.300 INFO kablam! 26 | | for j in 0..self.height{ Oct 31 22:18:06.300 INFO kablam! ... | Oct 31 22:18:06.300 INFO kablam! 30 | | gScore Oct 31 22:18:06.300 INFO kablam! 31 | | } Oct 31 22:18:06.300 INFO kablam! | |_____^ Oct 31 22:18:06.300 INFO kablam! | Oct 31 22:18:06.300 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 31 22:18:06.300 INFO kablam! Oct 31 22:18:06.300 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.300 INFO kablam! --> src/a_star.rs:24:7 Oct 31 22:18:06.300 INFO kablam! | Oct 31 22:18:06.300 INFO kablam! 24 | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.300 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.300 INFO kablam! Oct 31 22:18:06.300 INFO kablam! warning: variable `absX` should have a snake case name such as `abs_x` Oct 31 22:18:06.301 INFO kablam! --> src/a_star.rs:34:7 Oct 31 22:18:06.301 INFO kablam! | Oct 31 22:18:06.301 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.301 INFO kablam! | ^^^^ Oct 31 22:18:06.301 INFO kablam! Oct 31 22:18:06.301 INFO kablam! warning: variable `absY` should have a snake case name such as `abs_y` Oct 31 22:18:06.301 INFO kablam! --> src/a_star.rs:38:7 Oct 31 22:18:06.301 INFO kablam! | Oct 31 22:18:06.301 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.301 INFO kablam! | ^^^^ Oct 31 22:18:06.301 INFO kablam! Oct 31 22:18:06.301 INFO kablam! warning: variable `closedSet` should have a snake case name such as `closed_set` Oct 31 22:18:06.301 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.301 INFO kablam! | Oct 31 22:18:06.301 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.301 INFO kablam! | ^^^^^^^^^^^^^ Oct 31 22:18:06.301 INFO kablam! Oct 31 22:18:06.301 INFO kablam! warning: variable `openSet` should have a snake case name such as `open_set` Oct 31 22:18:06.301 INFO kablam! --> src/a_star.rs:47:7 Oct 31 22:18:06.301 INFO kablam! | Oct 31 22:18:06.301 INFO kablam! 47 | let mut openSet : HashSet = HashSet::new();// The set of tentative nodes to be evaluated Oct 31 22:18:06.301 INFO kablam! | ^^^^^^^^^^^ Oct 31 22:18:06.301 INFO kablam! Oct 31 22:18:06.301 INFO kablam! warning: variable `cameFrom` should have a snake case name such as `came_from` Oct 31 22:18:06.301 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.301 INFO kablam! | Oct 31 22:18:06.301 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.301 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.301 INFO kablam! Oct 31 22:18:06.301 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.301 INFO kablam! --> src/a_star.rs:51:7 Oct 31 22:18:06.301 INFO kablam! | Oct 31 22:18:06.301 INFO kablam! 51 | let mut gScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.301 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.301 INFO kablam! Oct 31 22:18:06.301 INFO kablam! warning: variable `fScore` should have a snake case name such as `f_score` Oct 31 22:18:06.301 INFO kablam! --> src/a_star.rs:55:7 Oct 31 22:18:06.301 INFO kablam! | Oct 31 22:18:06.301 INFO kablam! 55 | let mut fScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.301 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.301 INFO kablam! Oct 31 22:18:06.334 INFO kablam! warning: unused variable: `closedSet` Oct 31 22:18:06.334 INFO kablam! --> src/a_star.rs:46:11 Oct 31 22:18:06.334 INFO kablam! | Oct 31 22:18:06.334 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.334 INFO kablam! | ^^^^^^^^^ help: consider using `_closedSet` instead Oct 31 22:18:06.344 INFO kablam! | Oct 31 22:18:06.344 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 31 22:18:06.344 INFO kablam! Oct 31 22:18:06.344 INFO kablam! warning: unused variable: `cameFrom` Oct 31 22:18:06.344 INFO kablam! --> src/a_star.rs:49:11 Oct 31 22:18:06.344 INFO kablam! | Oct 31 22:18:06.344 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.344 INFO kablam! | ^^^^^^^^ help: consider using `_cameFrom` instead Oct 31 22:18:06.344 INFO kablam! Oct 31 22:18:06.368 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.368 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.368 INFO kablam! | Oct 31 22:18:06.368 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.368 INFO kablam! | ----^^^^^^^^^ Oct 31 22:18:06.368 INFO kablam! | | Oct 31 22:18:06.368 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.368 INFO kablam! | Oct 31 22:18:06.368 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 31 22:18:06.368 INFO kablam! Oct 31 22:18:06.368 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.368 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.368 INFO kablam! | Oct 31 22:18:06.368 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.368 INFO kablam! | ----^^^^^^^^ Oct 31 22:18:06.368 INFO kablam! | | Oct 31 22:18:06.368 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.368 INFO kablam! Oct 31 22:18:06.369 INFO kablam! warning: struct is never constructed: `Board` Oct 31 22:18:06.369 INFO kablam! --> src/a_star.rs:9:1 Oct 31 22:18:06.369 INFO kablam! | Oct 31 22:18:06.369 INFO kablam! 9 | struct Board{ Oct 31 22:18:06.369 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.369 INFO kablam! | Oct 31 22:18:06.369 INFO kablam! = note: #[warn(dead_code)] on by default Oct 31 22:18:06.369 INFO kablam! Oct 31 22:18:06.369 INFO kablam! warning: method is never used: `new` Oct 31 22:18:06.369 INFO kablam! --> src/a_star.rs:19:2 Oct 31 22:18:06.369 INFO kablam! | Oct 31 22:18:06.369 INFO kablam! 19 | fn new(width : usize)->Board{ Oct 31 22:18:06.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.369 INFO kablam! Oct 31 22:18:06.369 INFO kablam! warning: method is never used: `newGScoreWithInfinity` Oct 31 22:18:06.369 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.369 INFO kablam! | Oct 31 22:18:06.369 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.369 INFO kablam! Oct 31 22:18:06.369 INFO kablam! warning: method is never used: `heuristic_cost_estimate` Oct 31 22:18:06.369 INFO kablam! --> src/a_star.rs:33:2 Oct 31 22:18:06.369 INFO kablam! | Oct 31 22:18:06.369 INFO kablam! 33 | fn heuristic_cost_estimate(&self, point:Point)->usize{ Oct 31 22:18:06.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.369 INFO kablam! Oct 31 22:18:06.372 INFO kablam! warning: method is never used: `a_star` Oct 31 22:18:06.372 INFO kablam! --> src/a_star.rs:45:2 Oct 31 22:18:06.372 INFO kablam! | Oct 31 22:18:06.372 INFO kablam! 45 | fn a_star(&self) -> Option>{ Oct 31 22:18:06.372 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.372 INFO kablam! Oct 31 22:18:06.375 INFO kablam! warning: method `newGScoreWithInfinity` should have a snake case name such as `new_gscore_with_infinity` Oct 31 22:18:06.375 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.375 INFO kablam! | Oct 31 22:18:06.375 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.375 INFO kablam! | _____^ Oct 31 22:18:06.375 INFO kablam! 24 | | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.375 INFO kablam! 25 | | for i in 0..self.width{ Oct 31 22:18:06.375 INFO kablam! 26 | | for j in 0..self.height{ Oct 31 22:18:06.375 INFO kablam! ... | Oct 31 22:18:06.375 INFO kablam! 30 | | gScore Oct 31 22:18:06.375 INFO kablam! 31 | | } Oct 31 22:18:06.375 INFO kablam! | |_____^ Oct 31 22:18:06.375 INFO kablam! | Oct 31 22:18:06.375 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 31 22:18:06.375 INFO kablam! Oct 31 22:18:06.375 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.375 INFO kablam! --> src/a_star.rs:24:7 Oct 31 22:18:06.375 INFO kablam! | Oct 31 22:18:06.375 INFO kablam! 24 | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.375 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.375 INFO kablam! Oct 31 22:18:06.377 INFO kablam! warning: variable `absX` should have a snake case name such as `abs_x` Oct 31 22:18:06.377 INFO kablam! --> src/a_star.rs:34:7 Oct 31 22:18:06.377 INFO kablam! | Oct 31 22:18:06.377 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.377 INFO kablam! | ^^^^ Oct 31 22:18:06.377 INFO kablam! Oct 31 22:18:06.377 INFO kablam! warning: variable `absY` should have a snake case name such as `abs_y` Oct 31 22:18:06.377 INFO kablam! --> src/a_star.rs:38:7 Oct 31 22:18:06.377 INFO kablam! | Oct 31 22:18:06.377 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.377 INFO kablam! | ^^^^ Oct 31 22:18:06.377 INFO kablam! Oct 31 22:18:06.377 INFO kablam! warning: variable `closedSet` should have a snake case name such as `closed_set` Oct 31 22:18:06.377 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.377 INFO kablam! | Oct 31 22:18:06.377 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.377 INFO kablam! | ^^^^^^^^^^^^^ Oct 31 22:18:06.377 INFO kablam! Oct 31 22:18:06.377 INFO kablam! warning: variable `openSet` should have a snake case name such as `open_set` Oct 31 22:18:06.377 INFO kablam! --> src/a_star.rs:47:7 Oct 31 22:18:06.377 INFO kablam! | Oct 31 22:18:06.377 INFO kablam! 47 | let mut openSet : HashSet = HashSet::new();// The set of tentative nodes to be evaluated Oct 31 22:18:06.377 INFO kablam! | ^^^^^^^^^^^ Oct 31 22:18:06.377 INFO kablam! Oct 31 22:18:06.377 INFO kablam! warning: variable `cameFrom` should have a snake case name such as `came_from` Oct 31 22:18:06.377 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.377 INFO kablam! | Oct 31 22:18:06.377 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.377 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.377 INFO kablam! Oct 31 22:18:06.377 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.377 INFO kablam! --> src/a_star.rs:51:7 Oct 31 22:18:06.377 INFO kablam! | Oct 31 22:18:06.377 INFO kablam! 51 | let mut gScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.377 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.377 INFO kablam! Oct 31 22:18:06.377 INFO kablam! warning: variable `fScore` should have a snake case name such as `f_score` Oct 31 22:18:06.377 INFO kablam! --> src/a_star.rs:55:7 Oct 31 22:18:06.377 INFO kablam! | Oct 31 22:18:06.377 INFO kablam! 55 | let mut fScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.377 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.377 INFO kablam! Oct 31 22:18:06.572 INFO kablam! warning: unused import: `algolib::*` Oct 31 22:18:06.572 INFO kablam! --> tests/test_sort.rs:3:5 Oct 31 22:18:06.572 INFO kablam! | Oct 31 22:18:06.572 INFO kablam! 3 | use algolib::*; Oct 31 22:18:06.572 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.574 INFO kablam! | Oct 31 22:18:06.574 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 31 22:18:06.574 INFO kablam! Oct 31 22:18:06.732 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.89s Oct 31 22:18:06.732 INFO kablam! su: No module specific data is present Oct 31 22:18:07.506 INFO running `"docker" "rm" "-f" "d6a64349a7a8cbce687475ef2825eb76b254ff58b7cc5f2a639a68694dc1f703"` Oct 31 22:18:07.724 INFO blam! d6a64349a7a8cbce687475ef2825eb76b254ff58b7cc5f2a639a68694dc1f703