]> git.llucax.com Git - z.facultad/75.68/celdas.git/commitdiff
Mueve el logging de la lista de teorias al sistema autónomo.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 17 Dec 2006 19:25:18 +0000 (19:25 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 17 Dec 2006 19:25:18 +0000 (19:25 +0000)
trunk/src/main.cpp
trunk/src/sistemaautonomo.cpp

index 10da19fc15d1de7784489b8a055a7a243216c38e..f059384ed2eb06780bba51de401418d6fb64fcd5 100644 (file)
@@ -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 ;
index d9e653eedc3911b827cf868db17477b9da920470..413f6857a3367d3b5c6409579fe2b26baaa540e8 100644 (file)
@@ -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);