Skip to content

Commit e2b14d6

Browse files
committed
Fixed dataflow bug that caused a blocked thread when writing results
1 parent ddbef31 commit e2b14d6

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ All notable changes to this project will be documented in this file.
1414
* added feature, selecting a waveform in viewer selects net in graph view as well
1515
* fixed bug in waveform viewer, make sure that deleting a controller causes closing the tab
1616
* added 'hover over node' feature in dot viewer
17-
* fixed broken initialization of DANA plugin when starting via CLI
17+
* dataflow
18+
* fixed broken initialization of DANA plugin when starting via CLI
19+
* fixed bug that caused a blocked thread when writing results
1820
* changed behavior of GUI plugin manager to keep only those plugins loaded which are requested by user
1921
* fixed bug in the bitorder propagation algorithm that would assign a wrong propagation order if pingroups with direction none were given as parameters
2022

plugins/dataflow_analysis/src/processing/processing.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ namespace hal
107107
}
108108

109109
ctx.finished_passes++;
110-
m_progress_printer.print_progress((float)ctx.finished_passes / ctx.current_passes.size(),
111-
std::to_string(ctx.finished_passes) + "\\" + std::to_string(ctx.current_passes.size()) + " ("
112-
+ std::to_string(ctx.new_unique_groupings.size()) + " new results)");
113110
}
111+
m_progress_printer.print_progress((float)ctx.finished_passes / ctx.current_passes.size(),
112+
std::to_string(ctx.finished_passes) + "\\" + std::to_string(ctx.current_passes.size()) + " ("
113+
+ std::to_string(ctx.new_unique_groupings.size()) + " new results)");
114114
}
115115
}
116116
}

0 commit comments

Comments
 (0)