X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/950f83d0e71dc886fcf5be9889796c5b2a85fa4c..44617167ac216781537290dce9cc097df89dc3d2:/Model/src/main.cpp diff --git a/Model/src/main.cpp b/Model/src/main.cpp index 4470fc4..8671daa 100644 --- a/Model/src/main.cpp +++ b/Model/src/main.cpp @@ -19,11 +19,14 @@ int main(int argc, char *argv[]) Simulator *sim = new Simulator(argv[1]); int i=0; - while (i<2) { - sim->simulate(); - -// std::cout << sim->get_state_as_xml() << std::endl << std::endl; + while (i<5) { + if (i==1) { + sim->set_open("exclusa6", false); + std::cout << "apagando" << std::endl; + } i++; + sim->simulate(); + std::cout << sim->get_state_as_xml() << std::endl << std::endl; } delete sim;