Finite State Machine using the AhoCorasick implementation using a Double Array Trie, java 8+
 
 
Go to file
Robinson 53836d46da
updated build deps
2023-11-27 17:14:36 +01:00
gradle/wrapper updated gradle 2023-10-02 16:12:50 +02:00
src/dorkbox/fsm Updated version 2023-07-04 00:16:06 +02:00
src9 fixed jpms name 2023-01-23 12:07:19 +01:00
test/dorkbox/fsm Added ByteArray unit tests, converted tests to kotlin 2023-07-04 00:07:54 +02:00
testResources/dorkbox/fsm Added resources for unit tests 2023-01-24 10:56:24 +01:00
.gitignore Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
LICENSE Updated description 2023-01-24 10:59:39 +01:00
LICENSE.Apachev2 Moved FSM from utils to own project 2023-01-23 12:05:18 +01:00
README.md Updated version 2023-07-04 00:16:06 +02:00
build.gradle.kts updated build deps 2023-11-27 17:14:36 +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 Hardcoded project name 2023-08-05 12:26:33 -06: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.2</version>
    </dependency>
</dependencies>

Gradle Info

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

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.