common.h 203 B

1234567891011121314
  1. #pragma once
  2. #include <util/system/defaults.h>
  3. class TAhoCorasickCommon {
  4. public:
  5. static ui32 GetVersion() {
  6. return 3;
  7. }
  8. static size_t GetBlockCount() {
  9. return 4;
  10. }
  11. };