diff --git a/src/init.cpp b/src/init.cpp index 285df964..5939c2a5 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -150,10 +150,6 @@ void InitReductions() { for (int depth = 0; depth < 64; depth++) { lmp_margin[depth][0] = 1.5 + 0.5 * std::pow(depth, 2.0); // Not improving lmp_margin[depth][1] = 3.0 + 1.0 * std::pow(depth, 2.0); // improving - - see_margin[depth][1] = seeQuietMargin() * std::pow(depth, 1.0); // Quiet moves - see_margin[depth][0] = seeNoisyMargin() * std::pow(depth, 2.0); // Non quiets - } } diff --git a/src/types.h b/src/types.h index 5645858c..3a7411ae 100644 --- a/src/types.h +++ b/src/types.h @@ -8,7 +8,6 @@ inline int reductions[2][64][64]; inline int lmp_margin[64][2]; -inline int see_margin[64][2]; inline const std::string start_position = "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";