shithub: moonfish

Download patch

ref: 8fc9b9313be99ce802e1bea2f90eb789b0b91a32
parent: 512b44d38d656aa6a01ea47794e8541fbaa2d515
author: zamfofex <zamfofex@twdb.moe>
date: Tue Nov 14 08:25:24 EST 2023

simplify time management slightly

--- a/search.c
+++ b/search.c
@@ -181,7 +181,7 @@
 	int i;
 	int score;
 	
-	d = (our_time * 9 / 8 - their_time) / 4;
+	d = (our_time - their_time) / 4;
 	if (d < 0) d = 0;
 	if (d > 20) d = 20;
 	
--