// Si ya me actualice, no lo tengo que hacer de nuevo
if (updated) return;
// Seteo mi actualizar en true para evitar entrar de nuevo
-// actual_flow = 99999;
+ actual_flow = 99999;
updated = true;
switch (dir) {
case IN:
void Conduct::simulate()
{
if (!updated) {
+ std::cout << name << "::sin actualizar!" << std::endl;
return;
}
std::cout << name << "::Flujo actual = " << actual_flow << std::endl;
updated = false;
- actual_flow = 99999;
}
void Conduct::get_state_as_xml(std::stringstream &out)