Skip to content

Commit 71c2cae

Browse files
committed
respond to codepilot suggestions
1 parent 9b640ef commit 71c2cae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/semigroup.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ impl FlowSemigroup {
195195
while !to_process_mult.is_empty() {
196196
let flow = to_process_mult.pop_front().unwrap();
197197
//print!(".");
198-
io::stdout().flush().unwrap();
198+
//io::stdout().flush().unwrap();
199199
debug!("\nClose by product processing flow\n{}\n", flow);
200200
/*if Self::is_covered(&flow, &processed) {
201201
//debug!("Skipped inqueue\n{}", flow);

src/strategy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl Strategy {
3939
let mut result = false;
4040
for (a, downset) in self.0.iter_mut() {
4141
// print!(".");
42-
io::stdout().flush().unwrap();
42+
//io::stdout().flush().unwrap();
4343
let edges = edges_per_letter.get(a).unwrap();
4444
let safe_pre_image = safe.safe_pre_image(edges, maximal_finite_value);
4545
result |= downset.restrict_to(&safe_pre_image);

0 commit comments

Comments
 (0)