()
| 168 | |
| 169 | @pytest.mark.skip(reason="Variance-minimizing partitioning returns different result.") |
| 170 | def test_float_lastheavy(): |
| 171 | weights = [0., 1.1, 1.9, 3., 30.] |
| 172 | P = 2 |
| 173 | parts = partition_balanced(weights, P) |
| 174 | assert_valid_partition(weights, parts, P) |
| 175 | assert parts == [0, 4, 5] |
| 176 | |
| 177 | |
| 178 | def test_float_midheavy(): |
nothing calls this directly
no test coverage detected