Skip to content

Commit

Permalink
Move slower params
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdrozd committed Jun 13, 2024
1 parent d3434b3 commit fd62573
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/tree.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,19 +273,19 @@ fn test_tree() {
//
((2, 3), 1, 135),
((2, 3), 0, 143),
//
((4, 2), 1, 6_769),
((4, 2), 0, 16_591),
//
((2, 4), 1, 30_522),
((2, 4), 0, 90_555),
];
}

#[test]
#[ignore]
fn test_tree_slow() {
assert_trees![
((4, 2), 1, 6_769),
((4, 2), 0, 16_591),
//
((2, 4), 1, 30_522),
((2, 4), 0, 90_555),
//
((5, 2), 1, 3_241_903),
//
((2, 5), 1, 13_073_485),
Expand Down

0 comments on commit fd62573

Please sign in to comment.