Skip to content

Commit 3490d2f

Browse files
committed
README, TODO, Makefile update
1 parent dab82b4 commit 3490d2f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NAME=claudia
22
CC=gcc
3-
CFLAGS= -std=c99 -pthread -Wall -Wno-unused -Ofast -flto
3+
CFLAGS= -std=c99 -pthread -Wall -Wsign-compare -Winline -Wno-unused -Ofast -flto
44
DEPS=make.dep
55
CSRCS=$(wildcard *.c)
66
HSRCS=$(wildcard *.h)

README

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ The engine uses:
2424
* check extensions,
2525
* static exchange evaluation,
2626
* killer moves heuristic
27-
* transposition tables.
27+
* transposition tables,
28+
* pondering.
2829

29-
Its leaf evaluation function is still very rudimentary; currently it takes into account material advantage, piece mobility and pawn structure, and lacks most specific ending knowledge.
30+
Its leaf evaluation function is still very rudimentary; currently it takes into account material advantage, piece mobility and pawn structure, and uses a tapered evaluation with limited ending knowledge.
3031

3132
Claudia supports opening books in Polyglot (.bin) format, and will attempt to use an opening book named "book.bin" and placed in its same directory. The default book has been built from over forty thousand high-quality tournament games played by Grand Masters and International Masters over the last five years.
3233

@@ -38,7 +39,7 @@ Claudia is obviously named after Claude E. Shannon (1916 - 2001).
3839

3940
COPYRIGHT
4041

41-
This program has been written from scratch by Antonio Garro, and is released under a permissive BSD license: the code can be used and modified, as long as proper attribution is maintained. Please refer to license in the source code for further details.
42+
This program has been written from scratch by Antonio Garro, and is released under a permissive BSD license: the code can be used and modified, as long as proper attribution is maintained. Please refer to the license in the source code for further details.
4243

4344
The Polyglot opening book support uses code written by Michel Van den Bergh and released by such author into the public domain.
4445

TODO

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
* Pawn structure evaluation medium ongoing
2525

26-
* Ponder low pending
26+
* Ponder - done
2727

2828
* Get rid of global board - done
2929

@@ -42,3 +42,5 @@
4242
* Lazy evaluation - done
4343

4444
* Killer moves - done
45+
46+
* Bishop pair - done

0 commit comments

Comments
 (0)