forked from shabesoglu/aho-corasick-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
31 lines (17 loc) · 691 Bytes
/
README
File metadata and controls
31 lines (17 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
This is the source code distribution for an implementation of the
Aho-Corasick automaton in Java. For license information, please see
LICENSE.
The following commands require Apache Ant, which can be found here:
http://ant.apache.org/
Building the jar
================
To compile the jar, run `ant jar'. The resulting jar should be
created in:
dist/org.arabidopsis.ahocorasick-1.1.jar
Building the documentation
==========================
To build the javadocs, run `ant javadoc'. The javadocs should be created in:
javadoc/
Sources
=======
This distribution was build from the source code originally hosted at http://hkn.eecs.berkeley.edu/~dyoo/java/index.html