Re: DFA minimalization
mareg_at_mimosa.csv.warwick.ac.uk
Date: 01/15/04
- Next message: Raisse the Thaumaturge: "Re: New Turing Test and: It's not paranoia when..."
- Previous message: Mitch Harris: "Re: 1-SAT, 2-SAT, and 3-SAT"
- Next in thread: Siamak: "Re: DFA minimalization"
- Maybe reply: Siamak: "Re: DFA minimalization"
- Reply: David Eppstein: "Re: DFA minimalization"
- Maybe reply: Michael N. Christoff: "Re: DFA minimalization"
- Maybe reply: Alex Lopez-Ortiz: "Re: DFA minimalization"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Thu, 15 Jan 2004 12:38:50 +0000 (UTC)
In article <bu5ua5$6g0$1@panorama.wcss.wroc.pl>,
"Piotr Wyderski" <NotAHelpdeskSend@ll.replies.to.the.group> writes:
>Hello,
>
>what is the most efficient DFA minimalization algorithm?
>There is an example in the book of Hopcroft and Ullman,
>but even they claim themselves that it isn't the fastest
>known way. So what is the best AD 2004? :-) Links
>to detailed papers or at least some phrases to feed google
>would be appreciated.
>
> Best regards
> Piotr Wyderski
I don't know the answer to this, but I am very interested in the problem,
since I regularly need to minimize very large DFA's in the course of some
computations in group theory.
Currently I use a simple-minded O(n^2) algorithm, because it is very
efficient in terms of memory usage. Indeed, the input DFA does not even need
to be stored in RAM, because the algorithm works by repeatedly reading
through the transition table sequentially. So the RAM usage is about the
same as for storing the minimized DFA.
I have for some time been trying to find out whether there are implementations
of an O(n log n) minimization algorithm for which the memory requirement does
not greatly exceed the storage required for the input DFA - I would regard
twice that amount as unacceptable.
Derek Holt.
- Next message: Raisse the Thaumaturge: "Re: New Turing Test and: It's not paranoia when..."
- Previous message: Mitch Harris: "Re: 1-SAT, 2-SAT, and 3-SAT"
- Next in thread: Siamak: "Re: DFA minimalization"
- Maybe reply: Siamak: "Re: DFA minimalization"
- Reply: David Eppstein: "Re: DFA minimalization"
- Maybe reply: Michael N. Christoff: "Re: DFA minimalization"
- Maybe reply: Alex Lopez-Ortiz: "Re: DFA minimalization"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|