Skip to content

Commit a5d4c04

Browse files
author
Michael Dvorkin
committed
Version v4.0 release
1 parent 064198b commit a5d4c04

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Jan 8, 2016: Version v4.0
2+
- Improved search depth on typical time controls.
3+
- Many more optimizations and position evaluation tweaks.
4+
15
Oct 26, 2015: Version v3.1
26
- Fine-tuned internal evaluation parameters and weights.
37
- Updated mobility evaluation to take into account pinned pieces.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# Use of this source code is governed by a MIT-style license that can
33
# be found in the LICENSE file.
44

5-
VERSION = 4.0rc1
5+
VERSION = 4.0
66
GOFLAGS = -gcflags -B
77
PACKAGE = github.com/michaeldv/donna/cmd/donna
88

99
build:
10-
go build -x $(GOFLAGS) $(PACKAGE)
10+
go build -x -o ./bin/donna $(GOFLAGS) $(PACKAGE)
1111

1212
install:
1313
go install -x $(GOFLAGS) $(PACKAGE)

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ BUILDING FROM SOURCE
7070
http://golang.org/dl/). From Donna source directory run "make" or "go build"
7171
command:
7272

73-
$ go build -gcflags -B ./cmd/donna.go
73+
$ go build -o ./bin/donna -gcflags -B github.com/michaeldv/donna/cmd/donna
7474

7575
USING DONNA
7676

@@ -79,7 +79,7 @@ USING DONNA
7979
play against it in interactive mode:
8080

8181
$ ./donna -i
82-
Donna v3.1 Copyright (c) 2014-2016 by Michael Dvorkin. All Rights Reserved.
82+
Donna v4.0 Copyright (c) 2014-2016 by Michael Dvorkin. All Rights Reserved.
8383
Type ? for help.
8484

8585
donna>

data.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import `regexp`
1818
// -― FORTRAN manual for Xerox Computers
1919

2020
// Your chess engine hates you when you are working on a new version.
21-
const Version = `v4.0rc1`
21+
const Version = `4.0`
2222

2323
// Limits and conventions.
2424
const (

0 commit comments

Comments
 (0)