Skip to content

Commit 0b92413

Browse files
authoredJan 21, 2023
Merge pull request #113 from mizar/work_clippy
Work clippy
2 parents 307574c + a62e93b commit 0b92413

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed
 

‎src/maxflow.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ where
2222
assert!(Cap::zero() <= cap);
2323
let m = self.pos.len();
2424
self.pos.push((from, self.g[from].len()));
25-
let rev = self.g[to].len() + if from == to { 1 } else { 0 };
25+
let rev = self.g[to].len() + usize::from(from == to);
2626
self.g[from].push(_Edge { to, rev, cap });
2727
let rev = self.g[from].len() - 1;
2828
self.g[to].push(_Edge {

‎src/string.rs

+4-10
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,8 @@ fn sa_doubling(s: &[i32]) -> Vec<usize> {
4141
sa.sort_by(cmp);
4242
tmp[sa[0]] = 0;
4343
for i in 1..n {
44-
tmp[sa[i]] = tmp[sa[i - 1]]
45-
+ if cmp(&sa[i - 1], &sa[i]) == std::cmp::Ordering::Less {
46-
1
47-
} else {
48-
0
49-
};
44+
tmp[sa[i]] =
45+
tmp[sa[i - 1]] + i32::from(cmp(&sa[i - 1], &sa[i]) == std::cmp::Ordering::Less);
5046
}
5147
std::mem::swap(&mut tmp, &mut rnk);
5248
k *= 2;
@@ -253,11 +249,9 @@ pub fn lcp_array_arbitrary<T: Ord>(s: &[T], sa: &[usize]) -> Vec<usize> {
253249
rnk[sa[i]] = i;
254250
}
255251
let mut lcp = vec![0; n - 1];
256-
let mut h = 0;
252+
let mut h: usize = 0;
257253
for i in 0..n - 1 {
258-
if h > 0 {
259-
h -= 1;
260-
}
254+
h = h.saturating_sub(1);
261255
if rnk[i] == 0 {
262256
continue;
263257
}

0 commit comments

Comments
 (0)