Skip to content

Instantly share code, notes, and snippets.

@t0yv0
Created February 9, 2011 10:41
Show Gist options
  • Select an option

  • Save t0yv0/818287 to your computer and use it in GitHub Desktop.

Select an option

Save t0yv0/818287 to your computer and use it in GitHub Desktop.
module DFA =
open System.Collections.Generic
type State<'T> =
{
IsMatch : bool
States : Set<NFA.State<'T>>
Transitions : Dictionary<'T,State<'T>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment