Lower search_depth on a few variants
authorBenjamin Auder <benjamin.auder@somewhere>
Tue, 24 Mar 2020 15:17:07 +0000 (16:17 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Tue, 24 Mar 2020 15:17:07 +0000 (16:17 +0100)
client/src/variants/Cannibal.js
client/src/variants/Capture.js
client/src/variants/Losers.js

index b66ac38..3a87a72 100644 (file)
@@ -231,10 +231,6 @@ export class CannibalRules extends ChessRules {
     };
   }
 
-  static get SEARCH_DEPTH() {
-    return 4;
-  }
-
   getNotation(move) {
     let notation = super.getNotation(move);
     const lastRank = (move.appear[0].c == "w" ? 0 : 7);
index d7cc57e..413356d 100644 (file)
@@ -40,8 +40,4 @@ export class CaptureRules extends ChessRules {
       return V.KeepCaptures(moves);
     return moves;
   }
-
-  static get SEARCH_DEPTH() {
-    return 4;
-  }
 };
index 4bc6a61..b39d24f 100644 (file)
@@ -65,10 +65,6 @@ export class LosersRules extends ChessRules {
     return this.turn == "w" ? "1-0" : "0-1";
   }
 
-  static get SEARCH_DEPTH() {
-    return 4;
-  }
-
   evalPosition() {
     // Less material is better (more subtle in fact but...)
     return -super.evalPosition();