Skip to content

Commit

Permalink
Version v4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Dvorkin committed Jan 8, 2016
1 parent 064198b commit a5d4c04
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Jan 8, 2016: Version v4.0
- Improved search depth on typical time controls.
- Many more optimizations and position evaluation tweaks.

Oct 26, 2015: Version v3.1
- Fine-tuned internal evaluation parameters and weights.
- Updated mobility evaluation to take into account pinned pieces.
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# Use of this source code is governed by a MIT-style license that can
# be found in the LICENSE file.

VERSION = 4.0rc1
VERSION = 4.0
GOFLAGS = -gcflags -B
PACKAGE = github.com/michaeldv/donna/cmd/donna

build:
go build -x $(GOFLAGS) $(PACKAGE)
go build -x -o ./bin/donna $(GOFLAGS) $(PACKAGE)

install:
go install -x $(GOFLAGS) $(PACKAGE)
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ BUILDING FROM SOURCE
http://golang.org/dl/). From Donna source directory run "make" or "go build"
command:

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

USING DONNA

Expand All @@ -79,7 +79,7 @@ USING DONNA
play against it in interactive mode:

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

donna>
Expand Down
2 changes: 1 addition & 1 deletion data.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import `regexp`
// -― FORTRAN manual for Xerox Computers

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

// Limits and conventions.
const (
Expand Down

0 comments on commit a5d4c04

Please sign in to comment.