Skip to content

Commit a3aa4a5

Browse files
authored
Update technical details (#79)
* Update README.md * Update README.md * Update README
1 parent be553b5 commit a3aa4a5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A fast implementation of the Aho-Corasick algorithm using the compact double-arr
77
[![Rust](https://img.shields.io/badge/rust-1.58%2B-blue.svg?maxAge=3600)](https://github.com/daac-tools/daachorse)
88
[![Build Status](https://github.com/daac-tools/daachorse/actions/workflows/rust.yml/badge.svg)](https://github.com/daac-tools/daachorse)
99

10-
[Technical details (Japanese)](https://tech.legalforce.co.jp/entry/2022/02/24/140316)
10+
The main technical ideas behind this library appear in [this paper](https://doi.org/10.48550/arXiv.2207.13870).
1111

1212
## Overview
1313

src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
//! only supports constant-time state-to-state traversal but also represents each state in the
1414
//! space of only 12 bytes.
1515
//!
16+
//! The main technical ideas behind this library appear in
17+
//! [this paper](https://doi.org/10.48550/arXiv.2207.13870).
18+
//!
1619
//! ## Example: Finding overlapped occurrences
1720
//!
1821
//! To search for all occurrences of registered patterns that allow for positional overlap in the

0 commit comments

Comments
 (0)