From: mstembera Date: Mon, 16 Nov 2015 23:39:11 +0000 (-0800) Subject: Clean up RootMove less operator X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=79f393084af73655c869af126281bb2a7c2cc396;hp=79f393084af73655c869af126281bb2a7c2cc396;ds=sidebyside Clean up RootMove less operator This is used by std::stable_sort() to sort moves from highest score to lowest score. 1) The comment is incorrect since highest to lowest means descending. 2) It's more natural to implement a less operator using another less operator rather than a greater operator. No functional change. Resolves #504 ---