Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix indentation. #1029

Merged
merged 1 commit into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions tests/unit/test_high_five_selection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -415,33 +415,33 @@ std::vector<IrregularHyperSlabTestData> make_irregular_hyperslab_test_data() {
// xor, irregular
auto slab_ab_xor = HyperSlab(slabs["a"]) ^ slabs["b"];
// clang-format off
auto answer_ab_xor = IrregularHyperSlabAnswer{{
{1ul, 1ul}, {1ul, 2ul},
{2ul, 0ul}, {2ul, 2ul},
{3ul, 1ul}, {3ul, 2ul}
}};
auto answer_ab_xor = IrregularHyperSlabAnswer{{
{1ul, 1ul}, {1ul, 2ul},
{2ul, 0ul}, {2ul, 2ul},
{3ul, 1ul}, {3ul, 2ul}
}};
// clang-format on
test_data.push_back({"a xor b", slab_ab_xor, answer_ab_xor});

// (not a) and e, irregular
auto slab_ab_nota = HyperSlab(slabs["a"]).notA(slabs["b"]);
// clang-format off
auto answer_ab_nota = IrregularHyperSlabAnswer{{
{1ul, 1ul}, {1ul, 2ul},
{2ul, 2ul},
{3ul, 1ul}, {3ul, 2ul}
}};
auto answer_ab_nota = IrregularHyperSlabAnswer{{
{1ul, 1ul}, {1ul, 2ul},
{2ul, 2ul},
{3ul, 1ul}, {3ul, 2ul}
}};
// clang-format on
test_data.push_back({"a nota b", slab_ab_nota, answer_ab_nota});

// (not a) and e, irregular
auto slab_ba_notb = HyperSlab(slabs["b"]).notB(slabs["a"]);
// clang-format off
auto answer_ba_notb = IrregularHyperSlabAnswer{{
{1ul, 1ul}, {1ul, 2ul},
{2ul, 2ul},
{3ul, 1ul}, {3ul, 2ul}
}};
auto answer_ba_notb = IrregularHyperSlabAnswer{{
{1ul, 1ul}, {1ul, 2ul},
{2ul, 2ul},
{3ul, 1ul}, {3ul, 2ul}
}};
// clang-format on
test_data.push_back({"b notb a", slab_ba_notb, answer_ba_notb});

Expand Down
Loading