-
Notifications
You must be signed in to change notification settings - Fork 0
/
booleforce.c
6517 lines (5280 loc) · 137 KB
/
booleforce.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
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
200
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
227
228
229
230
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*------------------------------------------------------------------------*/
/* Copyright (c) 2005 - 2010 Armin Biere, Johannes Kepler University. */
/*------------------------------------------------------------------------*/
#include "config.h" /* include this first */
/*------------------------------------------------------------------------*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
/*------------------------------------------------------------------------*/
#include "bfmem.h"
#include "bfstack.h"
#include "bfsort.h"
#include "bftime.h"
#include "bfio.h"
#include "bfnum.h"
#include "bftime.h"
/*------------------------------------------------------------------------*/
#include "booleforce.h" /* include this last */
/*------------------------------------------------------------------------*/
#ifdef BOOLEFORCE_TRACE
/* This option is only useful if you want the generated traces to be easier
* to read by humans.
*/
// #define SORT_ANTECEDENTS /* sort antecedents by clause indices */
#endif
/*------------------------------------------------------------------------*/
#define USE_ZERO_PHASE_AS_DEFAULT
/*------------------------------------------------------------------------*/
/* NO COMPILE TIME CONFIGURATION NECESSARY BELOW THIS LINE */
/*------------------------------------------------------------------------*/
#define LD_RESCALE_VAR_INC -100
#define LD_RESCALE_CLAUSE_INC -100
/*------------------------------------------------------------------------*/
#define MAX_CLAUSE_IDX INT_MAX
#define MAX_VARIABLE_IDX INT_MAX
#define LD_MAX_CLAUSE_SIZE 20
/*------------------------------------------------------------------------*/
#ifdef BOOLEFORCE_STATS
#define ADD(s,delta) do { stats.s += (delta); } while (0)
#else
#define ADD(s,delta) do { } while (0)
#endif
/*------------------------------------------------------------------------*/
#define INC(s) ADD(s,1)
/*------------------------------------------------------------------------*/
#define MAX(a,b) ((a) < (b) ? (b) : (a))
/*------------------------------------------------------------------------*/
#define PERCENT(part,all) \
(100.0 * (((all) > 0) ? (part) / (double)(all) : 0.0))
/*------------------------------------------------------------------------*/
#define AVG(s,n) \
(((n) > 0) ? (s) / (double) (n) : 0.0)
/*------------------------------------------------------------------------*/
typedef struct Var Var;
typedef struct Lit Lit;
typedef struct Clause Clause;
typedef struct ClauseStats ClauseStats;
typedef struct DynamicClauseStats DynamicClauseStats;
typedef struct Stats Stats;
typedef struct Limits Limits;
typedef struct Frame Frame;
typedef struct Interval Interval;
/*------------------------------------------------------------------------*/
DeclarePtrStack (Clause);
DeclareStack (Frame);
DeclarePtrStack (Frame);
/*------------------------------------------------------------------------*/
enum Result
{
FALSE = -1,
UNKNOWN = 0,
TRUE = 1,
};
typedef enum Result Result;
/*------------------------------------------------------------------------*/
struct Lit
{
intStack watch2; /* watched clauses by this literal */
unsigned tla; /* top level assignments when last checked */
};
/*------------------------------------------------------------------------*/
struct Var
{
int level;
int mark;
int pos;
BfUwe score;
Clause *reason;
unsigned top_level_assigned;
unsigned initialized:1;
unsigned core:1;
};
/*------------------------------------------------------------------------*/
struct Clause
{
unsigned idx;
BfUwe score;
unsigned size : LD_MAX_CLAUSE_SIZE;
/* The following three flags are actually one hot encoded.
*/
unsigned original:1;
unsigned learned:1;
unsigned resolved:1;
unsigned reason:1; /* active as reason */
unsigned dying:1; /* on dying stack */
#ifndef NDEBUG
unsigned connected:1;
unsigned mark:1;
#endif
#ifdef BOOLEFORCE_TRACE
unsigned core:1;
unsigned antecedents:1;
#endif
int cells[1];
};
/*------------------------------------------------------------------------*/
struct Interval
{
int start;
int last;
};
/*------------------------------------------------------------------------*/
struct Frame
{
unsigned mark;
Interval trail; /* on 'trail' stack */
Interval premisses; /* on 'resolved_premisses' stack */
};
/*------------------------------------------------------------------------*/
struct ClauseStats
{
int clauses;
int64 literals;
#ifdef BOOLEFORCE_STATS
int unary;
int binary;
int large;
#endif
};
/*------------------------------------------------------------------------*/
struct DynamicClauseStats
{
ClauseStats added;
ClauseStats removed;
ClauseStats current;
ClauseStats max;
};
/*------------------------------------------------------------------------*/
struct Stats
{
int variables;
DynamicClauseStats original;
DynamicClauseStats resolved;
DynamicClauseStats learned;
DynamicClauseStats all;
int progress_reports;
double seconds;
int64 conflicts;
int decisions;
int iterations;
int gcs;
int64 recycled_literals;
int64 recycled_clauses;
#ifdef BOOLEFORCE_STATS
int full_top_level_gcs;
int fast_top_level_gcs;
int reduce_learned_clauses_gcs;
int64 reduced_learned_clauses;
int64 reduced_learned_literals;
int64 recycled_bytes;
double gc_time;
int restarts;
int variable_rescales;
int clause_rescales;
int small_decision_clauses;
int small_decision_clauses_sum;
int uips;
int64 resolved_premisses;
int64 resolved_implications;
int64 resolved_implication_chains;
int64 unshrunken_literals;
int64 shrunken_literals;
int64 shrunken_clauses;
int trivial_clauses;
int failed_literals;
int assignments_through_failed_literals;
int failed_literal_rounds;
int64 sum_height_at_conflict;
int64 sum_conflict_frame_range;
int64 sum_conflict_frames;
int64 analyzed_frames;
int64 backtracks;
int64 backjumps;
int64 backjumpedlevels;
int assume_decisions;
int random_decisions;
int score_decisions;
int64 pushs;
int64 pops;
int64 antecedents;
int64 propagations;
int64 bcps;
int64 assignments;
int64 visits;
int64 traversals;
int64 other_watched_true;
int64 var_score_incs;
int64 clause_score_incs;
int64 swaps;
int64 swaps_per_var_score_inc;
int64 swaps_per_push;
int64 swaps_per_pop;
#endif
};
/*------------------------------------------------------------------------*/
struct Limits
{
int conflicts;
int decisions;
double time;
};
/*------------------------------------------------------------------------*/
enum State
{
RESET_STATE = 0,
INITIALIZED_STATE = 1,
};
typedef enum State State;
/*------------------------------------------------------------------------*/
static State state;
/*------------------------------------------------------------------------*/
static FILE *output;
static const char * output_name;
static int verbose;
#ifndef NDEBUG
static int check;
#endif
#ifdef BOOLEFORCE_TRACE
static int trace;
static int vars_core_generated;
static int clausal_core_generated;
#endif
/*------------------------------------------------------------------------*/
static int max_variable_idx;
static int size_variables;
static Lit *literals;
static Var *variables;
static signed char *assignment;
/*------------------------------------------------------------------------*/
static intStack resolved_literals;
static intStack resolved_premisses;
static intStack resolved_clauses;
static ClausePtrStack clauses;
static ClausePtrStack dying_clauses;
static intStack unit_clauses;
static Clause *empty_clause;
#ifdef BOOLEFORCE_TRACE
static intStack idx2antecedents;
static intStack antecedents;
#endif
static intStack sort_stack;
static intStack reduce_learned_clauses_stack;
static intStack dfs_stack;
/*------------------------------------------------------------------------*/
static int small_decision_clause_size;
static int disable_resolution_of_implication_chains;
static int disable_resolution_of_non_binary_implication_chains;
static int disable_recursive_resolution_of_literals;
static int disable_trimming_of_implication_chains;
static int disable_all_shrinking;
static int disable_failed_literals;
static int disable_first_uip;
/*------------------------------------------------------------------------*/
static int level;
static FrameStack control;
static intStack trail;
static int next_propagation;
static Clause *conflict;
static FramePtrStack frames;
static int uip;
/*------------------------------------------------------------------------*/
static unsigned assigned;
static unsigned unassigned;
static unsigned top_level_assigned; /* abbrv: 'tla' */
static unsigned tla_full_gc; /* tla at last full top level gc */
static unsigned tla_fast_gc; /* tla at last fast top level gc */
static intStack ranking;
static intStack assumptions;
/*------------------------------------------------------------------------*/
static int disable_inc_score;
static BfUwe var_score_inc;
static BfUwe clause_score_inc;
/*------------------------------------------------------------------------*/
static unsigned rng_state;
static unsigned rng_seed;
/*------------------------------------------------------------------------*/
static int64 conflicts_limit_for_restart;
static int conflicts_limit_inc_for_restart;
static int conflicts_limit_inc_inc_rate_for_restart; /* in percent */
/*------------------------------------------------------------------------*/
static int learned_limit_for_reduce;
/*------------------------------------------------------------------------*/
static int progress_report_counter;
static int flushed_report;
/*------------------------------------------------------------------------*/
static Stats stats;
static Limits limits;
/*------------------------------------------------------------------------*/
static double entered_time;
static int entered;
/*------------------------------------------------------------------------*/
/* This is a random number generator from 'Numerical Recipes in C'.
*/
static unsigned
rng (void)
{
unsigned res = rng_state;
rng_state *= 1664525;
rng_state += 1013904223;
#ifdef BOOLEFORCE_LOG
if (verbose >= 6)
fprintf (output, "c rng %u\n", res);
#endif
return res;
}
/*------------------------------------------------------------------------*/
static unsigned
rng_one_out_of_two_to_the_power (int exponent)
{
unsigned res;
res = rng ();
if (exponent < 32)
res >>= (32 - exponent) / 2;
res &= (1 << exponent) - 1;
return res;
}
/*------------------------------------------------------------------------*/
static size_t
bytes_literals (int n)
{
return sizeof (literals[0]) * 2 * n;
}
/*------------------------------------------------------------------------*/
static size_t
bytes_variables (int n)
{
return n ? sizeof (variables[0]) * (n + 1) : 0;
}
/*------------------------------------------------------------------------*/
static void
check_legal_lit_idx (int idx)
{
(void) idx;
assert (-max_variable_idx <= idx);
assert (idx);
assert (idx <= max_variable_idx);
}
/*------------------------------------------------------------------------*/
static int
idx2unsigned (int idx)
{
int res;
res = (idx < 0) ? -idx : idx;
return res;
}
/*------------------------------------------------------------------------*/
static Lit *
idx2lit (int idx)
{
Lit *res;
check_legal_lit_idx (idx);
res = literals + 2 * idx2unsigned (idx) + (idx < 0);
return res;
}
/*------------------------------------------------------------------------*/
static Var *
idx2var (int idx)
{
return variables + idx2unsigned (idx);
}
/*------------------------------------------------------------------------*/
static int
idx2level (int idx)
{
return idx2var (idx)->level;
}
/*------------------------------------------------------------------------*/
static int
idx2sign (int idx)
{
int res;
res = (idx < 0) ? -1 : 1;
return res;
}
/*------------------------------------------------------------------------*/
static int *
end_of_cells (Clause * clause)
{
return clause->cells + clause->size;
}
/*------------------------------------------------------------------------*/
#if defined(BOOLEFORCE_TRACE) || defined(BOOLEFORCE_LOG)
/*------------------------------------------------------------------------*/
static void
print_clause_with_white_space (Clause * clause, FILE * file)
{
int *p, *eoc = end_of_cells (clause);
for (p = clause->cells; p < eoc; p++)
fprintf (file, " %d", *p);
}
/*------------------------------------------------------------------------*/
#endif
/*------------------------------------------------------------------------*/
#ifdef BOOLEFORCE_LOG
/*------------------------------------------------------------------------*/
static void
log_clause (Clause * clause)
{
assert (clause->original + clause->learned + clause->resolved == 1);
fputs ("c ", output);
if (clause->original)
fputs ("original", output);
else if (clause->learned)
fputs ("learned", output);
else
fputs ("resolved", output);
fprintf (output, " clause %d:", clause->idx);
print_clause_with_white_space (clause, output);
fputc ('\n', output);
}
/*------------------------------------------------------------------------*/
#endif
/*------------------------------------------------------------------------*/
static void
mark_variables_in_resolved_literals (int new_mark)
{
int *p;
forall_stack (resolved_literals, p) idx2var (*p)->mark = new_mark;
}
/*------------------------------------------------------------------------*/
static int
is_trivial_resolved_literals (void)
{
int res, *p, idx, mark;
Var *var;
res = 0;
forall_stack (resolved_literals, p)
{
idx = *p;
var = idx2var (idx);
mark = idx2sign (idx);
if (var->mark == -mark)
res = 1;
var->mark = mark;
}
mark_variables_in_resolved_literals (0);
if (res)
{
INC (trivial_clauses);
#ifdef BOOLEFORCE_LOG
if (verbose >= 4)
{
fprintf (output, "c ignoring trivial clause:");
forall_stack (resolved_literals, p) fprintf (output, " %d", *p);
fputc ('\n', output);
}
#endif
}
return res;
}
/*------------------------------------------------------------------------*/
static size_t
bytes_clause (int size)
{
size_t res;
assert (size >= 0);
res = (size_t) (void *) &(((Clause *) 0)->cells);
res += sizeof (((Clause *) 0)->cells[0]) * size;
return res;
}
/*------------------------------------------------------------------------*/
#define ADD_CLAUSE_STAT(cs,member,inc) \
do { \
cs->current.member += inc; \
assert (cs->current.member >= 0); \
if (inc >= 0) \
{ \
cs->added.member += inc; \
if (cs->max.member < cs->current.member) \
cs->max.member = cs->current.member; \
assert (cs->max.member >= 0); \
} \
else \
{ \
cs->removed.member -= inc; \
} \
} while (0)
/*------------------------------------------------------------------------*/
static void
adjust_dynamic_clause_stats (DynamicClauseStats * cs, int size)
{
int delta = (size < 0) ? -1 : 1;
ADD_CLAUSE_STAT (cs, clauses, delta);
ADD_CLAUSE_STAT (cs, literals, size);
#ifdef BOOLEFORCE_STATS
if (size < 0)
size = -size;
if (size == 1)
ADD_CLAUSE_STAT (cs, unary, delta);
else if (size == 2)
ADD_CLAUSE_STAT (cs, binary, delta);
else if (size)
ADD_CLAUSE_STAT (cs, large, delta);
#endif
}
/*------------------------------------------------------------------------*/
static void
adjust_clause_stats (Clause * clause, int delta)
{
if (clause->original)
{
adjust_dynamic_clause_stats (&stats.original, delta);
}
else if (clause->learned)
{
adjust_dynamic_clause_stats (&stats.learned, delta);
}
else
{
assert (clause->resolved);
adjust_dynamic_clause_stats (&stats.resolved, delta);
}
adjust_dynamic_clause_stats (&stats.all, delta);
}
/*------------------------------------------------------------------------*/
static void
check_legal_clause_idx (int idx)
{
(void) idx;
assert (0 < idx);
assert (idx < count_stack (clauses));
}
/*------------------------------------------------------------------------*/
static Clause *
idx2clause (int idx)
{
Clause *res;
int abs_idx;
abs_idx = (idx < 0) ? -idx : idx;
check_legal_clause_idx (abs_idx);
res = clauses.start[abs_idx];
assert (res);
return res;
}
/*------------------------------------------------------------------------*/
static Clause *
alloc_clause (int original, int learned)
{
int size = count_stack (resolved_literals);
size_t bytes;
Clause *res;
if (size >= (1 << LD_MAX_CLAUSE_SIZE))
{
fprintf (stderr,
"libbooleforce: clause length (1 << %d) violated\n",
LD_MAX_CLAUSE_SIZE);
abort ();
}
ADD (antecedents, count_stack (resolved_clauses));
bytes = bytes_clause (size);
res = booleforce_new (bytes);
res->size = size;
if (original)
{
assert (!learned);
res->original = 1;
}
else
{
assert (!res->original);
res->learned = (learned != 0);
res->resolved = (learned == 0);
}
/* We want to use a zero clause index as sentinel, or to denote a
* decision. Therefore we need to add a dummy clause with index 0.
*/
if (!count_stack (clauses))
{
push_stack (clauses, 0); /* no clause */
#ifdef BOOLEFORCE_TRACE
if (trace)
push_stack (antecedents, INT_MAX); /* illegal */
#endif
}
res->idx = count_stack (clauses);
assert (res->idx > 0);
assert (res->idx <= MAX_CLAUSE_IDX);
push_stack (clauses, res);
assert (idx2clause (res->idx) == res);
adjust_clause_stats (res, res->size);
return res;
}
/*------------------------------------------------------------------------*/
static void
connect_empty_clause (Clause * clause)
{
assert (!clause->size);
if (empty_clause)
return;
empty_clause = clause;
#ifdef BOOLEFORCE_LOG
if (verbose >= 3)
fprintf (output, "c connecting empty clause %d\n", clause->idx);
#endif
}
/*------------------------------------------------------------------------*/
static void
connect_unit_clause (Clause * clause)
{
assert (clause->size == 1);
push_stack (unit_clauses, clause->idx);
#ifdef BOOLEFORCE_LOG
if (verbose >= 4)
fprintf (output, "c connecting unit clause %d\n", clause->idx);
#endif
}
/*------------------------------------------------------------------------*/
static int
cmp_int (int a, int b)
{
return a - b;
}
/*------------------------------------------------------------------------*/
static int
deref_idx (int idx)
{
check_legal_lit_idx (idx);
return idx2sign (idx) * assignment[idx2unsigned (idx)];
}
/*------------------------------------------------------------------------*/
static int
cmp_watched (int a, int b)
{
int a_level, b_level, u, v, res;
assert (a != b);
u = deref_idx (a);
v = deref_idx (b);
if (u == TRUE && v != TRUE)
return 1;
if (u != TRUE && v == TRUE)
return -1;
if (u == FALSE && v != FALSE)
return -1;
if (u != FALSE && v == FALSE)
return 1;
a_level = idx2level (a);
b_level = idx2level (b);
res = cmp_int (a_level, b_level);
if (u == TRUE && v == TRUE)
{
if (res)
return -res; /* smaller level is better */
}
else
{
if (res)
return res; /* larger level is better */
}
assert (u == v);
if (a < 0)
a = -a;
if (b < 0)
b = -b;
res = -cmp_int (a, b);
return res;
}
/*------------------------------------------------------------------------*/
static void
swap_int (int *a, int *b)
{
int tmp = *a;
*a = *b;
*b = tmp;
}
/*------------------------------------------------------------------------*/
static int *
find_watched (Clause * clause, int *except)
{
int *res, *p, *eoc = end_of_cells (clause);
res = 0;
for (p = clause->cells; p < eoc; p++)
{
if (p == except)
continue;
if (res && cmp_watched (*p, *res) < 0)
continue;
res = p;
}
assert (res);
return res;
}
/*------------------------------------------------------------------------*/
static void
check_legal_ranking_pos (int pos)
{
#ifndef NDEBUG
int count = count_stack (ranking);
assert (pos >= 0);
assert (pos < count);
#endif
(void) pos;
}
/*------------------------------------------------------------------------*/
static int
parent_in_ranking (int pos)
{
assert (0 < pos);
check_legal_ranking_pos (pos);
return pos / 2;
}
/*------------------------------------------------------------------------*/
static int
left_child_in_ranking (int pos)
{
check_legal_ranking_pos (pos);
return 2 * pos;
}
/*------------------------------------------------------------------------*/
static int
right_child_in_ranking (int pos)
{
check_legal_ranking_pos (pos);
return 2 * pos + 1;
}
/*------------------------------------------------------------------------*/
static int
pos2idx (int pos)
{
check_legal_ranking_pos (pos);
return ranking.start[pos];
}
/*------------------------------------------------------------------------*/
static int
cmp_ranking (int p, int q)
{
int i, j;
BfUwe s, t;
i = pos2idx (p);
j = pos2idx (q);
check_legal_lit_idx (i);
check_legal_lit_idx (j);
s = idx2var (i)->score;
t = idx2var (j)->score;
return booleforce_cmp_uwe (s, t);
}
/*------------------------------------------------------------------------*/
#ifdef BOOLEFORCE_LOG
/*------------------------------------------------------------------------*/
static void
log_var_moved (int idx, int from, int to)
{
fprintf (output,
"c moved variable %d %s from position %d to %d\n",
idx,
(from < to) ? "down" : "up",
from, to);
}
/*------------------------------------------------------------------------*/
#endif
/*------------------------------------------------------------------------*/
static void
swap_ranking (int p, int q)
{
#ifdef BOOLEFORCE_LOG
int old_u_pos, old_v_pos;
#endif