X-Git-Url: https://git.llucax.com/z.facultad/75.68/celdas.git/blobdiff_plain/4564a91af300e428600a997b3da82bf4abf50011..b46d26ffabbc1b3c480293a458f73daad3017443:/trunk/src/sistemaautonomo.cpp diff --git a/trunk/src/sistemaautonomo.cpp b/trunk/src/sistemaautonomo.cpp index 2b988f0..0efe70a 100644 --- a/trunk/src/sistemaautonomo.cpp +++ b/trunk/src/sistemaautonomo.cpp @@ -20,6 +20,65 @@ bool incluye_a (CIndiceMagico& a, CIndiceMagico& b) return result ; } +//-------------------------------------------------------------------------------------------- +//-- +void CSistemaAutonomo::plan() +{ + double p = 1.0; + m_plan.clear(); + planificar(p_entorno->datos, m_datos_finales, m_plan, p); + curr_theory = m_plan.begin(); +} + +//-------------------------------------------------------------------------------------------- +//-- +#include // XXX FIXME +bool CSistemaAutonomo::has_next_theory() +{ + return curr_theory != m_plan.end(); +} + +//-------------------------------------------------------------------------------------------- +//-- +CTeoria* CSistemaAutonomo::get_next_theory() +{ + if (curr_theory == m_plan.end()) + { + m_datos_finales.clear(); + return 0; + } + else + { + return &*(curr_theory++); + } +} + +//-------------------------------------------------------------------------------------------- +//-- +bool CSistemaAutonomo::validate_theory(CTeoria* t) +{ + bool result ; + + result = 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) ; + this->heurisitca_generalizacion(*t); + + return result; +} //-------------------------------------------------------------------------------------------- @@ -183,7 +242,7 @@ void CSistemaAutonomo::planificar ( CIndiceMagico& datos_iniciales, } - +/* //-------------------------------------------------------------------------------------------- //-- bool CSistemaAutonomo::ejecutar (CIndiceMagico& plan) @@ -230,3 +289,4 @@ bool CSistemaAutonomo::ejecutar (CIndiceMagico& plan) // return result ; } +*/