Skip to content

Commit

Permalink
🔖 Version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
adri326 committed Nov 28, 2020
1 parent aa6bf71 commit ddb13cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chess5dtools"
version = "0.1.3"
version = "0.1.4"
authors = ["Adrien Burgun <adrien.burgun@orange.fr>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ fn main() -> std::io::Result<()> {
16,
std::time::Duration::new(5, 0),
);
if let Some((mut best, value)) = best_move {
if let Some((best, value)) = best_move {
println!("Best move:");
println!("{:?}: {}", best.0, value);
for b in &best.1 {
Expand Down

0 comments on commit ddb13cd

Please sign in to comment.