summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
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;