ajout de nos fichiers
This commit is contained in:
29
Anna et Vincent/nfa_minimization.c
Normal file
29
Anna et Vincent/nfa_minimization.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user