Finite State Machine using the AhoCorasick implementation using a Double Array Trie, java 8+
Go to file
Robinson 9a1d5b384e
Fixed map impl
2023-01-23 12:15:38 +01:00
gradle/wrapper Added gradle 2023-01-23 12:05:27 +01:00
src/dorkbox/fsm Code cleanup 2023-01-23 12:15:27 +01:00
src9 fixed jpms name 2023-01-23 12:07:19 +01:00
test/dorkbox/fsm Fixed map impl 2023-01-23 12:15:38 +01:00
.gitignore Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
LICENSE Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
LICENSE.Apachev2 Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
LICENSE.MIT Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
README.md Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
build.gradle.kts Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
gradle.properties Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
gradlew Added gradle 2023-01-23 12:05:27 +01:00
gradlew.bat Added gradle 2023-01-23 12:05:27 +01:00
settings.gradle.kts Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00

README.md

Finite State Machine using the AhoCorasick implementation

Dorkbox Github Gitlab
  • AhoCorasick finite state machine for Strings and ByteArrays

Maven Info

<dependencies>
    ...
    <dependency>
      <groupId>com.dorkbox</groupId>
      <artifactId>FSM</artifactId>
      <version>1.0</version>
    </dependency>
</dependencies>

Gradle Info

dependencies {
    ...
    implementation("com.dorkbox:FSM:1.0")
}

License

This project is © 2023 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references.