// Copyright © 2024 Mikhail Hogrefe
//
// This file is part of Malachite.
//
// Malachite is free software: you can redistribute it and/or modify it under the terms of the GNU
// Lesser General Public License (LGPL) as published by the Free Software Foundation; either version
// 3 of the License, or (at your option) any later version. See .
use malachite_base::bools::exhaustive::exhaustive_bools;
use malachite_base::nevers::nevers;
use malachite_base::num::exhaustive::exhaustive_unsigneds;
use malachite_base::test_util::vecs::exhaustive::{
exhaustive_vecs_helper_helper, exhaustive_vecs_small_helper_helper,
};
use malachite_base::tuples::exhaustive::exhaustive_units;
use malachite_base::vecs::exhaustive::exhaustive_vecs_length_inclusive_range;
use std::fmt::Debug;
fn exhaustive_vecs_length_inclusive_range_helper(
a: u64,
b: u64,
xs: I,
out: &[&[I::Item]],
) where
I::Item: Clone + Debug + Eq,
{
exhaustive_vecs_helper_helper(exhaustive_vecs_length_inclusive_range(a, b, xs), out);
}
fn exhaustive_vecs_length_inclusive_range_small_helper(
a: u64,
b: u64,
xs: I,
out_len: usize,
out: &[&[I::Item]],
) where
I::Item: Clone + Debug + Eq,
{
exhaustive_vecs_small_helper_helper(
exhaustive_vecs_length_inclusive_range(a, b, xs),
out_len,
out,
);
}
#[test]
fn test_exhaustive_vecs_length_inclusive_range() {
exhaustive_vecs_length_inclusive_range_small_helper(0, 4, nevers(), 1, &[&[]]);
exhaustive_vecs_length_inclusive_range_small_helper(6, 9, nevers(), 0, &[]);
exhaustive_vecs_length_inclusive_range_small_helper(5, 3, exhaustive_bools(), 0, &[]);
exhaustive_vecs_length_inclusive_range_small_helper(
0,
4,
exhaustive_units(),
5,
&[&[], &[()], &[(), ()], &[(), (), (), ()], &[(), (), ()]],
);
exhaustive_vecs_length_inclusive_range_small_helper(
1,
1,
exhaustive_bools(),
2,
&[&[false], &[true]],
);
exhaustive_vecs_length_inclusive_range_small_helper(
0,
2,
exhaustive_bools(),
7,
&[&[], &[false], &[true], &[false, false], &[false, true], &[true, false], &[true, true]],
);
exhaustive_vecs_length_inclusive_range_small_helper(
2,
3,
exhaustive_bools(),
12,
&[
&[false, false],
&[false, false, false],
&[false, true],
&[true, false],
&[true, true],
&[false, false, true],
&[false, true, false],
&[false, true, true],
&[true, false, false],
&[true, false, true],
&[true, true, false],
&[true, true, true],
],
);
exhaustive_vecs_length_inclusive_range_small_helper(
5,
7,
'a'..='c',
3159,
&[
&['a', 'a', 'a', 'a', 'a'],
&['a', 'a', 'a', 'a', 'a', 'a'],
&['a', 'a', 'a', 'a', 'b'],
&['a', 'a', 'a', 'a', 'a', 'a', 'a'],
&['a', 'a', 'a', 'b', 'a'],
&['a', 'a', 'a', 'a', 'a', 'b'],
&['a', 'a', 'a', 'b', 'b'],
&['a', 'a', 'b', 'a', 'a'],
&['a', 'a', 'b', 'a', 'b'],
&['a', 'a', 'a', 'a', 'b', 'a'],
&['a', 'a', 'b', 'b', 'a'],
&['a', 'a', 'a', 'a', 'a', 'a', 'b'],
&['a', 'a', 'b', 'b', 'b'],
&['a', 'a', 'a', 'a', 'b', 'b'],
&['a', 'b', 'a', 'a', 'a'],
&['a', 'a', 'a', 'b', 'a', 'a'],
&['a', 'b', 'a', 'a', 'b'],
&['a', 'a', 'a', 'b', 'a', 'b'],
&['a', 'b', 'a', 'b', 'a'],
&['a', 'a', 'a', 'a', 'a', 'b', 'a'],
],
);
exhaustive_vecs_length_inclusive_range_helper(
2,
3,
exhaustive_unsigneds::(),
&[
&[0, 0],
&[0, 0, 0],
&[0, 1],
&[1, 0],
&[1, 1],
&[0, 0, 1],
&[0, 2],
&[0, 1, 0],
&[0, 3],
&[0, 1, 1],
&[1, 2],
&[1, 3],
&[2, 0],
&[1, 0, 0],
&[2, 1],
&[3, 0],
&[3, 1],
&[1, 0, 1],
&[2, 2],
&[2, 3],
],
);
}