Blame view

src/dsearch-sg.c 6.17 KB
965dadaa   Salvador Abreu   initial commit fr...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifdef USE_VALUE
#error "does not work with USE_VALUE (yet)"
#endif

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>	// for sysconf()
#include <pthread.h>

#include <assert.h>

#include "fdc_int.h"
#include "store.h"
#include "variables.h"
#include "values.h"
#include "bound.h"
eef94371   Vasco Pedro   Update to PaCCS v...
18
19
20

#if STEAL_WORK > 0
#include <time.h>
965dadaa   Salvador Abreu   initial commit fr...
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
#endif

static int _fd_dsearch_(fd_int[]);  // XXX

#ifdef STORE_LIST
#error "STORE_LIST deprecated"
#endif

static __thread int agent;

static int nagents;	// how many agents there are

// says whether we are counting or looking for solutions
int _fd_counting_solutions;

#ifdef NEW_ENTRANCE
#  if STEAL_WORK < 1
#    error "NEW_ENTRANCE only makes sense with STEAL_WORK"
#  else
static pthread_spinlock_t entrance_lock;
static volatile int agents_searching = 0, agents_failed = 0;
#  endif
#endif

extern int tid;	// XXX: team ID, just for debugging

#include "pool.c"

void _fd_epoch_forward()
{
}

void _fd_epoch_rewind()
{
#ifdef CONSTRAINT_TEMPS
  fd__constraint_data_reset();
#endif
965dadaa   Salvador Abreu   initial commit fr...
58
}
965dadaa   Salvador Abreu   initial commit fr...
59
60
61
62
63
64
65
66
67
68
69
70
71
72

int _fd_dsearch(fd_int variables[], int agent_no)
{
#if STEAL_WORK > 0
  struct timespec tsettle = { 0, 1000000 }; // 1ms
#ifdef NEW_ENTRANCE
  bool failed_initially = false;
#endif
#endif

  agent = agent_no;

#if defined(NEW_ENTRANCE) && defined(DEBUG_SPLITGO)
  _fd_debug("[%d.%d] agents_searching = %d, agents_failed = %d\n", tid, agent, agents_searching, agents_failed);
eef94371   Vasco Pedro   Update to PaCCS v...
73
#endif
965dadaa   Salvador Abreu   initial commit fr...
74
75
76
77
78

  _fd_init_local_depository();

#if DEBUG_SPLITGO > 1
  _fd_output("[%d.%d] ", tid, agent); _fd_cprint2(variables);
eef94371   Vasco Pedro   Update to PaCCS v...
79
#endif
965dadaa   Salvador Abreu   initial commit fr...
80
81
82
83
84
85

  if (_fd_filter_domains() == FD_NOSOLUTION)
    {
      fd_int variable = NULL;

      _fd_debug("[%d.%d] failed before beginning\n", tid, agent);
eef94371   Vasco Pedro   Update to PaCCS v...
86

965dadaa   Salvador Abreu   initial commit fr...
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#if STEAL_WORK > 0
#ifdef NEW_ENTRANCE
      failed_initially = true;

      pthread_spin_lock(&entrance_lock);
      ++agents_failed;
      pthread_spin_unlock(&entrance_lock);

      while (agents_searching == 0 && agents_failed < nagents)
	;

      if (agents_searching == 0)
	return FD_NOSOLUTION;
#endif /* NEW_ENTRANCE */

#if RANDOM_VICTIM >= 2	// XXX: to check if this is needed/useful
      // give the other agents time to start searching
      nanosleep(&tsettle, NULL);
#endif

      do
	{
#ifndef INDEX_IN_POOL
965dadaa   Salvador Abreu   initial commit fr...
110
	  if (!_fd_steal_store(store, agent_no, 7))
965dadaa   Salvador Abreu   initial commit fr...
111
#else
eef94371   Vasco Pedro   Update to PaCCS v...
112
	  if (!_fd_steal_store(store, &variable, agent_no, 7))
965dadaa   Salvador Abreu   initial commit fr...
113
114
115
116
#endif
	    {
	      _fd_debug("[%d.%d] giving up\n", tid, agent);

965dadaa   Salvador Abreu   initial commit fr...
117
	      return FD_NOSOLUTION;
965dadaa   Salvador Abreu   initial commit fr...
118
119
120
121
122
123
124
125
	    }

#ifdef CONSTRAINT_TEMPS
	  fd__constraint_data_reset();	// XXX: this doesn't belong here!
#endif
	}
      while (_fd_revise_wrt_variable(variable) == FD_NOSOLUTION);
#else  /* STEAL_WORK > 0 */
eef94371   Vasco Pedro   Update to PaCCS v...
126
      return FD_NOSOLUTION;
965dadaa   Salvador Abreu   initial commit fr...
127
128
129
130
131
132
133
134
135
136
#endif /* STEAL_WORK > 0 */
    }

#if DEBUG_SPLITGO > 1
  _fd_output("[%d.%d] ", tid, agent); _fd_cprint2(variables);
#endif

#ifdef NEW_ENTRANCE
  pthread_spin_lock(&entrance_lock);
  if (failed_initially)
eef94371   Vasco Pedro   Update to PaCCS v...
137
    --agents_failed;
965dadaa   Salvador Abreu   initial commit fr...
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
  ++agents_searching;
  pthread_spin_unlock(&entrance_lock);
#endif

  _fd_debug("[%d.%d] about to start searching\n", tid, agent);

  return _fd_dsearch_(variables);
}

static int _fd_dsearch_(fd_int _fd_variables[])
{
#ifndef STORE_IN_POOL
  _fd_store alt_store;
#endif
  fd_int variable;
  int instantiations = 0, backtrack = 0;

#ifdef DEBUG_SEARCH
  printf("* before search\n"); _fd_cprint2(_fd_variables);
#endif

  // start by selecting a variable
  while (variable = _fd_var_select2(fd__label_vars))
    {
      // clone store
      _fd_start_saving_store(&alt_store);

      // split domain
      _fd_val_split(DOMAIN_REF(variable),
		    (DOMAIN_REF_T()) (alt_store + variable->index)); // XXX
eef94371   Vasco Pedro   Update to PaCCS v...
168

965dadaa   Salvador Abreu   initial commit fr...
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
      _fd_epoch_forward();
      instantiations++;
#ifdef DEBUG_PROGRESS
      if (instantiations % 100000 == 0)
	_fd_debug("[%d.%d] still alive (%d stores)\n", tid, agent,
		  next_split_index - base_split_index);
#endif

#ifndef INLINE_DOMAINS
      assert(!_fd_val_empty((DOMAIN_REF_T()) (alt_store + variable->index)));
#else
      assert(!_fd_val_empty(alt_store[variable->index]));
#endif

      _fd_end_saving_store(variable);

      while (_fd_revise_wrt_variable(variable) == FD_NOSOLUTION)
	{
#ifdef DEBUG_SEARCH
	  printf("* fail\n"); _fd_cprint2(_fd_variables);
#endif

	  // check whether this thread has been cancelled
	  // XXX: is there a better place to put this?
	  if (!_fd_counting_solutions)
	    pthread_testcancel();

	  _fd_epoch_rewind();

	  do
	    {
eef94371   Vasco Pedro   Update to PaCCS v...
200
	      // try to ``restore'' the store
965dadaa   Salvador Abreu   initial commit fr...
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
	      if (!_fd_restore_store(&variable))
		{
		  if (!_fd_counting_solutions)
		    {
		      _fd_debug("[%d.%d] performed %d instantiations and %d backtracks\n",
				tid, agent, instantiations, backtrack);

		      _fd_statistics_pool();
		    }

		  return FD_NOSOLUTION;
		}

	      backtrack++;
	    }
	  while (_fd_optimising && fd__bound_and_revise() == FD_NOSOLUTION);

	  if (_fd_optimising && variable == _fd_bound_variable())
	    break;

	  if (variable && !fd_var_single(variable, NULL))
	    break;
	}
    }

#ifdef DEBUG_SEARCH
eef94371   Vasco Pedro   Update to PaCCS v...
227
  printf("* succeed\n"); _fd_cprint2(_fd_variables);
965dadaa   Salvador Abreu   initial commit fr...
228
229
#endif

eef94371   Vasco Pedro   Update to PaCCS v...
230
  if (!_fd_counting_solutions)
965dadaa   Salvador Abreu   initial commit fr...
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
    {
      _fd_debug("[%d.%d] performed %d instantiations and %d backtracks\n", tid,
		agent, instantiations, backtrack);

      _fd_debug("[%d.%d] %d stores in store\n", tid, agent, next_split_index - base_split_index);

      _fd_statistics_pool();
    }

#ifdef STORE_IN_POOL
  memcpy(main_store, store, STORE_SIZE);
#endif

  return FD_OK;	// found a solution: all domains are singletons
}

int _fd_dsearch_again(fd_int _fd_variables[])
{
  fd_int variable;

  do
    {
      // try to restore the state to the previous store
      _fd_epoch_rewind();

      if (!_fd_restore_store(&variable))
	return FD_NOSOLUTION;
    }
  while (// force the propagation of the new bound when optimising
	 _fd_optimising && fd__bound_and_revise() == FD_NOSOLUTION ||
	 (!_fd_optimising || variable != _fd_bound_variable()) &&
	 (!variable || fd_var_single(variable, NULL)) &&
	 _fd_revise_wrt_variable(variable) == FD_NOSOLUTION);

  return _fd_dsearch_(_fd_variables);
}

unsigned long long _fd_count_solutions(fd_int variables[], int agent_no)
{
  unsigned long long solutions = 0;

  if (_fd_dsearch(variables, agent_no) == FD_OK)
    {
      solutions = 1;

      while (_fd_dsearch_again(variables) == FD_OK)
	solutions++;
    }