Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
joansalasoler committed Sep 1, 2020
2 parents f3d18f0 + fd3953b commit c3a2cf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/com/joansala/engine/Negamax.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class Negamax implements Engine {
public static final int MAX_DEPTH = 126;

/** The minimum depth allowed for a search */
public static final int MIN_DEPTH = 4;
public static final int MIN_DEPTH = 2;

/** Search timer */
private final Timer timer;
Expand Down
2 changes: 1 addition & 1 deletion src/com/joansala/engine/UCIService.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class UCIService {
/** Requested hash table capacity for subsequent computations */
private int requestedHashSize = minHashSize;

/** Defaukt contempt factor for the engine */
/** Default contempt factor for the engine */
private int contempt = Game.DRAW_SCORE;

/** If debug mode is enabled the engine sends additional infos */
Expand Down

0 comments on commit c3a2cf9

Please sign in to comment.