]> git.llucax.com Git - z.facultad/75.68/celdas.git/blob - trunk/src/sistemaautonomo.cpp
f4cbbabe9b918b575997e7f4c2ba5fe2997c8b54
[z.facultad/75.68/celdas.git] / trunk / src / sistemaautonomo.cpp
1
2 #include "sistemaautonomo.h"
3
4
5 //--------------------------------------------------------------------------------------------
6 //-- Funciones Auxiliares
7
8
9 bool cumple_condiciones (CIndiceMagico<t_dato>& muestra, CIndiceMagico<t_dato>& patron) 
10 {
11
12         bool result = true ;
13         unsigned i ;
14
15         for (i=0; i<muestra.count() && result; i++)
16                 result = (muestra[i] == patron.find(muestra.keys(i)))  ;
17
18         //
19         return result ;
20
21 }
22