tmp->size_claves = 0;
tmp->size_hijos = 0;
- switch (tipo) {
+ fprintf(stderr, "TIPO ARBOL= %d\n", tmp->tipo);
+ switch (tmp->tipo) {
case IND_B:
PERR("Creando indice con Arbol B");
emufs_indice_b_crear(tmp);
/* llenar metodos */
/* hacer que la cantidad de claves quede par o impar, no me acuerdo (SAGAR)!!!*/
PERR("Creando indice con Arbol B+");
+ emufs_b_plus_crear(tmp);
tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
emufs_b_plus_crear(tmp);