summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2018-03-12 12:25:54 +0100
committertomsmeding <tom.smeding@gmail.com>2018-03-12 12:25:54 +0100
commit0369c84bcaea4a1e3c7e41be4ece2c815ab487e3 (patch)
tree70b135bc366165c872235dfc8e55b1b10ef62612 /main.cpp
parentf0163d7e905a65c13e2fab35bf3b8fec3c7b726d (diff)
Fixes
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 1419b08..6f8a50b 100644
--- a/main.cpp
+++ b/main.cpp
@@ -57,7 +57,7 @@ int main() {
for (size_t i = 0; i < subs.size(); i++) {
int v = alphabeta<evaluate_pieceScore>(subs[i], AB_MAXDEPTH);
if (i != 0) cout << ", ";
- cout << v << endl;
+ cout << v << flush;
v *= multfactor;
if (v > maxval) {
maxval = v;