X-Git-Url: https://git.llucax.com/z.facultad/75.68/celdas.git/blobdiff_plain/44029734cc5263d0548dc78ce9d71c43719d1ea7..c31f28dc627150cda2d49912d408120e7ab8489a:/trunk/src/sistemaautonomo.cpp diff --git a/trunk/src/sistemaautonomo.cpp b/trunk/src/sistemaautonomo.cpp index f4cbbab..5f1cf2c 100644 --- a/trunk/src/sistemaautonomo.cpp +++ b/trunk/src/sistemaautonomo.cpp @@ -4,19 +4,170 @@ //-------------------------------------------------------------------------------------------- //-- Funciones Auxiliares +bool incluye_a (CIndiceMagico& a, CIndiceMagico& b) +{ + bool result = true ; + unsigned i ; + // Todas las variables de la condicion b deben estar en la condicion a + for (i=0; i& muestra, CIndiceMagico& patron) -{ + +//-------------------------------------------------------------------------------------------- +//-- +bool CSistemaAutonomo::verificar_condicion(CIndiceMagico& datos) +{ bool result = true ; unsigned i ; - for (i=0; ip_entorno->datos.find(datos.keys(i)) ; + // return result ; +} + + +//-------------------------------------------------------------------------------------------- +//-- +void CSistemaAutonomo::heurisitca_observacion(CTeoria& t) +{ + CTeoria nt ; //Nueva Teoria + unsigned i ; + std::string nombre ; + + // Le agrego los datos iniciales tal cual estaban antes + for (i=0; ip_entorno->datos.count(); i++) + nt.datos_finales.add(this->p_entorno->datos.keys(i), this->p_entorno->datos[i]) ; + + + // Agrego la teoria + nombre = teorias.count() ; + teorias.add (nombre.c_str(), nt) ; + } + +//-------------------------------------------------------------------------------------------- +//-- +void CSistemaAutonomo::heurisitca_retraccion(CTeoria& t) +{ + CTeoria nt ; //Nueva Teoria + unsigned i ; + + // Recorro la condicion final de la teoria + for (i=0; ip_entorno->datos.find(t.datos_finales.keys(i)) + ) + // Le asigno ANY + t.datos_finales[i] = ANY ; +} + + +//-------------------------------------------------------------------------------------------- +//-- +void CSistemaAutonomo::planificar ( CIndiceMagico& datos_iniciales, + CIndiceMagico& datos_finales, + CIndiceMagico& plan, + double& p, + unsigned long numero_de_llamada) +{ + unsigned i; + CIndiceMagico test_plan ; + CIndiceMagico new_plan ; + double test_p ; + double max_p = 0 ; + + + if ( incluye_a(datos_iniciales, datos_finales) ) return ; + + if ( numero_de_llamada > 7 ) return ; + + for (i=0; imax_p ) + if ( incluye_a(test_plan[test_plan.count()-1].datos_finales, datos_finales) ) + { + max_p = test_p ; + new_plan.clear() ; + new_plan.add (test_plan) ; + } + } + + if (max_p>0) + plan.add (new_plan) ; +} + + + +//-------------------------------------------------------------------------------------------- +//-- +bool CSistemaAutonomo::ejecutar (CIndiceMagico& plan) +{ + bool result = true ; + unsigned i ; + t_fnc(pFnc) ; + CTeoria t ; + + + for (i=0; ip_entorno)) ; + + // Incremento el K + t.k++ ; + + // Actualizo los datos del entorno + this->p_entorno->actualizar() ; + + // Veo si se verifica la condicion final + result = this->verificar_condicion(t.datos_finales) ; + + // Si fallo la teoria + if (!result) + { + // Aplico heuristicas de correccion + this->heurisitca_retraccion(t) ; + } + else + { + t.p++ ; + } + + // Aplico heuristicas de observacion + this->heurisitca_observacion(t) ; + } + + // + return result ; +}