@@ -1699,14 +1699,15 @@ impl<R: Idx, C: Idx> BitMatrix<R, C> {
1699
1699
let ( read_start, read_end) = self . range ( read) ;
1700
1700
let ( write_start, write_end) = self . range ( write) ;
1701
1701
let words = & mut self . words [ ..] ;
1702
- let mut changed = false ;
1702
+ let mut changed = 0 ;
1703
1703
for ( read_index, write_index) in iter:: zip ( read_start..read_end, write_start..write_end) {
1704
1704
let word = words[ write_index] ;
1705
1705
let new_word = word | words[ read_index] ;
1706
1706
words[ write_index] = new_word;
1707
- changed |= word != new_word;
1707
+ // See `bitwise` for the rationale.
1708
+ changed |= word ^ new_word;
1708
1709
}
1709
- changed
1710
+ changed != 0
1710
1711
}
1711
1712
1712
1713
/// Adds the bits from `with` to the bits from row `write`, and
@@ -1715,14 +1716,7 @@ impl<R: Idx, C: Idx> BitMatrix<R, C> {
1715
1716
assert ! ( write. index( ) < self . num_rows) ;
1716
1717
assert_eq ! ( with. domain_size( ) , self . num_columns) ;
1717
1718
let ( write_start, write_end) = self . range ( write) ;
1718
- let mut changed = false ;
1719
- for ( read_index, write_index) in iter:: zip ( 0 ..with. words . len ( ) , write_start..write_end) {
1720
- let word = self . words [ write_index] ;
1721
- let new_word = word | with. words [ read_index] ;
1722
- self . words [ write_index] = new_word;
1723
- changed |= word != new_word;
1724
- }
1725
- changed
1719
+ bitwise ( & mut self . words [ write_start..write_end] , & with. words , |a, b| a | b)
1726
1720
}
1727
1721
1728
1722
/// Sets every cell in `row` to true.
0 commit comments