1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-01 01:03:09 +00:00

[cluster] Fix non-mpi compile

fix compile of the cluster branch in the non-mpi case.

Add a TODO as a reminder for the new voting scheme.

No functional changes
This commit is contained in:
Joost VandeVondele 2018-12-19 07:30:11 +01:00 committed by Stéphane Nicolet
parent ba1c639836
commit 86953b9392
2 changed files with 3 additions and 1 deletions

View file

@ -232,6 +232,8 @@ void save(Thread* thread, TTEntry* tte,
}
}
// TODO update to the scheme in master.. can this use aggregation of votes?
void pick_moves(MoveInfo& mi) {
MoveInfo* pMoveInfo = NULL;

View file

@ -95,7 +95,7 @@ inline void save(Thread* thread, TTEntry* tte, Key k, Value v, Bound b, Depth d,
tte->save(k, v, b, d, m, ev);
}
inline void pick_moves(MoveInfo&) { }
void sum(uint64_t& val) { }
inline void sum(uint64_t& val) { (void)val; }
inline void sync_start() { }
inline void sync_stop() { }