Oct 12 14:49:11.981 INFO checking royburner/algolib against try#4021bd0b3c5815b087d6db10ce461e7e4854ade7 for pr-54977 Oct 12 14:49:11.982 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-54977/worker-7/try#4021bd0b3c5815b087d6db10ce461e7e4854ade7:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/pr-54977/try#4021bd0b3c5815b087d6db10ce461e7e4854ade7:/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 +4021bd0b3c5815b087d6db10ce461e7e4854ade7-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 12 14:49:12.375 INFO blam! 436df23b00e8f178d16283d3ce4fd512abc73b7a03046352ba5b8a261e272090 Oct 12 14:49:12.377 INFO running `"docker" "start" "-a" "436df23b00e8f178d16283d3ce4fd512abc73b7a03046352ba5b8a261e272090"` Oct 12 14:49:14.084 INFO kablam! usermod: no changes Oct 12 14:49:14.177 INFO kablam! Checking algolib v0.0.1 (/source) Oct 12 14:49:14.665 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 12 14:49:14.665 INFO kablam! --> src/a_star.rs:34:19 Oct 12 14:49:14.665 INFO kablam! | Oct 12 14:49:14.665 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 12 14:49:14.665 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 12 14:49:14.665 INFO kablam! | Oct 12 14:49:14.665 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 12 14:49:14.667 INFO kablam! Oct 12 14:49:14.668 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 12 14:49:14.671 INFO kablam! --> src/a_star.rs:38:19 Oct 12 14:49:14.671 INFO kablam! | Oct 12 14:49:14.671 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 12 14:49:14.671 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 12 14:49:14.672 INFO kablam! Oct 12 14:49:14.716 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 12 14:49:14.716 INFO kablam! --> src/a_star.rs:34:19 Oct 12 14:49:14.716 INFO kablam! | Oct 12 14:49:14.716 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 12 14:49:14.716 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 12 14:49:14.716 INFO kablam! | Oct 12 14:49:14.716 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 12 14:49:14.716 INFO kablam! Oct 12 14:49:14.716 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 12 14:49:14.716 INFO kablam! --> src/a_star.rs:38:19 Oct 12 14:49:14.716 INFO kablam! | Oct 12 14:49:14.716 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 12 14:49:14.716 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 12 14:49:14.716 INFO kablam! Oct 12 14:49:14.800 INFO kablam! warning: unused variable: `closedSet` Oct 12 14:49:14.800 INFO kablam! --> src/a_star.rs:46:11 Oct 12 14:49:14.800 INFO kablam! | Oct 12 14:49:14.800 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 12 14:49:14.800 INFO kablam! | ^^^^^^^^^ help: consider using `_closedSet` instead Oct 12 14:49:14.800 INFO kablam! | Oct 12 14:49:14.800 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 12 14:49:14.800 INFO kablam! Oct 12 14:49:14.800 INFO kablam! warning: unused variable: `cameFrom` Oct 12 14:49:14.800 INFO kablam! --> src/a_star.rs:49:11 Oct 12 14:49:14.800 INFO kablam! | Oct 12 14:49:14.800 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 12 14:49:14.800 INFO kablam! | ^^^^^^^^ help: consider using `_cameFrom` instead Oct 12 14:49:14.800 INFO kablam! Oct 12 14:49:14.820 INFO kablam! warning: variable does not need to be mutable Oct 12 14:49:14.820 INFO kablam! --> src/a_star.rs:46:7 Oct 12 14:49:14.820 INFO kablam! | Oct 12 14:49:14.820 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 12 14:49:14.820 INFO kablam! | ----^^^^^^^^^ Oct 12 14:49:14.820 INFO kablam! | | Oct 12 14:49:14.820 INFO kablam! | help: remove this `mut` Oct 12 14:49:14.820 INFO kablam! | Oct 12 14:49:14.820 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 12 14:49:14.820 INFO kablam! Oct 12 14:49:14.820 INFO kablam! warning: variable does not need to be mutable Oct 12 14:49:14.821 INFO kablam! --> src/a_star.rs:49:7 Oct 12 14:49:14.821 INFO kablam! | Oct 12 14:49:14.821 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 12 14:49:14.821 INFO kablam! | ----^^^^^^^^ Oct 12 14:49:14.821 INFO kablam! | | Oct 12 14:49:14.821 INFO kablam! | help: remove this `mut` Oct 12 14:49:14.821 INFO kablam! Oct 12 14:49:14.821 INFO kablam! warning: struct is never constructed: `Board` Oct 12 14:49:14.821 INFO kablam! --> src/a_star.rs:9:1 Oct 12 14:49:14.821 INFO kablam! | Oct 12 14:49:14.821 INFO kablam! 9 | struct Board{ Oct 12 14:49:14.821 INFO kablam! | ^^^^^^^^^^^^ Oct 12 14:49:14.821 INFO kablam! | Oct 12 14:49:14.821 INFO kablam! = note: #[warn(dead_code)] on by default Oct 12 14:49:14.821 INFO kablam! Oct 12 14:49:14.821 INFO kablam! warning: method is never used: `new` Oct 12 14:49:14.821 INFO kablam! --> src/a_star.rs:19:2 Oct 12 14:49:14.821 INFO kablam! | Oct 12 14:49:14.821 INFO kablam! 19 | fn new(width : usize)->Board{ Oct 12 14:49:14.821 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:14.821 INFO kablam! Oct 12 14:49:14.821 INFO kablam! warning: method is never used: `newGScoreWithInfinity` Oct 12 14:49:14.821 INFO kablam! --> src/a_star.rs:23:2 Oct 12 14:49:14.821 INFO kablam! | Oct 12 14:49:14.821 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 12 14:49:14.821 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:14.821 INFO kablam! Oct 12 14:49:14.821 INFO kablam! warning: method is never used: `heuristic_cost_estimate` Oct 12 14:49:14.821 INFO kablam! --> src/a_star.rs:33:2 Oct 12 14:49:14.821 INFO kablam! | Oct 12 14:49:14.821 INFO kablam! 33 | fn heuristic_cost_estimate(&self, point:Point)->usize{ Oct 12 14:49:14.821 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:14.821 INFO kablam! Oct 12 14:49:14.821 INFO kablam! warning: method is never used: `a_star` Oct 12 14:49:14.821 INFO kablam! --> src/a_star.rs:45:2 Oct 12 14:49:14.821 INFO kablam! | Oct 12 14:49:14.821 INFO kablam! 45 | fn a_star(&self) -> Option>{ Oct 12 14:49:14.821 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:14.821 INFO kablam! Oct 12 14:49:14.840 INFO kablam! warning: method `newGScoreWithInfinity` should have a snake case name such as `new_gscore_with_infinity` Oct 12 14:49:14.840 INFO kablam! --> src/a_star.rs:23:2 Oct 12 14:49:14.840 INFO kablam! | Oct 12 14:49:14.840 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 12 14:49:14.840 INFO kablam! | _____^ Oct 12 14:49:14.840 INFO kablam! 24 | | let mut gScore : HashMap = HashMap::new(); Oct 12 14:49:14.840 INFO kablam! 25 | | for i in 0..self.width{ Oct 12 14:49:14.841 INFO kablam! 26 | | for j in 0..self.height{ Oct 12 14:49:14.841 INFO kablam! ... | Oct 12 14:49:14.841 INFO kablam! 30 | | gScore Oct 12 14:49:14.841 INFO kablam! 31 | | } Oct 12 14:49:14.841 INFO kablam! | |_____^ Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:24:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 24 | let mut gScore : HashMap = HashMap::new(); Oct 12 14:49:14.841 INFO kablam! | ^^^^^^^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `absX` should have a snake case name such as `abs_x` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:34:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 12 14:49:14.841 INFO kablam! | ^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `absY` should have a snake case name such as `abs_y` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:38:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 12 14:49:14.841 INFO kablam! | ^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `closedSet` should have a snake case name such as `closed_set` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:46:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 12 14:49:14.841 INFO kablam! | ^^^^^^^^^^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `openSet` should have a snake case name such as `open_set` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:47:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 47 | let mut openSet : HashSet = HashSet::new();// The set of tentative nodes to be evaluated Oct 12 14:49:14.841 INFO kablam! | ^^^^^^^^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `cameFrom` should have a snake case name such as `came_from` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:49:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 12 14:49:14.841 INFO kablam! | ^^^^^^^^^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:51:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 51 | let mut gScore = self.newGScoreWithInfinity(); Oct 12 14:49:14.841 INFO kablam! | ^^^^^^^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:14.841 INFO kablam! warning: variable `fScore` should have a snake case name such as `f_score` Oct 12 14:49:14.841 INFO kablam! --> src/a_star.rs:55:7 Oct 12 14:49:14.841 INFO kablam! | Oct 12 14:49:14.841 INFO kablam! 55 | let mut fScore = self.newGScoreWithInfinity(); Oct 12 14:49:14.841 INFO kablam! | ^^^^^^^^^^ Oct 12 14:49:14.841 INFO kablam! Oct 12 14:49:15.044 INFO kablam! warning: unused variable: `closedSet` Oct 12 14:49:15.044 INFO kablam! --> src/a_star.rs:46:11 Oct 12 14:49:15.044 INFO kablam! | Oct 12 14:49:15.044 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 12 14:49:15.044 INFO kablam! | ^^^^^^^^^ help: consider using `_closedSet` instead Oct 12 14:49:15.044 INFO kablam! | Oct 12 14:49:15.044 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 12 14:49:15.044 INFO kablam! Oct 12 14:49:15.044 INFO kablam! warning: unused variable: `cameFrom` Oct 12 14:49:15.044 INFO kablam! --> src/a_star.rs:49:11 Oct 12 14:49:15.044 INFO kablam! | Oct 12 14:49:15.044 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 12 14:49:15.044 INFO kablam! | ^^^^^^^^ help: consider using `_cameFrom` instead Oct 12 14:49:15.044 INFO kablam! Oct 12 14:49:15.055 INFO kablam! warning: variable does not need to be mutable Oct 12 14:49:15.055 INFO kablam! --> src/a_star.rs:46:7 Oct 12 14:49:15.055 INFO kablam! | Oct 12 14:49:15.055 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 12 14:49:15.055 INFO kablam! | ----^^^^^^^^^ Oct 12 14:49:15.055 INFO kablam! | | Oct 12 14:49:15.055 INFO kablam! | help: remove this `mut` Oct 12 14:49:15.055 INFO kablam! | Oct 12 14:49:15.055 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 12 14:49:15.055 INFO kablam! Oct 12 14:49:15.055 INFO kablam! warning: variable does not need to be mutable Oct 12 14:49:15.055 INFO kablam! --> src/a_star.rs:49:7 Oct 12 14:49:15.055 INFO kablam! | Oct 12 14:49:15.055 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 12 14:49:15.055 INFO kablam! | ----^^^^^^^^ Oct 12 14:49:15.055 INFO kablam! | | Oct 12 14:49:15.055 INFO kablam! | help: remove this `mut` Oct 12 14:49:15.055 INFO kablam! Oct 12 14:49:15.060 INFO kablam! warning: struct is never constructed: `Board` Oct 12 14:49:15.060 INFO kablam! --> src/a_star.rs:9:1 Oct 12 14:49:15.060 INFO kablam! | Oct 12 14:49:15.060 INFO kablam! 9 | struct Board{ Oct 12 14:49:15.060 INFO kablam! | ^^^^^^^^^^^^ Oct 12 14:49:15.060 INFO kablam! | Oct 12 14:49:15.060 INFO kablam! = note: #[warn(dead_code)] on by default Oct 12 14:49:15.060 INFO kablam! Oct 12 14:49:15.062 INFO kablam! warning: method is never used: `new` Oct 12 14:49:15.062 INFO kablam! --> src/a_star.rs:19:2 Oct 12 14:49:15.062 INFO kablam! | Oct 12 14:49:15.062 INFO kablam! 19 | fn new(width : usize)->Board{ Oct 12 14:49:15.062 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:15.062 INFO kablam! Oct 12 14:49:15.064 INFO kablam! warning: method is never used: `newGScoreWithInfinity` Oct 12 14:49:15.064 INFO kablam! --> src/a_star.rs:23:2 Oct 12 14:49:15.064 INFO kablam! | Oct 12 14:49:15.064 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 12 14:49:15.064 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:15.064 INFO kablam! Oct 12 14:49:15.065 INFO kablam! warning: method is never used: `heuristic_cost_estimate` Oct 12 14:49:15.065 INFO kablam! --> src/a_star.rs:33:2 Oct 12 14:49:15.065 INFO kablam! | Oct 12 14:49:15.065 INFO kablam! 33 | fn heuristic_cost_estimate(&self, point:Point)->usize{ Oct 12 14:49:15.065 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:15.065 INFO kablam! Oct 12 14:49:15.072 INFO kablam! warning: method is never used: `a_star` Oct 12 14:49:15.072 INFO kablam! --> src/a_star.rs:45:2 Oct 12 14:49:15.072 INFO kablam! | Oct 12 14:49:15.072 INFO kablam! 45 | fn a_star(&self) -> Option>{ Oct 12 14:49:15.072 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 12 14:49:15.072 INFO kablam! Oct 12 14:49:15.075 INFO kablam! warning: method `newGScoreWithInfinity` should have a snake case name such as `new_gscore_with_infinity` Oct 12 14:49:15.075 INFO kablam! --> src/a_star.rs:23:2 Oct 12 14:49:15.075 INFO kablam! | Oct 12 14:49:15.075 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 12 14:49:15.075 INFO kablam! | _____^ Oct 12 14:49:15.075 INFO kablam! 24 | | let mut gScore : HashMap = HashMap::new(); Oct 12 14:49:15.075 INFO kablam! 25 | | for i in 0..self.width{ Oct 12 14:49:15.075 INFO kablam! 26 | | for j in 0..self.height{ Oct 12 14:49:15.075 INFO kablam! ... | Oct 12 14:49:15.075 INFO kablam! 30 | | gScore Oct 12 14:49:15.075 INFO kablam! 31 | | } Oct 12 14:49:15.075 INFO kablam! | |_____^ Oct 12 14:49:15.075 INFO kablam! | Oct 12 14:49:15.075 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 12 14:49:15.075 INFO kablam! Oct 12 14:49:15.075 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 12 14:49:15.075 INFO kablam! --> src/a_star.rs:24:7 Oct 12 14:49:15.075 INFO kablam! | Oct 12 14:49:15.075 INFO kablam! 24 | let mut gScore : HashMap = HashMap::new(); Oct 12 14:49:15.075 INFO kablam! | ^^^^^^^^^^ Oct 12 14:49:15.075 INFO kablam! Oct 12 14:49:15.075 INFO kablam! warning: variable `absX` should have a snake case name such as `abs_x` Oct 12 14:49:15.075 INFO kablam! --> src/a_star.rs:34:7 Oct 12 14:49:15.075 INFO kablam! | Oct 12 14:49:15.075 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 12 14:49:15.075 INFO kablam! | ^^^^ Oct 12 14:49:15.075 INFO kablam! Oct 12 14:49:15.075 INFO kablam! warning: variable `absY` should have a snake case name such as `abs_y` Oct 12 14:49:15.075 INFO kablam! --> src/a_star.rs:38:7 Oct 12 14:49:15.075 INFO kablam! | Oct 12 14:49:15.075 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 12 14:49:15.075 INFO kablam! | ^^^^ Oct 12 14:49:15.083 INFO kablam! Oct 12 14:49:15.084 INFO kablam! warning: variable `closedSet` should have a snake case name such as `closed_set` Oct 12 14:49:15.084 INFO kablam! --> src/a_star.rs:46:7 Oct 12 14:49:15.084 INFO kablam! | Oct 12 14:49:15.084 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 12 14:49:15.084 INFO kablam! | ^^^^^^^^^^^^^ Oct 12 14:49:15.086 INFO kablam! Oct 12 14:49:15.087 INFO kablam! warning: variable `openSet` should have a snake case name such as `open_set` Oct 12 14:49:15.087 INFO kablam! --> src/a_star.rs:47:7 Oct 12 14:49:15.087 INFO kablam! | Oct 12 14:49:15.087 INFO kablam! 47 | let mut openSet : HashSet = HashSet::new();// The set of tentative nodes to be evaluated Oct 12 14:49:15.087 INFO kablam! | ^^^^^^^^^^^ Oct 12 14:49:15.088 INFO kablam! Oct 12 14:49:15.089 INFO kablam! warning: variable `cameFrom` should have a snake case name such as `came_from` Oct 12 14:49:15.089 INFO kablam! --> src/a_star.rs:49:7 Oct 12 14:49:15.089 INFO kablam! | Oct 12 14:49:15.089 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 12 14:49:15.089 INFO kablam! | ^^^^^^^^^^^^ Oct 12 14:49:15.091 INFO kablam! Oct 12 14:49:15.092 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 12 14:49:15.092 INFO kablam! --> src/a_star.rs:51:7 Oct 12 14:49:15.092 INFO kablam! | Oct 12 14:49:15.092 INFO kablam! 51 | let mut gScore = self.newGScoreWithInfinity(); Oct 12 14:49:15.092 INFO kablam! | ^^^^^^^^^^ Oct 12 14:49:15.093 INFO kablam! Oct 12 14:49:15.093 INFO kablam! warning: variable `fScore` should have a snake case name such as `f_score` Oct 12 14:49:15.093 INFO kablam! --> src/a_star.rs:55:7 Oct 12 14:49:15.093 INFO kablam! | Oct 12 14:49:15.093 INFO kablam! 55 | let mut fScore = self.newGScoreWithInfinity(); Oct 12 14:49:15.093 INFO kablam! | ^^^^^^^^^^ Oct 12 14:49:15.096 INFO kablam! Oct 12 14:49:15.292 INFO kablam! warning: unused import: `algolib::*` Oct 12 14:49:15.293 INFO kablam! --> tests/test_sort.rs:3:5 Oct 12 14:49:15.294 INFO kablam! | Oct 12 14:49:15.295 INFO kablam! 3 | use algolib::*; Oct 12 14:49:15.295 INFO kablam! | ^^^^^^^^^^ Oct 12 14:49:15.297 INFO kablam! | Oct 12 14:49:15.298 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 12 14:49:15.299 INFO kablam! Oct 12 14:49:15.472 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.35s Oct 12 14:49:15.475 INFO kablam! su: No module specific data is present Oct 12 14:49:16.681 INFO running `"docker" "rm" "-f" "436df23b00e8f178d16283d3ce4fd512abc73b7a03046352ba5b8a261e272090"` Oct 12 14:49:17.000 INFO blam! 436df23b00e8f178d16283d3ce4fd512abc73b7a03046352ba5b8a261e272090