-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_t.c
171 lines (142 loc) · 3.87 KB
/
main_t.c
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
/* Archivo: main_t.c
* Proceso maestro, Version de hilos.
* Autores: Victor De Ponte
* Isaac Lopez
*/
#include "main_t.h"
#ifndef STD
#define STD
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define TRUE 1
#define FALSE 0
#define TAMAX 10
#endif
#ifndef ALM
#define ALM
#include "almacenamiento.h"
#endif
#ifndef COMMON
#define COMMON
#include "reinascommon.h"
#endif
#ifndef USETHREADS
#define USETHREADS
#include <pthread.h>
#endif
#ifndef USO
#define USO "\nreinas_t: Resuelve el problema de las 8 reinas usando hilos POSIX.\n\nDesarrollado por:\n\tVictor De Ponte, Carnet 05-38087\n\tIsaac Lopez, Carnet 07-41120\n\nUSO:\n\n\tSintaxis:\n\n\t\treinas_t [-n <num_trabajadores>] [-i {1|0}]\n\n\tOpciones:\n\n\t\t-n\tNumero de hilos a resolver el problema. El valor por\n\t\t\tdefecto es 8.\n\t\t-i\tOpcion de impresión. Debe ir seguido de un 1 si se desea\n\t\t\tque cada hilo imprima su resultado, o 0 en caso contra-\n\t\t\trio. El valor por defecto es 0.\n\n"
#endif
// ############# calculo reinas ####################
void try(int i, Trie *tree, int ri,int rj, int rjreal,int imprime, int tiempo, struct timeval start){
int j;
if(i == ri && i != 7) i++;
for (j = 0; j < 8; j++){
if ((a[j] && b[i+j] && c[i-j+7]) || (i == 7 && ri == i)){
if (ri != i){
x[i]=j;
a[j]=FALSE;
b[i+j]=FALSE;
c[i-j+7]=FALSE;
}
if (i < 7) try(i+1,tree, ri,rj,rjreal,imprime, tiempo, start);
else{
struct timeval end;
gettimeofday(&end, NULL);
int tiempo = ((end.tv_sec * 1000000 + end.tv_usec)
- (start.tv_sec * 1000000 + start.tv_usec));
int k;
if (imprime){
char *resultado = malloc(200);
sprintf(resultado, " Resultado del hijo %d:\n Solucion: ",ri+(rjreal*8) + 1);
for(k = 0 ; k < 8 ; k++) {
if(k == 7) {
sprintf(resultado, "%s(%d,%d)\n",resultado,k,x[k]);
}
else {
sprintf(resultado, "%s(%d,%d) ",resultado,k,x[k]);
}
}
sprintf(resultado, "%s Tiempo (milisegundos): %d\n",resultado, tiempo);
sprintf(resultado, "%s Tablero inicial: (%d,%d)\n\n",resultado, ri, rj);
printf(resultado);
free(resultado);
resultado = NULL;
}
T_insert(tree,x,8,tiempo);
// printf("salgo\n");
pthread_exit(NULL);
}
a[j]=TRUE;
b[i+j]=TRUE;
c[i-j+7]=TRUE;
}
}
}
void *reinas(void *argumentos){
Args *arg = (Args *) argumentos;
int ri = arg->x;
int rj = arg->y % 8;
int rjreal = arg->y;
int imprime = arg->imprime;
int tiempo;
struct timeval start;
int fin = 1;
int i;
for(i = 0; i < 8; i++){
a[i] = TRUE;
}
for(i = 0; i < 15; i++){
b[i] = TRUE;
}
for(i = 0; i < 15; i++){
c[i] = TRUE;
}
x[ri] = rj;
a[rj] = FALSE;
b[ri + rj] = FALSE;
c[ri - rj + 7] = FALSE;
gettimeofday(&start, NULL);
try(0, arg->tree, ri,rj,rjreal,imprime, tiempo, start);
return;
}
//################## main #######################
void main(int argc, char **argv){
int nJobs = 8;
int flagPrint = 0;
procesarArgumentos(argc, argv, &nJobs, &flagPrint, USO);
pthread_t tid[nJobs];
int h;
void *estado;
Trie *answers = newTrie(8);
struct timeval start;
Args *(argumentos[nJobs]);
for (h = 0; h < nJobs; h++) {
argumentos[h] = (Args *) malloc(sizeof(Args));
argumentos[h]->imprime = flagPrint;
argumentos[h]->tree = answers;
}
for (h = 0; h < nJobs; h++){
argumentos[h]->x = h%8;
argumentos[h]->y = h/8;
if (pthread_create(&tid[h],NULL,reinas, (void *)argumentos[h])){
perror("ERROR AL CREAR EL HIJO");
}
else{
}
}
for (h = 0; h < nJobs; h++) {
if (pthread_join(tid[h], &estado)) {
perror("Error al esperar uno de los hilos:\n");
exit(1);
}
}
fflush(stdout);
traversal(answers);
for (h = 0; h < nJobs; h++) {
free(argumentos[h]);
argumentos[h] = NULL;
}
pthread_exit(NULL);
}