Oct 31 22:18:04.569 INFO checking royburner/algolib against master#05812fa8c588473f03e3fa7cf59cd84f4f37c715 for pr-55538 Oct 31 22:18:04.570 INFO running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-55538/worker-3/master#05812fa8c588473f03e3fa7cf59cd84f4f37c715:/target:rw,Z" "-v" "/mnt/big/crater/work/local/test-source/worker-3/pr-55538/master#05812fa8c588473f03e3fa7cf59cd84f4f37c715:/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 +05812fa8c588473f03e3fa7cf59cd84f4f37c715-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:05.072 INFO blam! 8628693e9aea41c05d25dac021decd66efa1f03d251c21af0930ac28ba4cd758 Oct 31 22:18:05.074 INFO running `"docker" "start" "-a" "8628693e9aea41c05d25dac021decd66efa1f03d251c21af0930ac28ba4cd758"` Oct 31 22:18:06.388 INFO kablam! usermod: no changes Oct 31 22:18:06.448 INFO kablam! Checking algolib v0.0.1 (/source) Oct 31 22:18:06.716 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.716 INFO kablam! --> src/a_star.rs:34:19 Oct 31 22:18:06.716 INFO kablam! | Oct 31 22:18:06.716 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.716 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.716 INFO kablam! | Oct 31 22:18:06.716 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 31 22:18:06.716 INFO kablam! Oct 31 22:18:06.716 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.716 INFO kablam! --> src/a_star.rs:38:19 Oct 31 22:18:06.716 INFO kablam! | Oct 31 22:18:06.716 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.716 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.716 INFO kablam! Oct 31 22:18:06.789 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.789 INFO kablam! --> src/a_star.rs:34:19 Oct 31 22:18:06.789 INFO kablam! | Oct 31 22:18:06.789 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.789 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.789 INFO kablam! | Oct 31 22:18:06.789 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 31 22:18:06.800 INFO kablam! Oct 31 22:18:06.800 INFO kablam! warning: unnecessary parentheses around `match` head expression Oct 31 22:18:06.800 INFO kablam! --> src/a_star.rs:38:19 Oct 31 22:18:06.800 INFO kablam! | Oct 31 22:18:06.800 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.800 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 31 22:18:06.800 INFO kablam! Oct 31 22:18:06.800 INFO kablam! warning: unused variable: `closedSet` Oct 31 22:18:06.800 INFO kablam! --> src/a_star.rs:46:11 Oct 31 22:18:06.800 INFO kablam! | Oct 31 22:18:06.800 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.800 INFO kablam! | ^^^^^^^^^ help: consider using `_closedSet` instead Oct 31 22:18:06.800 INFO kablam! | Oct 31 22:18:06.800 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 31 22:18:06.800 INFO kablam! Oct 31 22:18:06.801 INFO kablam! warning: unused variable: `cameFrom` Oct 31 22:18:06.801 INFO kablam! --> src/a_star.rs:49:11 Oct 31 22:18:06.801 INFO kablam! | Oct 31 22:18:06.801 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.801 INFO kablam! | ^^^^^^^^ help: consider using `_cameFrom` instead Oct 31 22:18:06.801 INFO kablam! Oct 31 22:18:06.816 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.816 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.816 INFO kablam! | Oct 31 22:18:06.816 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.816 INFO kablam! | ----^^^^^^^^^ Oct 31 22:18:06.816 INFO kablam! | | Oct 31 22:18:06.816 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.816 INFO kablam! | Oct 31 22:18:06.816 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 31 22:18:06.816 INFO kablam! Oct 31 22:18:06.816 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.816 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.816 INFO kablam! | Oct 31 22:18:06.822 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.822 INFO kablam! | ----^^^^^^^^ Oct 31 22:18:06.822 INFO kablam! | | Oct 31 22:18:06.822 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.822 INFO kablam! Oct 31 22:18:06.822 INFO kablam! warning: struct is never constructed: `Board` Oct 31 22:18:06.822 INFO kablam! --> src/a_star.rs:9:1 Oct 31 22:18:06.822 INFO kablam! | Oct 31 22:18:06.822 INFO kablam! 9 | struct Board{ Oct 31 22:18:06.822 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.822 INFO kablam! | Oct 31 22:18:06.822 INFO kablam! = note: #[warn(dead_code)] on by default Oct 31 22:18:06.822 INFO kablam! Oct 31 22:18:06.822 INFO kablam! warning: method is never used: `new` Oct 31 22:18:06.822 INFO kablam! --> src/a_star.rs:19:2 Oct 31 22:18:06.822 INFO kablam! | Oct 31 22:18:06.822 INFO kablam! 19 | fn new(width : usize)->Board{ Oct 31 22:18:06.822 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.822 INFO kablam! Oct 31 22:18:06.822 INFO kablam! warning: method is never used: `newGScoreWithInfinity` Oct 31 22:18:06.822 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.822 INFO kablam! | Oct 31 22:18:06.822 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.822 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.822 INFO kablam! Oct 31 22:18:06.822 INFO kablam! warning: method is never used: `heuristic_cost_estimate` Oct 31 22:18:06.822 INFO kablam! --> src/a_star.rs:33:2 Oct 31 22:18:06.822 INFO kablam! | Oct 31 22:18:06.822 INFO kablam! 33 | fn heuristic_cost_estimate(&self, point:Point)->usize{ Oct 31 22:18:06.823 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.823 INFO kablam! Oct 31 22:18:06.823 INFO kablam! warning: method is never used: `a_star` Oct 31 22:18:06.823 INFO kablam! --> src/a_star.rs:45:2 Oct 31 22:18:06.823 INFO kablam! | Oct 31 22:18:06.823 INFO kablam! 45 | fn a_star(&self) -> Option>{ Oct 31 22:18:06.823 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.823 INFO kablam! Oct 31 22:18:06.832 INFO kablam! warning: method `newGScoreWithInfinity` should have a snake case name such as `new_gscore_with_infinity` Oct 31 22:18:06.832 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.832 INFO kablam! | Oct 31 22:18:06.832 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.832 INFO kablam! | _____^ Oct 31 22:18:06.832 INFO kablam! 24 | | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.832 INFO kablam! 25 | | for i in 0..self.width{ Oct 31 22:18:06.832 INFO kablam! 26 | | for j in 0..self.height{ Oct 31 22:18:06.832 INFO kablam! ... | Oct 31 22:18:06.832 INFO kablam! 30 | | gScore Oct 31 22:18:06.832 INFO kablam! 31 | | } Oct 31 22:18:06.832 INFO kablam! | |_____^ Oct 31 22:18:06.832 INFO kablam! | Oct 31 22:18:06.832 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 31 22:18:06.832 INFO kablam! Oct 31 22:18:06.832 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.832 INFO kablam! --> src/a_star.rs:24:7 Oct 31 22:18:06.832 INFO kablam! | Oct 31 22:18:06.832 INFO kablam! 24 | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.832 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.832 INFO kablam! Oct 31 22:18:06.832 INFO kablam! warning: variable `absX` should have a snake case name such as `abs_x` Oct 31 22:18:06.832 INFO kablam! --> src/a_star.rs:34:7 Oct 31 22:18:06.832 INFO kablam! | Oct 31 22:18:06.832 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.832 INFO kablam! | ^^^^ Oct 31 22:18:06.832 INFO kablam! Oct 31 22:18:06.832 INFO kablam! warning: variable `absY` should have a snake case name such as `abs_y` Oct 31 22:18:06.832 INFO kablam! --> src/a_star.rs:38:7 Oct 31 22:18:06.832 INFO kablam! | Oct 31 22:18:06.832 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.832 INFO kablam! | ^^^^ Oct 31 22:18:06.832 INFO kablam! Oct 31 22:18:06.832 INFO kablam! warning: variable `closedSet` should have a snake case name such as `closed_set` Oct 31 22:18:06.832 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.832 INFO kablam! | Oct 31 22:18:06.832 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.832 INFO kablam! | ^^^^^^^^^^^^^ Oct 31 22:18:06.832 INFO kablam! Oct 31 22:18:06.832 INFO kablam! warning: variable `openSet` should have a snake case name such as `open_set` Oct 31 22:18:06.832 INFO kablam! --> src/a_star.rs:47:7 Oct 31 22:18:06.833 INFO kablam! | Oct 31 22:18:06.833 INFO kablam! 47 | let mut openSet : HashSet = HashSet::new();// The set of tentative nodes to be evaluated Oct 31 22:18:06.833 INFO kablam! | ^^^^^^^^^^^ Oct 31 22:18:06.833 INFO kablam! Oct 31 22:18:06.852 INFO kablam! warning: variable `cameFrom` should have a snake case name such as `came_from` Oct 31 22:18:06.852 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.852 INFO kablam! | Oct 31 22:18:06.852 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.852 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.852 INFO kablam! Oct 31 22:18:06.852 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.852 INFO kablam! --> src/a_star.rs:51:7 Oct 31 22:18:06.852 INFO kablam! | Oct 31 22:18:06.852 INFO kablam! 51 | let mut gScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.852 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.852 INFO kablam! Oct 31 22:18:06.852 INFO kablam! warning: variable `fScore` should have a snake case name such as `f_score` Oct 31 22:18:06.852 INFO kablam! --> src/a_star.rs:55:7 Oct 31 22:18:06.852 INFO kablam! | Oct 31 22:18:06.852 INFO kablam! 55 | let mut fScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.852 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.852 INFO kablam! Oct 31 22:18:06.904 INFO kablam! warning: unused variable: `closedSet` Oct 31 22:18:06.904 INFO kablam! --> src/a_star.rs:46:11 Oct 31 22:18:06.904 INFO kablam! | Oct 31 22:18:06.904 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.904 INFO kablam! | ^^^^^^^^^ help: consider using `_closedSet` instead Oct 31 22:18:06.916 INFO kablam! | Oct 31 22:18:06.917 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 31 22:18:06.917 INFO kablam! Oct 31 22:18:06.917 INFO kablam! warning: unused variable: `cameFrom` Oct 31 22:18:06.917 INFO kablam! --> src/a_star.rs:49:11 Oct 31 22:18:06.917 INFO kablam! | Oct 31 22:18:06.917 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.917 INFO kablam! | ^^^^^^^^ help: consider using `_cameFrom` instead Oct 31 22:18:06.917 INFO kablam! Oct 31 22:18:06.948 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.948 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.948 INFO kablam! | Oct 31 22:18:06.948 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.948 INFO kablam! | ----^^^^^^^^^ Oct 31 22:18:06.948 INFO kablam! | | Oct 31 22:18:06.948 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.948 INFO kablam! | Oct 31 22:18:06.948 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 31 22:18:06.948 INFO kablam! Oct 31 22:18:06.948 INFO kablam! warning: variable does not need to be mutable Oct 31 22:18:06.948 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.948 INFO kablam! | Oct 31 22:18:06.948 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.948 INFO kablam! | ----^^^^^^^^ Oct 31 22:18:06.948 INFO kablam! | | Oct 31 22:18:06.948 INFO kablam! | help: remove this `mut` Oct 31 22:18:06.948 INFO kablam! Oct 31 22:18:06.949 INFO kablam! warning: struct is never constructed: `Board` Oct 31 22:18:06.949 INFO kablam! --> src/a_star.rs:9:1 Oct 31 22:18:06.949 INFO kablam! | Oct 31 22:18:06.949 INFO kablam! 9 | struct Board{ Oct 31 22:18:06.949 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.949 INFO kablam! | Oct 31 22:18:06.949 INFO kablam! = note: #[warn(dead_code)] on by default Oct 31 22:18:06.949 INFO kablam! Oct 31 22:18:06.949 INFO kablam! warning: method is never used: `new` Oct 31 22:18:06.949 INFO kablam! --> src/a_star.rs:19:2 Oct 31 22:18:06.949 INFO kablam! | Oct 31 22:18:06.949 INFO kablam! 19 | fn new(width : usize)->Board{ Oct 31 22:18:06.949 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.949 INFO kablam! Oct 31 22:18:06.949 INFO kablam! warning: method is never used: `newGScoreWithInfinity` Oct 31 22:18:06.949 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.949 INFO kablam! | Oct 31 22:18:06.949 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.949 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.949 INFO kablam! Oct 31 22:18:06.949 INFO kablam! warning: method is never used: `heuristic_cost_estimate` Oct 31 22:18:06.949 INFO kablam! --> src/a_star.rs:33:2 Oct 31 22:18:06.949 INFO kablam! | Oct 31 22:18:06.949 INFO kablam! 33 | fn heuristic_cost_estimate(&self, point:Point)->usize{ Oct 31 22:18:06.949 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.949 INFO kablam! Oct 31 22:18:06.949 INFO kablam! warning: method is never used: `a_star` Oct 31 22:18:06.949 INFO kablam! --> src/a_star.rs:45:2 Oct 31 22:18:06.949 INFO kablam! | Oct 31 22:18:06.949 INFO kablam! 45 | fn a_star(&self) -> Option>{ Oct 31 22:18:06.949 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 31 22:18:06.949 INFO kablam! Oct 31 22:18:06.960 INFO kablam! warning: method `newGScoreWithInfinity` should have a snake case name such as `new_gscore_with_infinity` Oct 31 22:18:06.960 INFO kablam! --> src/a_star.rs:23:2 Oct 31 22:18:06.960 INFO kablam! | Oct 31 22:18:06.960 INFO kablam! 23 | fn newGScoreWithInfinity(&self) -> HashMap{ Oct 31 22:18:06.960 INFO kablam! | _____^ Oct 31 22:18:06.960 INFO kablam! 24 | | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.960 INFO kablam! 25 | | for i in 0..self.width{ Oct 31 22:18:06.960 INFO kablam! 26 | | for j in 0..self.height{ Oct 31 22:18:06.960 INFO kablam! ... | Oct 31 22:18:06.960 INFO kablam! 30 | | gScore Oct 31 22:18:06.960 INFO kablam! 31 | | } Oct 31 22:18:06.961 INFO kablam! | |_____^ Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:24:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 24 | let mut gScore : HashMap = HashMap::new(); Oct 31 22:18:06.961 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `absX` should have a snake case name such as `abs_x` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:34:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 34 | let absX = match(point.x>self.goal.x){//TODO refactor Oct 31 22:18:06.961 INFO kablam! | ^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `absY` should have a snake case name such as `abs_y` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:38:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 38 | let absY = match(point.y>self.goal.y){ Oct 31 22:18:06.961 INFO kablam! | ^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `closedSet` should have a snake case name such as `closed_set` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:46:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 46 | let mut closedSet : HashSet = HashSet::new();// The set of nodes already evaluated. Oct 31 22:18:06.961 INFO kablam! | ^^^^^^^^^^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `openSet` should have a snake case name such as `open_set` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:47:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 47 | let mut openSet : HashSet = HashSet::new();// The set of tentative nodes to be evaluated Oct 31 22:18:06.961 INFO kablam! | ^^^^^^^^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `cameFrom` should have a snake case name such as `came_from` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:49:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 49 | let mut cameFrom : HashMap = HashMap::new(); // The map of navigated nodes. Oct 31 22:18:06.961 INFO kablam! | ^^^^^^^^^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `gScore` should have a snake case name such as `g_score` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:51:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 51 | let mut gScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.961 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:06.961 INFO kablam! warning: variable `fScore` should have a snake case name such as `f_score` Oct 31 22:18:06.961 INFO kablam! --> src/a_star.rs:55:7 Oct 31 22:18:06.961 INFO kablam! | Oct 31 22:18:06.961 INFO kablam! 55 | let mut fScore = self.newGScoreWithInfinity(); Oct 31 22:18:06.961 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:06.961 INFO kablam! Oct 31 22:18:07.124 INFO kablam! warning: unused import: `algolib::*` Oct 31 22:18:07.124 INFO kablam! --> tests/test_sort.rs:3:5 Oct 31 22:18:07.124 INFO kablam! | Oct 31 22:18:07.124 INFO kablam! 3 | use algolib::*; Oct 31 22:18:07.124 INFO kablam! | ^^^^^^^^^^ Oct 31 22:18:07.124 INFO kablam! | Oct 31 22:18:07.124 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 31 22:18:07.124 INFO kablam! Oct 31 22:18:07.284 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.86s Oct 31 22:18:07.284 INFO kablam! su: No module specific data is present Oct 31 22:18:08.015 INFO running `"docker" "rm" "-f" "8628693e9aea41c05d25dac021decd66efa1f03d251c21af0930ac28ba4cd758"` Oct 31 22:18:08.142 INFO blam! 8628693e9aea41c05d25dac021decd66efa1f03d251c21af0930ac28ba4cd758