blob: 579ab1eff7ffce2ac85bd6b307f2d548414df1e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "chunk.hpp"
#include "search.hpp"
#include <bitset>
namespace floormat {
struct chunk::pass_region
{
std::bitset<Search::div_count.product()> bits;
};
} // namespace floormat
|