cromossoma.cpp

C code posted
created at 29 Jan 19:48

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
bool cromossoma::verifica_amigos(int i)
{
  alelo* temp;


  for(int j=0;(unsigned)j<alelos[i].get_prefs_amigos().size();j++)
  {
    temp = &(encontra_alelo_por_numero(alelos[i].
      get_prefs_amigos()[j]));

    for(int k = 0;(unsigned)k<alelos[i].get_turmas().size();k++)
      for(int l = 0;(unsigned)l<temp->get_turmas().size();l++)
      {
        if(temp->get_turmas()[l]->get_nome() == 
        alelos[i].get_turmas()[k]->get_nome())
          alelos[i].set_amigos_hits(alelos[i].
              get_amigos_hits()+1);
      }
  }
  
  return true;

}

543 Bytes in 2 ms with coderay