changement dossier

This commit is contained in:
Aloyse ARNAUD
2024-12-16 02:48:28 +01:00
parent 6606b1f872
commit b06c2fcc82
28 changed files with 13188 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#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;
}