Skip to content

Commit 4da87b7

Browse files
jolarsCopilot
andauthored
Update src/rust/src/lib.rs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent da7fb6d commit 4da87b7

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

src/rust/src/lib.rs

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1936,20 +1936,9 @@ fn rs_not_m_separated_for_all_subsets(
19361936
}
19371937
}
19381938

1939-
if session
1940-
.as_mut()
1941-
.m_separated(&[a], &[b], &z_base)
1942-
.unwrap_or_else(|e| throw_r_error(e))
1943-
{
1944-
return false;
1945-
}
1946-
19471939
let m = other_u.len();
1948-
if m == 0 {
1949-
return true;
1950-
}
19511940

1952-
for k in (1..=m).rev() {
1941+
for k in (0..=m).rev() {
19531942
let mut idx: Vec<usize> = (0..k).collect();
19541943
loop {
19551944
z_base.truncate(cond_vars.len());

0 commit comments

Comments
 (0)