diff --git a/emory/chunk/params.hpp b/emory/chunk/params.hpp
index f0bfed6..2dd4e06 100644
--- a/emory/chunk/params.hpp
+++ b/emory/chunk/params.hpp
@@ -19,4 +19,10 @@ namespace emory::chunk {
/// The minimum number of bytes for a matching region.
std::ptrdiff_t minimum;
};
+
+ constexpr params DEFAULT_PARAMS {
+ .bits = 12,
+ .window = 8,
+ .minimum = 4096,
+ };
}
diff --git a/tools/analyse.cpp b/tools/analyse.cpp
index 98a3140..ce15b64 100644
--- a/tools/analyse.cpp
+++ b/tools/analyse.cpp
@@ -69,32 +69,27 @@ enum {
};
-static constexpr std::size_t DEFAULT_BITS = 12;
-static constexpr std::size_t DEFAULT_WINDOW = 4;
-static constexpr std::ptrdiff_t DEFAULT_MINIMUM = 512;
-
-
//-----------------------------------------------------------------------------
int main (int argc, char const **argv)
{
if (argc < NUM_ARGS_REQUIRED) {
std::cerr << "usage: " << argv[ARG_SELF] << "