File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1+ Jan 8, 2016: Version v4.0
2+ - Improved search depth on typical time controls.
3+ - Many more optimizations and position evaluation tweaks.
4+
15Oct 26, 2015: Version v3.1
26 - Fine-tuned internal evaluation parameters and weights.
37 - Updated mobility evaluation to take into account pinned pieces.
Original file line number Diff line number Diff line change 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
66GOFLAGS = -gcflags -B
77PACKAGE = github.com/michaeldv/donna/cmd/donna
88
99build :
10- go build -x $(GOFLAGS ) $(PACKAGE )
10+ go build -x -o ./bin/donna $(GOFLAGS ) $(PACKAGE )
1111
1212install :
1313 go install -x $(GOFLAGS ) $(PACKAGE )
Original file line number Diff line number Diff 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
7575USING 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>
Original file line number Diff line number Diff 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.
2424const (
You can’t perform that action at this time.
0 commit comments