We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e324c8 commit 86a8c33Copy full SHA for 86a8c33
MiniZincIDE/process.cpp
@@ -332,6 +332,11 @@ void SolveProcess::processStdout(QString line)
332
333
// Can appear in any state
334
if (trimmed.startsWith("%%%mzn-stat")) {
335
+ if (!outputBuffer.isEmpty()) {
336
+ // For now, also process any output gragment so it appears in the correct order
337
+ emit fragment(outputBuffer.join(""));
338
+ outputBuffer.clear();
339
+ }
340
emit statisticOutput(line);
341
return;
342
} else if (trimmed.startsWith("%%%mzn-progress")) {
0 commit comments