Two first values of the matrix change after last function call.

Two first values of the matrix change after last function call.

Hello. I have a matrix MxN, whose two first values (matrix[0][0],matrix[0][1]) became "dirty" (change value) after the last call to a function inside a loop. The function being called it is "copia_array", a simple function that copies the second array's content in the first:

1
2
3
4
    void copia_array (float array[n_mariposas], float array2[n_mariposas], float (&matriz) [n_mariposas][dimensao]) {
   	 for (int i=0; i<n_mariposas; i++)
      	array [i] = array2 [i];
}


The "matriz" parameter is only there as the third parameter for debugging purposes.

This function is called inside a for loop:
1
2
    for (int i=0; i<n_mariposas; i++)
       copia_array (populacao_ordenada [i],  mariposas [argsort[i]],mariposas);

This for changes one line at a time of the destiny matrix.

The problems here, are two:
1)The matrix whose two first values became dirty, are from the source matrix (mariposas), and not from the destiny (populacao_ordenada).
2)It happens only in last iteration of the loop.

Bellow full code. The function call line it is the line 180, and the method it is line 38. By default, the code will print the matrix values at each interaction of the loop (line 181)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <algorithm>

#define e 2.7182818284590452353602874713527
#define PI 3.1415926535
#define n_mariposas 6
#define dimensao 4
#define max_iteracao 100

using namespace std;

template <typename T>
void imprime_array (T array [], int tam) {
   for (int i=0; i<tam; i++)
      cout << "array[ " << i << "]:" << array[i] << " ";
   cout << "" << endl;
}

void imprime_matriz (float matriz [n_mariposas][dimensao]) {
   for (int i=0; i<n_mariposas; i++) {
      cout << " " << endl;
      for (int j=0; j<dimensao; j++)
         cout << "matriz[" << i << "][" << j << "]:" << matriz[i][j] << " ";
   }
   cout << "" << endl;
}

void copia_matriz (float (&matriz) [n_mariposas][dimensao], float matriz2 [n_mariposas][dimensao]) {
   for (int i=0; i<n_mariposas; i++)
      for (int j=0; j<dimensao; j++)
         matriz [i][j] = matriz2 [i][j];
}

void copia_array (float array[n_mariposas], float array2[n_mariposas], float (&matriz) [n_mariposas][dimensao]) {
   for (int i=0; i<n_mariposas; i++)
      array [i] = array2 [i];
}

void concatena_arrays (float (&array) [2*n_mariposas],float (&array2) [n_mariposas], float (&array3) [n_mariposas]) {
   for (int i=0; i<n_mariposas; i++)
      array [i] = array2 [i];
   for (int i=n_mariposas; i<2*n_mariposas; i++)
      array [i] = array3 [i];
}

void concatena_matrizes (float (&matriz) [2*n_mariposas][dimensao],float (&matriz2) [n_mariposas][dimensao], float (&matriz3) [n_mariposas][dimensao]) {
   for (int i=0; i<n_mariposas; i++)
      for (int j=0; i<dimensao; j++)
         matriz [i][j] = matriz2 [i][j];
   for (int i=n_mariposas; i<2*n_mariposas; i++)
      for (int j=0; i<dimensao; j++)
         matriz [i][j] = matriz3 [i][j];
}

void heapify (float arr[], int n, int i, int argsort []) {
   int largest = i;
   int l = 2*i + 1;
   int r = 2*i + 2;
   if (l < n && arr[l] > arr[largest])
      largest = l;
   if (r < n && arr[r] > arr[largest])
      largest = r;
   if (largest != i) {
      swap(arr[i], arr[largest]);
      swap(argsort[i],argsort[largest]);
      heapify(arr, n, largest,argsort);
   }
}

void heapsort (float arr[], int n, int argsort [])
{
   for (int i = n / 2 - 1; i >= 0; i--) {
      heapify(arr, n, i,argsort);
   }
   for (int i=n-1; i>=0; i--) {
      swap(arr[0], arr[i]);
      swap(argsort[0],argsort[i]);
      heapify(arr, i, 0,argsort);
   }
}

void inverte_array (float arr[], int n, int argsort []) {
   for (int i=0; i<n/2; i++) {
      swap (arr[i],arr[n-1-i]);
      swap (argsort[i],argsort[n-1-i]);
   }
}

void f1 (float (&mariposas) [n_mariposas][dimensao],float (&fitness) [n_mariposas]) {
   for (int i=0; i<n_mariposas; i++) {
      float sum=0;
      for (int j=0; j<dimensao; j++) 
			sum += mariposas[i][j] * mariposas[i][j];
		fitness [i] = sum;
	}
}

void calcula_mfo () {
   float mariposas [n_mariposas][dimensao];
   float lim_inf [n_mariposas], lim_sup [n_mariposas];
   srand (time(NULL));
   for (int i=0; i<n_mariposas; i++) {
      lim_inf [i] =   rand() %10;
      lim_sup [i] =  rand() %10;
      if (lim_inf [i] > lim_sup [i]) swap (lim_inf [i],lim_sup [i]);
      for (int j=0; j<dimensao; j++)
         mariposas [i][j] = lim_inf [i] + ((float)rand () / RAND_MAX) * (lim_sup [i] - lim_inf [i]);
   }

   float fitness_mariposas [n_mariposas];
   float populacao_ordenada [n_mariposas][dimensao];

   float fitness_ordenada [n_mariposas];
   float melhores_chamas [n_mariposas][dimensao];

   float fitness_melhores_chamas [n_mariposas];

   float populacao_anterior [n_mariposas][dimensao];
   float fitness_anterior [n_mariposas];

   int iteracao=1;
   while (iteracao<max_iteracao) {
      int n_chamas = (n_mariposas-iteracao)*((n_mariposas-1)/max_iteracao);
      for (int i=0; i<n_mariposas; i++) {
         for (int j=0; j<dimensao; j++) {
            if (mariposas[i][j] <lim_inf[i])
               mariposas[i][j] = lim_inf[i];
            else if (mariposas[i][j] > lim_sup[i])
               mariposas[i][j] = lim_sup[i];
         }
      }
      f1 (mariposas,fitness_mariposas);
      imprime_matriz (mariposas);
      if (iteracao==2)
         exit (0);
      if (iteracao==1) {
         int argsort [n_mariposas];
         for (int i=0; i<n_mariposas; i++) argsort[i] = i;
         heapsort (fitness_mariposas,n_mariposas,argsort);
         inverte_array (fitness_mariposas,n_mariposas,argsort);
         for (int i=0; i<n_mariposas; i++) {
            copia_array (populacao_ordenada [i],  mariposas [argsort[i]],mariposas);
            imprime_matriz (mariposas);
         }
         exit (0);
         copia_matriz (melhores_chamas,populacao_ordenada);
         copia_array (fitness_melhores_chamas,fitness_mariposas,mariposas);

      }
      else {
         const int duplo=2;
         float populacao_dobro [duplo*n_mariposas][dimensao];
         float fitness_dobro [duplo*n_mariposas];
         concatena_matrizes (populacao_dobro,populacao_anterior,melhores_chamas);
         concatena_arrays (fitness_dobro,fitness_anterior,fitness_melhores_chamas);
         sort (fitness_dobro,fitness_dobro+n_mariposas);
         for (int i=0; i<n_mariposas; i++)
            sort (&populacao_dobro[i][0], &populacao_dobro[i][dimensao], greater <float>());
         copia_matriz  (populacao_ordenada,populacao_dobro);
         copia_array (fitness_ordenada,fitness_dobro,mariposas);
         copia_matriz (melhores_chamas,populacao_ordenada);
         copia_array (fitness_melhores_chamas,fitness_ordenada,mariposas);
      }
      int pontuacao_chama_melhor = fitness_mariposas [0];
      float posicao_melhor_chama [dimensao];
      for (int i=0; i<dimensao; i++)
         posicao_melhor_chama [i] = populacao_ordenada [0][i];
      imprime_array (posicao_melhor_chama,dimensao);
      copia_matriz (populacao_anterior,mariposas);
      copia_array  (fitness_anterior,fitness_mariposas,mariposas);
      int a=-1+iteracao*((-1)/max_iteracao);
      for (int i=0; i<n_mariposas; i++)
         for (int j=0; j<dimensao; j++)  {
            float distancia = abs (populacao_ordenada[i][j] - mariposas[i][j]);
            int b=1;
            float rand_var = (float)rand () / RAND_MAX;
            float t = (a-1)*( rand_var + 1);
            if (i<n_chamas)
               mariposas [i][j] = distancia*pow(e,t)*cos(2*PI*t)+populacao_ordenada[i][j];
            if (i>n_chamas)
               mariposas [i][j] = distancia*pow(e,t)*cos(2*PI*t)+populacao_ordenada[n_chamas][j];
         }
      cout << "Iteracao n°: " << iteracao  << " tem a pontuacao da melhor chama: " << pontuacao_chama_melhor <<  endl;
      iteracao++;
   }
}

int main () {
   calcula_mfo ();
}


I have absolutely no idea of what is happening and will appreciate any help.
Last edited on
here two output examples (they didn't fit the first message)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
matriz[0][0]:2.1717  matriz[0][1]:3.53631 matriz[0][2]:2.3989 matriz[0][3]:3.02344  
matriz[1][0]:2.62287 matriz[1][1]:4.98091 matriz[1][2]:0.84001 matriz[1][3]:2.01286  
matriz[2][0]:4.76401 matriz[2][1]:6.89067 matriz[2][2]:4.07644 matriz[2][3]:6.06282  
matriz[3][0]:2.95688 matriz[3][1]:2.15554 matriz[3][2]:4.73358 matriz[3][3]:2.45355  
matriz[4][0]:6.02658 matriz[4][1]:6.50033 matriz[4][2]:6.38209 matriz[4][3]:5.21735  
matriz[5][0]:4.25822 matriz[5][1]:1.08913 matriz[5][2]:1.65074 matriz[5][3]:4.73689 

 
matriz[0][0]:2.62287 matriz[0][1]:4.98091 matriz[0][2]:2.3989 matriz[0][3]:3.02344  
matriz[1][0]:2.62287 matriz[1][1]:4.98091 matriz[1][2]:0.84001 matriz[1][3]:2.01286  
matriz[2][0]:4.76401 matriz[2][1]:6.89067 matriz[2][2]:4.07644 matriz[2][3]:6.06282  
matriz[3][0]:2.95688 matriz[3][1]:2.15554 matriz[3][2]:4.73358 matriz[3][3]:2.45355  
matriz[4][0]:6.02658 matriz[4][1]:6.50033 matriz[4][2]:6.38209 matriz[4][3]:5.21735  
matriz[5][0]:4.25822 matriz[5][1]:1.08913 matriz[5][2]:1.65074 matriz[5][3]:4.73689
Topic archived. No new replies allowed.