Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
skoren committed Apr 11, 2024
1 parent 742ca65 commit da64bdd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/trio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ pub fn assign_parental_groups(
tot >= settings.assign_cnt
&& node_len <= tot * settings.assign_sparsity
&& ((x as f64) > settings.assign_ratio * (y as f64) - 1e-6
|| (node_len > solid_len && (x as f64) > settings.solid_ratio * (y as f64) - 1e-6 && node_cov < solid_cov - 1e-6))
|| (node_len > solid_len
&& (x as f64) > settings.solid_ratio * (y as f64) - 1e-6
&& node_cov < solid_cov - 1e-6))
};

let issue_node_f = |x: usize, y: usize, node_len: usize| {
Expand Down

0 comments on commit da64bdd

Please sign in to comment.