From: Leandro Lucarella Date: Sun, 17 Dec 2006 19:25:18 +0000 (+0000) Subject: Mueve el logging de la lista de teorias al sistema autónomo. X-Git-Tag: entrega-20061218~11 X-Git-Url: https://git.llucax.com/z.facultad/75.68/celdas.git/commitdiff_plain/3576e09328fd118cbd62a1ce4ab66a2f78b863f4 Mueve el logging de la lista de teorias al sistema autónomo. --- diff --git a/trunk/src/main.cpp b/trunk/src/main.cpp index 10da19f..f059384 100644 --- a/trunk/src/main.cpp +++ b/trunk/src/main.cpp @@ -151,12 +151,7 @@ int main(int argc, char* argv[]) for (int i = 0; i < 3; ++i) { - - std::cout << "Teorias:\n" << a.teorias << "\n"; - a.plan(); - - while (a.has_next_theory()) { CTeoria* t = a.get_next_theory(); @@ -171,7 +166,6 @@ int main(int argc, char* argv[]) break; } } - } return 0 ; diff --git a/trunk/src/sistemaautonomo.cpp b/trunk/src/sistemaautonomo.cpp index d9e653e..413f685 100644 --- a/trunk/src/sistemaautonomo.cpp +++ b/trunk/src/sistemaautonomo.cpp @@ -34,6 +34,7 @@ void CSistemaAutonomo::plan() #ifdef DEBUG std::cout << "SA: Planificando...\n"; std::cout << "SA: \tentorno:\n" << p_entorno->datos << "\n"; + std::cout << "SA: \tteorias:\n" << teorias << "\n"; std::cout << "SA: \tdatos finales:\n" << m_datos_finales << "\n"; #endif // DEBUG planificar(p_entorno->datos, m_datos_finales, m_plan, p);