File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ use rayon::prelude::*;
88use std:: collections:: HashSet ; // for distinct method
99use std:: collections:: VecDeque ;
1010use std:: fmt;
11- use std:: io:: { self , Write } ;
1211
1312pub struct FlowSemigroup {
1413 //invariant: all flows have the same dimension
@@ -195,7 +194,7 @@ impl FlowSemigroup {
195194 while !to_process_mult. is_empty ( ) {
196195 let flow = to_process_mult. pop_front ( ) . unwrap ( ) ;
197196 //print!(".");
198- io:: stdout ( ) . flush ( ) . unwrap ( ) ;
197+ // io::stdout().flush().unwrap();
199198 debug ! ( "\n Close by product processing flow\n {}\n " , flow) ;
200199 /*if Self::is_covered(&flow, &processed) {
201200 //debug!("Skipped inqueue\n{}", flow);
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ use crate::downset::DownSet;
33use crate :: graph:: Graph ;
44use crate :: ideal:: Ideal ;
55use crate :: nfa;
6- use std:: io:: { self , Write } ;
76
87use std:: collections:: HashMap ;
98use std:: fmt;
@@ -39,7 +38,7 @@ impl Strategy {
3938 let mut result = false ;
4039 for ( a, downset) in self . 0 . iter_mut ( ) {
4140 // print!(".");
42- io:: stdout ( ) . flush ( ) . unwrap ( ) ;
41+ // io::stdout().flush().unwrap();
4342 let edges = edges_per_letter. get ( a) . unwrap ( ) ;
4443 let safe_pre_image = safe. safe_pre_image ( edges, maximal_finite_value) ;
4544 result |= downset. restrict_to ( & safe_pre_image) ;
You can’t perform that action at this time.
0 commit comments