Files
c-automates-giiiiive/Aloyse et Vincent/nfa_minimization.c

30 lines
539 B
C
Raw Normal View History

2024-12-16 02:48:28 +01:00
#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;
}