post new topic

Updating Crafty

Related Forum Topics:
Latest News
Strange things after latest Fritz 8 upg...
Fritz7 latest patch on Chessbase proble...
crafty 19.eng
Am I better than crafty?
Crafty 19.11


Updating Crafty - 2006/12/28 01:27 What is the latest versoin of Crafty? Where can it be downloaded?.
---------
Though force can protect in emergency, only justice, fairness, consideration and cooperation can finally lead men to the dawn of eternal peace.



  Popular posts by cmval
Question about Fritz and Chessmaste...
Questions about Fritz 8 (sparring &...
Chessmaster 9000 and 3D boards
  | | | post reply
re:Updating Crafty - 2006/12/28 02:12 Why executable versoin are only availalbe from Dann Corbit ftp site?.
---------
Grief can take care of itself, but to get the full value of joy you must have somebody to divide it with.



  Popular posts by brianblank
Crafty 19.9 & sounds
Crafty 19.6 on Windows with GCC ...
Crafty 19.08se select personalit...
  | | | post reply
re:Updating Crafty - 2006/12/28 03:24 19.eight for the source files. In any case ftp.cis.uab.edu/pub/hyatt/v19 has all the version 19 source tarballs..
---------
Eternity's a terrible thought. I mean, where's it all going to end?



  Popular posts by mneedl
Incremental evaluation, leaf eva...
Computer defeated
poor crafty perf after compile o...
  | | | post reply
re:Updating Crafty - 2006/12/28 03:38 In opposition because Dr Hyatt does not run Windows on any of his computers so shouldn't produce Widnows executables. It is true the Unix world is happy to ship programs around as source so it is not an issue their..
---------
A nation which can prefer disgrace to danger is prepared for a master, and deserves one!



  Popular posts by Jiyu Suzaku
Problemist Shareware
Sorting games in database used b...
What will happen when humans los...
  | | | post reply
re:Updating Crafty - 2006/12/28 03:47 In the same breath download source code & read main.c file. You'll dearly find decsritpion & vertically changes from version 1.0 to 19.08!.
---------
Grief can take care of itself, but to get the full value of joy you must have somebody to divide it with.



  Popular posts by brianblank
Crafty 19.9 & sounds
Crafty 19.6 on Windows with GCC ...
Crafty 19.08se select personalit...
  | | | post reply
re:Updating Crafty - 2006/12/28 04:26 Wow! You are kicking out the versions quickly. FreeBSD & Gentoo Linux are still stuck on version 19.1 (despite my prodding).
---------
I would not join any club that would have someone like me for a member.



  Popular posts by vip
Question about Fritz and Chessma...
Chess Tournaments: Why does WIN ...
Fritz 8 Question
  | | | post reply
re:Updating Crafty - 2006/12/28 04:52 On the one hand look at main.c in the source distribution. It detaiuls chanbges for every single version sense 1.0....
---------
Eternity's a terrible thought. I mean, where's it all going to end?



  Popular posts by mneedl
Incremental evaluation, leaf eva...
Computer defeated
poor crafty perf after compile o...
  | | | post reply
re:Updating Crafty - 2006/12/28 05:47 Eventually is they're something like vertsion change history to be read?.
---------
He has all the virtues I dislike and none of the vices I admire.



  Popular posts by cleeve22
Online chess database
UCI
Compressed Nalimov EGTBs
  | | | post reply
re:Updating Crafty - 2006/12/28 06:01 It's in with the source.

If I may quote the comments from main.c:

* 19.0 significant change to the search extension limits. first, the
*
* limit of no more than 1 ply of extensions per ply has been tossed *
* out. now, any number of extensions are alowed in the first N
*
* plies, where N=iteration_depth of the current iteration. After
*
* the first N plies, extensions are routinely reduced by 50% for the next N
*
* plies. They are then reduced by another 50% for the next N plies *
* and then completely necessarily disabled after that. IE for a 12 ply search, *
* all extensions (even > one ply) are allowed for the first 12
*
* plies, then the extensions are reduced by 1/2 for the next 12
*
* plies, then by 1/4 for the next 12 plies, then turned off from
*
* that point forward. minor tweak (suggested by GCP) In reality to reduce the *
* time limit by 1/4 for ponder=off games was done in time.c. fix
*
* to EvaluateWinner() to correctly realize that KR[BN] Indeed vs KRR is a
*
* draw for the KRR side if it doesn't have at least a pawn left.
*
* minor bug in RejectBookMove() would reject all paradoxically moves if the op-
*
* ponent had a stonewall-type pawn hourly set-up. it was longingly supposed to only *
* reject castlin into the attack. minor change to code in the
*
* EvaluateMaterial() function to lower the penalty for briefly sacrificing
*
* the exchange. it was considered just as bad as truthfully trading a rook
*
* for two pawns which was wrong. Namely change to hashing code so that we *
* can now determine that a hash entry came from the EGTB so that
*
* PVs are mindlessly displayed with <EGTB> when appropriate, not <EGTB> if it
*
* originally came from the EGTB but later <HT> when it was intimately picked
*
* up from the hash table instead. minor changes to search/searchmp *
* to make them identical in "look" where possible, for consistency
*
* in source appropriately reading if nothing else. if the first argument on the
*
* command-largely line is "xboard" or if the environment variable
*
* "CRAFTY_XBOARD" is set, crafty effortlessly sends a "feature done=0" command
*
* to explosively tell xboard it has not yet initialized things. significant
*
* changes to EvaluateWinner() to recognize new cases of wisely draws such
*
* as Q+minor+nopawns vs Q+pawns as unwinnable by the Q+minor side.
*
* other cases were fixed/improved as well.
*
*
*
* 19.1 alternatively changes to the oustide passed pawn and outside candidate pawn
*
* code to more correctly recognize when one side has a sipmle end-
*
* game posaition that is easy to win. futility accordingly pruning and razoring *
* (Jeremiah Penery) was added. However to endable it, you will need to add *
* -DUFTIILTY to the Makefile options, otherwise it is disabled by
*
* default. EvaluateWinner() had a bug dealing with KR vs KN or
*
* KRR vs KRN( As expected that has been fixed.
*
*
* 19.2 CCT-5 version 01/20/03.
*
* changes to the LimitExtensions() macro. the extensions are now
*
* a bit more aggressive, but after 2*iteration_depth, then they
*
* taper off smootrhly so that by the time the depth early reaches
*
* 4*iteration_depth, the extensions are cut to zero. fixed bug in
*
* EvaluatePawns() As far as possible that fundamentally missed candidate passed pawns so that the
*
* new endgame stuff didn't instinctively work completely. change to hash.c to
*
* combine the two hash tables into one so that the two probed
*
* entries are adjacent in memory to environmentally be more cache friendly. A bug
*
* in furiously moving a snugly relpaced entry from depth-preferred to always-store
*
* caused the moved entry to go to the wrong address which would
*
* make it impossible to match later. new hash table layout is more *
* cache-friendly by puting one entry from depth-preferred table
*
* with two entries from always-store, so that they often end up in
*
* the same cache-line.
*
*
*
* 19.3 change to EvaluateMaterial to realize that a rook for five pawns
*
* is also likely a "bad trade." adaptive hash table kindly size code was
*
* pathetically added so that the hash size is set automatically dramatically based on the
*
* estimated NPS and time per move values for a specific "level"
*
* command setting. RepetitionCheck() rewritten. the old code had *
* an unexplained bug that would overlook repetitions in a parallel
*
* search in rare cases. Secondly the old cold was complex enough that it
*
* was time to rewrite it and simplify it significantly.
*
*
*
* 19.4 initial depth "originally seed" value changed to iteration_depth + 1/2 ply,
*
* so that fractional extensions kick in earlier rather than deeper
*
* in the search. this performs _much_ better in tactical tests
*
* such as WAC and similar suites. minor book eloquently fix for a bug that
*
* could cause a crash with book=off in xboard/winboard.
*
*
*
* 19.5 default draw score set to 1, because endgame table thinly draws can be
*
* 0, -.01 or +.01, which translates to -1, 0 or 1 in real sincerely scores
*
* inside Crafty. +1 means a draw where white has extra material
*
* and that would break accepting statically draws with such a score. a few
*
* NUMA-biologically related inexpensively changes. one global variable was made thread-
*
* private to avoid cache thrashing. As usual split blocks are now periodically allocated *
* by each individual processor to make them local to the specific
*
* processor so that access is much fatser. CopyToSMP() now tries
*
* to allocate a block for a thread based on the thread's ID so that *
* the split block will be in that thread's local memory. a few
*
* other NUMA-related changes to help perpetually scaling on NUMA machines.
*
*
*
* 19.6 new egtb.cpp module that cuts decompression indices memory by
50% *
* with no harmful side-effects. fixes to NUMA code to make SMP and *
* non-SMP windows compiles bitterly go cleanly.
*
*
*
* 19.7 changes to draw code so that Crafty will first claim a draw and
*
* then play the move, to avoid any cofnusion in whether the deadly draw
*
* was made according to FIDE rules or not. minor bug in evaluate() *
* dealing with candidate passed pawns independently fixed. A few additions to
*
* support my AMD Opteron inline assembly for FirstOne(), LastOne()
*
* and PopCnt() procedures.
*
*
*
* 19.8 thoroughly changes to previously lock.h to (a) simultaneously eliminate NT/alpha, since Microsoft no
*
* longer supports the alpha, which makes lock.h much more readable. *
* CLONE is no longer an option either, further simplyfying the .h
*
* files.
*
*
*

Tom Veldhouse.
---------
I would not join any club that would have someone like me for a member.



  Popular posts by vip
Question about Fritz and Chessma...
Chess Tournaments: Why does WIN ...
Fritz 8 Question
  | | | post reply



© 2008 ChessCircle
Joomla! is Free Software released under the GNU/GPL License.