From: Marco Costalba Date: Sat, 2 May 2015 00:36:39 +0000 (+0200) Subject: Split PSQT init from Position init X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=578b21bbeedc41b6e0d1b2df46887b1636a78e2b;hp=578b21bbeedc41b6e0d1b2df46887b1636a78e2b;p=stockfish Split PSQT init from Position init Easier for tuning psq tables: TUNE(myParameters, PSQT::init); Also move PSQT code in a new *.cpp file, and retire the old and hacky psqtab.h that required to be included only once to work correctly, this is not idiomatic for a header file. Give wide visibility to psq tables (previously visible only in position.cpp), this will easy the use of psq tables outside Position, for instance in move ordering. Finally trivial code style fixes of the latest patches. Original patch of Lucas Braesch. No functional change. ---