Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "cinder"
version = "0.5.2"
version = "0.6.0"
authors = ["Bruno Dutra <brunocodutra@gmail.com>"]
edition = "2024"
description = "A hobby chess engine"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CRATE_VERSION := 0.5.2
CRATE_VERSION := 0.6.0
TARGET_DIR := $(CURDIR)/target
BIN_DIR := $(TARGET_DIR)/bin

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Cinder is a hobby chess engine written in Rust.

| Version | [CCRL Blitz] | [CCRL 40/15] | [CEGT 40/4] | [CEGT 40/20] |
|----------|:------------:|:------------:|:-----------:|:------------:|
| [v0.6.*] | - | - | - | - |
| [v0.5.*] | 3739 | 3606 | - | 3588 |
| [v0.4.*] | 3686 | 3561 | - | 3534 |
| [v0.3.*] | 3658 | 3547 | - | 3511 |
Expand Down Expand Up @@ -92,6 +93,7 @@ Cinder is distributed under the terms of the GPL-3.0 license, see [LICENSE] for
[Leela Chess Zero]: https://lczero.org/
[Open Database License]: https://opendatacommons.org/licenses/odbl/1-0/

[v0.6.*]: https://github.com/brunocodutra/cinder/releases/tag/v0.6.0
[v0.5.*]: https://github.com/brunocodutra/cinder/releases/tag/v0.5.2
[v0.4.*]: https://github.com/brunocodutra/cinder/releases/tag/v0.4.1
[v0.3.*]: https://github.com/brunocodutra/cinder/releases/tag/v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion lib/uci/outbound.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl Display for Outbound {
write!(f, " nodes {nodes} nps {nps} tbhits {tbhits}")?;

if let Some(pv) = pv {
const NORMALIZE_TO_PAWN_VALUE: i32 = 70;
const NORMALIZE_TO_PAWN_VALUE: i32 = 78;
let normalized_score = pv.score().cast::<i32>() * 100 / NORMALIZE_TO_PAWN_VALUE;

match pv.score().mate() {
Expand Down
Loading