Subversion Repositories Games.Chess Giants

Rev

Rev 169 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 169 Rev 185
Line 4... Line 4...
4
  Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
4
  Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5
  Copyright (C) 2015-2018 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
5
  Copyright (C) 2015-2019 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
6
 
6
 
7
  Stockfish is free software: you can redistribute it and/or modify
7
  Stockfish is free software: you can redistribute it and/or modify
8
  it under the terms of the GNU General Public License as published by
8
  it under the terms of the GNU General Public License as published by
9
  the Free Software Foundation, either version 3 of the License, or
9
  the Free Software Foundation, either version 3 of the License, or
10
  (at your option) any later version.
10
  (at your option) any later version.
Line 27... Line 27...
27
 
27
 
28
class Position;
28
class Position;
29
 
29
 
30
namespace Eval {
30
namespace Eval {
31
 
31
 
32
const Value Tempo = Value(20); // Must be visible to search
32
constexpr Value Tempo = Value(20); // Must be visible to search
33
 
-
 
34
extern Score Contempt;
-
 
35
 
33
 
36
std::string trace(const Position& pos);
34
std::string trace(const Position& pos);
37
 
35
 
38
Value evaluate(const Position& pos);
36
Value evaluate(const Position& pos);
39
}
37
}