30 lines
539 B
C
30 lines
539 B
C
|
|
#include "nfa_minimization.h"
|
||
|
|
|
||
|
|
/******************************/
|
||
|
|
/*+ Algorithme de Brzozowski +*/
|
||
|
|
/******************************/
|
||
|
|
|
||
|
|
nfa *nfa_brzozowski(nfa *) {
|
||
|
|
return NULL;
|
||
|
|
}
|
||
|
|
|
||
|
|
/****************************/
|
||
|
|
/*+ Algorithme de Hopcroft +*/
|
||
|
|
/****************************/
|
||
|
|
|
||
|
|
hopcroft_partition *nfa_hopcroft_initial(uint, dequeue *) {
|
||
|
|
return NULL;
|
||
|
|
}
|
||
|
|
|
||
|
|
nfa *nfa_hopcroft_genauto(nfa *, hopcroft_partition *) {
|
||
|
|
return NULL;
|
||
|
|
}
|
||
|
|
|
||
|
|
void nfa_hopcroft_free(hopcroft_partition *) {
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
nfa *nfa_hopcroft(nfa *) {
|
||
|
|
return NULL;
|
||
|
|
}
|