- get rid of unused pool argument in solvable_identical
[platform/upstream/libsolv.git] / src / solver.c
1 /*
2  * Copyright (c) 2007-2008, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * solver.c
10  *
11  * SAT based dependency solver
12  */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17 #include <string.h>
18 #include <assert.h>
19
20 #include "solver.h"
21 #include "bitmap.h"
22 #include "pool.h"
23 #include "util.h"
24 #include "evr.h"
25 #include "policy.h"
26 #include "solverdebug.h"
27
28 #define RULES_BLOCK 63
29
30 /********************************************************************
31  *
32  * dependency check helpers
33  *
34  */
35
36 /*-------------------------------------------------------------------
37  * handle split provides
38  */
39
40 int
41 solver_splitprovides(Solver *solv, Id dep)
42 {
43   Pool *pool = solv->pool;
44   Id p, pp;
45   Reldep *rd;
46   Solvable *s;
47
48   if (!solv->dosplitprovides || !solv->installed)
49     return 0;
50   if (!ISRELDEP(dep))
51     return 0;
52   rd = GETRELDEP(pool, dep);
53   if (rd->flags != REL_WITH)
54     return 0;
55   FOR_PROVIDES(p, pp, dep)
56     {
57       s = pool->solvables + p;
58       if (s->repo == solv->installed && s->name == rd->name)
59         return 1;
60     }
61   return 0;
62 }
63
64
65 /*-------------------------------------------------------------------
66  * solver_dep_installed
67  */
68
69 int
70 solver_dep_installed(Solver *solv, Id dep)
71 {
72 #if 0
73   Pool *pool = solv->pool;
74   Id p, pp;
75
76   if (ISRELDEP(dep))
77     {
78       Reldep *rd = GETRELDEP(pool, dep);
79       if (rd->flags == REL_AND)
80         {
81           if (!solver_dep_installed(solv, rd->name))
82             return 0;
83           return solver_dep_installed(solv, rd->evr);
84         }
85       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
86         return solver_dep_installed(solv, rd->evr);
87     }
88   FOR_PROVIDES(p, pp, dep)
89     {
90       if (p == SYSTEMSOLVABLE || (solv->installed && pool->solvables[p].repo == solv->installed))
91         return 1;
92     }
93 #endif
94   return 0;
95 }
96
97
98 /*-------------------------------------------------------------------
99  * Check if dependenc is possible
100  * 
101  * this mirrors solver_dep_fulfilled
102  * but uses map m instead of the decisionmap
103  */
104
105 static inline int
106 dep_possible(Solver *solv, Id dep, Map *m)
107 {
108   Pool *pool = solv->pool;
109   Id p, pp;
110
111   if (ISRELDEP(dep))
112     {
113       Reldep *rd = GETRELDEP(pool, dep);
114       if (rd->flags == REL_AND)
115         {
116           if (!dep_possible(solv, rd->name, m))
117             return 0;
118           return dep_possible(solv, rd->evr, m);
119         }
120       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
121         return solver_splitprovides(solv, rd->evr);
122       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
123         return solver_dep_installed(solv, rd->evr);
124     }
125   FOR_PROVIDES(p, pp, dep)
126     {
127       if (MAPTST(m, p))
128         return 1;
129     }
130   return 0;
131 }
132
133 /********************************************************************
134  *
135  * Rule handling
136  *
137  * - unify rules, remove duplicates
138  */
139
140 static Pool *unifyrules_sortcmp_data;
141
142 /*-------------------------------------------------------------------
143  *
144  * compare rules for unification sort
145  *
146  */
147
148 static int
149 unifyrules_sortcmp(const void *ap, const void *bp)
150 {
151   Pool *pool = unifyrules_sortcmp_data;
152   Rule *a = (Rule *)ap;
153   Rule *b = (Rule *)bp;
154   Id *ad, *bd;
155   int x;
156
157   x = a->p - b->p;
158   if (x)
159     return x;                          /* p differs */
160
161   /* identical p */
162   if (a->d == 0 && b->d == 0)
163     return a->w2 - b->w2;              /* assertion: return w2 diff */
164
165   if (a->d == 0)                       /* a is assertion, b not */
166     {
167       x = a->w2 - pool->whatprovidesdata[b->d];
168       return x ? x : -1;
169     }
170
171   if (b->d == 0)                       /* b is assertion, a not */
172     {
173       x = pool->whatprovidesdata[a->d] - b->w2;
174       return x ? x : 1;
175     }
176
177   /* compare whatprovidesdata */
178   ad = pool->whatprovidesdata + a->d;
179   bd = pool->whatprovidesdata + b->d;
180   while (*bd)
181     if ((x = *ad++ - *bd++) != 0)
182       return x;
183   return *ad;
184 }
185
186
187 /*-------------------------------------------------------------------
188  *
189  * unify rules
190  * go over all rules and remove duplicates
191  */
192
193 static void
194 unifyrules(Solver *solv)
195 {
196   Pool *pool = solv->pool;
197   int i, j;
198   Rule *ir, *jr;
199
200   if (solv->nrules <= 1)               /* nothing to unify */
201     return;
202
203   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules -----\n");
204
205   /* sort rules first */
206   unifyrules_sortcmp_data = solv->pool;
207   qsort(solv->rules + 1, solv->nrules - 1, sizeof(Rule), unifyrules_sortcmp);
208
209   /* prune rules
210    * i = unpruned
211    * j = pruned
212    */
213   jr = 0;
214   for (i = j = 1, ir = solv->rules + i; i < solv->nrules; i++, ir++)
215     {
216       if (jr && !unifyrules_sortcmp(ir, jr))
217         continue;                      /* prune! */
218       jr = solv->rules + j++;          /* keep! */
219       if (ir != jr)
220         *jr = *ir;
221     }
222
223   /* reduced count from nrules to j rules */
224   POOL_DEBUG(SAT_DEBUG_STATS, "pruned rules from %d to %d\n", solv->nrules, j);
225
226   /* adapt rule buffer */
227   solv->nrules = j;
228   solv->rules = sat_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
229     /*
230      * debug: statistics
231      */
232   IF_POOLDEBUG (SAT_DEBUG_STATS)
233     {
234       int binr = 0;
235       int lits = 0;
236       Id *dp;
237       Rule *r;
238
239       for (i = 1; i < solv->nrules; i++)
240         {
241           r = solv->rules + i;
242           if (r->d == 0)
243             binr++;
244           else
245             {
246               dp = solv->pool->whatprovidesdata + r->d;
247               while (*dp++)
248                 lits++;
249             }
250         }
251       POOL_DEBUG(SAT_DEBUG_STATS, "  binary: %d\n", binr);
252       POOL_DEBUG(SAT_DEBUG_STATS, "  normal: %d, %d literals\n", solv->nrules - 1 - binr, lits);
253     }
254   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules end -----\n");
255 }
256
257 #if 0
258
259 /*
260  * hash rule
261  */
262
263 static Hashval
264 hashrule(Solver *solv, Id p, Id d, int n)
265 {
266   unsigned int x = (unsigned int)p;
267   int *dp;
268
269   if (n <= 1)
270     return (x * 37) ^ (unsigned int)d;
271   dp = solv->pool->whatprovidesdata + d;
272   while (*dp)
273     x = (x * 37) ^ (unsigned int)*dp++;
274   return x;
275 }
276 #endif
277
278
279 /*-------------------------------------------------------------------
280  * 
281  */
282
283 /*
284  * add rule
285  *  p = direct literal; always < 0 for installed rpm rules
286  *  d, if < 0 direct literal, if > 0 offset into whatprovides, if == 0 rule is assertion (look at p only)
287  *
288  *
289  * A requires b, b provided by B1,B2,B3 => (-A|B1|B2|B3)
290  *
291  * p < 0 : pkg id of A
292  * d > 0 : Offset in whatprovidesdata (list of providers of b)
293  *
294  * A conflicts b, b provided by B1,B2,B3 => (-A|-B1), (-A|-B2), (-A|-B3)
295  * p < 0 : pkg id of A
296  * d < 0 : Id of solvable (e.g. B1)
297  *
298  * d == 0: unary rule, assertion => (A) or (-A)
299  *
300  *   Install:    p > 0, d = 0   (A)             user requested install
301  *   Remove:     p < 0, d = 0   (-A)            user requested remove
302  *   Requires:   p < 0, d > 0   (-A|B1|B2|...)  d: <list of providers for requirement of p>
303  *   Updates:    p > 0, d > 0   (A|B1|B2|...)   d: <list of updates for solvable p>
304  *   Conflicts:  p < 0, d < 0   (-A|-B)         either p (conflict issuer) or d (conflict provider) (binary rule)
305  *   ?           p > 0, d < 0   (A|-B)
306  *   No-op ?:    p = 0, d = 0   (null)          (used as policy rule placeholder)
307  *
308  *   resulting watches:
309  *   ------------------
310  *   Direct assertion (no watch needed)( if d <0 ) --> d = 0, w1 = p, w2 = 0
311  *   Binary rule: p = first literal, d = 0, w2 = second literal, w1 = p
312  *   every other : w1 = p, w2 = whatprovidesdata[d];
313  *   Disabled rule: w1 = 0
314  *
315  *   always returns a rule for non-rpm rules
316  */
317
318 static Rule *
319 addrule(Solver *solv, Id p, Id d)
320 {
321   Pool *pool = solv->pool;
322   Rule *r = 0;
323   Id *dp = 0;
324
325   int n = 0;                           /* number of literals in rule - 1
326                                           0 = direct assertion (single literal)
327                                           1 = binary rule
328                                           >1 = 
329                                         */
330
331   /* it often happenes that requires lead to adding the same rpm rule
332    * multiple times, so we prune those duplicates right away to make
333    * the work for unifyrules a bit easier */
334
335   if (solv->nrules                      /* we already have rules */
336       && !solv->rpmrules_end)           /* but are not done with rpm rules */
337     {
338       r = solv->rules + solv->nrules - 1;   /* get the last added rule */
339       if (r->p == p && r->d == d && d != 0)   /* identical and not user requested */
340         return r;
341     }
342
343     /*
344      * compute number of literals (n) in rule
345      */
346     
347   if (d < 0)
348     {
349       /* always a binary rule */
350       if (p == d)
351         return 0;                      /* ignore self conflict */
352       n = 1;
353     }
354   else if (d > 0)
355     {
356       for (dp = pool->whatprovidesdata + d; *dp; dp++, n++)
357         if (*dp == -p)
358           return 0;                     /* rule is self-fulfilling */
359         
360       if (n == 1)   /* have single provider */
361         d = dp[-1];                     /* take single literal */
362     }
363
364 #if 0
365   if (n == 0 && !solv->rpmrules_end)
366     {
367       /* this is a rpm rule assertion, we do not have to allocate it */
368       /* it can be identified by a level of 1 and a zero reason */
369       /* we must not drop those rules from the decisionq when rewinding! */
370       assert(p < 0);
371       assert(solv->decisionmap[-p] == 0 || solv->decisionmap[-p] == -1);
372       if (solv->decisionmap[-p])
373         return 0;       /* already got that one */
374       queue_push(&solv->decisionq, p);
375       queue_push(&solv->decisionq_why, 0);
376       solv->decisionmap[-p] = -1;
377       return 0;
378     }
379 #endif
380
381   if (n == 1 && p > d && !solv->rpmrules_end)
382     {
383       /* smallest literal first so we can find dups */
384       n = p; p = d; d = n;             /* p <-> d */
385       n = 1;                           /* re-set n, was used as temp var */
386     }
387
388     /*
389      * check for duplicate
390      */
391     
392   /* check if the last added rule (r) is exactly the same as what we're looking for. */
393   if (r && n == 1 && !r->d && r->p == p && r->w2 == d)
394     return r;  /* binary rule */
395
396     /* have n-ary rule with same first literal, check other literals */
397   if (r && n > 1 && r->d && r->p == p)
398     {
399       /* Rule where d is an offset in whatprovidesdata */
400       Id *dp2;
401       if (d == r->d)
402         return r;
403       dp2 = pool->whatprovidesdata + r->d;
404       for (dp = pool->whatprovidesdata + d; *dp; dp++, dp2++)
405         if (*dp != *dp2)
406           break;
407       if (*dp == *dp2)
408         return r;
409    }
410
411     /*
412      * allocate new rule
413      */
414
415   /* extend rule buffer */
416   solv->rules = sat_extend(solv->rules, solv->nrules, 1, sizeof(Rule), RULES_BLOCK);
417   r = solv->rules + solv->nrules++;    /* point to rule space */
418
419     /*
420      * r = new rule
421      */
422     
423   r->p = p;
424   if (n == 0)
425     {
426       /* direct assertion, no watch needed */
427       r->d = 0;
428       r->w1 = p;
429       r->w2 = 0;
430     }
431   else if (n == 1)
432     {
433       /* binary rule */
434       r->d = 0;
435       r->w1 = p;
436       r->w2 = d;
437     }
438   else
439     {
440       r->d = d;
441       r->w1 = p;
442       r->w2 = pool->whatprovidesdata[d];
443     }
444   r->n1 = 0;
445   r->n2 = 0;
446
447   IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
448     {
449       POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "  Add rule: ");
450       solver_printrule(solv, SAT_DEBUG_RULE_CREATION, r);
451     }
452
453   return r;
454 }
455
456 /*-------------------------------------------------------------------
457  * disable rule
458  */
459
460 static inline void
461 disablerule(Solver *solv, Rule *r)
462 {
463   if (r->d >= 0)
464     r->d = -r->d - 1;
465 }
466
467 /*-------------------------------------------------------------------
468  * enable rule
469  */
470
471 static inline void
472 enablerule(Solver *solv, Rule *r)
473 {
474   if (r->d < 0)
475     r->d = -r->d - 1;
476 }
477
478
479 /**********************************************************************************/
480
481 /* a problem is an item on the solver's problem list. It can either be >0, in that
482  * case it is a update rule, or it can be <0, which makes it refer to a job
483  * consisting of multiple job rules.
484  */
485
486 static void
487 disableproblem(Solver *solv, Id v)
488 {
489   Rule *r;
490   int i;
491   Id *jp;
492
493   if (v > 0)
494     {
495       disablerule(solv, solv->rules + v);
496       return;
497     }
498   v = -(v + 1);
499   jp = solv->ruletojob.elements;
500   for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
501     if (*jp == v)
502       disablerule(solv, r);
503 }
504
505 /*-------------------------------------------------------------------
506  * enableproblem
507  */
508
509 static void
510 enableproblem(Solver *solv, Id v)
511 {
512   Rule *r;
513   int i;
514   Id *jp;
515
516   if (v > 0)
517     {
518       if (v >= solv->featurerules && v < solv->featurerules_end)
519         {
520           /* do not enable feature rule if update rule is enabled */
521           r = solv->rules + (v - solv->featurerules + solv->updaterules);
522           if (r->d >= 0)
523             return;
524         }
525       enablerule(solv, solv->rules + v);
526       if (v >= solv->updaterules && v < solv->updaterules_end)
527         {
528           /* disable feature rule when enabling update rule */
529           r = solv->rules + (v - solv->updaterules + solv->featurerules);
530           if (r->p)
531             disablerule(solv, r);
532         }
533       return;
534     }
535   v = -(v + 1);
536   jp = solv->ruletojob.elements;
537   for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++, jp++)
538     if (*jp == v)
539       enablerule(solv, r);
540 }
541
542
543 /************************************************************************/
544
545 /*
546  * make assertion rules into decisions
547  * 
548  * go through update and job rules and add direct assertions
549  * to the decisionqueue. If we find a conflict, disable rules and
550  * add them to problem queue.
551  */
552
553 static void
554 makeruledecisions(Solver *solv)
555 {
556   Pool *pool = solv->pool;
557   int i, ri, ii;
558   Rule *r, *rr;
559   Id v, vv;
560   int decisionstart;
561
562   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- makeruledecisions ; size decisionq: %d -----\n",solv->decisionq.count);
563
564   decisionstart = solv->decisionq.count;
565   for (ii = 0; ii < solv->ruleassertions.count; ii++)
566     {
567       ri = solv->ruleassertions.elements[ii];
568       r = solv->rules + ri;
569         
570       if (r->d < 0 || !r->p || r->w2)   /* disabled, dummy or no assertion */
571         continue;
572       /* do weak rules in phase 2 */
573       if (ri < solv->learntrules && MAPTST(&solv->weakrulemap, ri))
574         continue;
575         
576       v = r->p;
577       vv = v > 0 ? v : -v;
578         
579       if (!solv->decisionmap[vv])          /* if not yet decided */
580         {
581             /*
582              * decide !
583              */
584           queue_push(&solv->decisionq, v);
585           queue_push(&solv->decisionq_why, r - solv->rules);
586           solv->decisionmap[vv] = v > 0 ? 1 : -1;
587           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
588             {
589               Solvable *s = solv->pool->solvables + vv;
590               if (v < 0)
591                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "conflicting %s (assertion)\n", solvable2str(solv->pool, s));
592               else
593                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "installing  %s (assertion)\n", solvable2str(solv->pool, s));
594             }
595           continue;
596         }
597         /*
598          * check previous decision: is it sane ?
599          */
600         
601       if (v > 0 && solv->decisionmap[vv] > 0)    /* ok to install */
602         continue;
603       if (v < 0 && solv->decisionmap[vv] < 0)    /* ok to remove */
604         continue;
605         
606         /*
607          * found a conflict!
608          * 
609          * The rule (r) we're currently processing says something
610          * different (v = r->p) than a previous decision (decisionmap[abs(v)])
611          * on this literal
612          */
613         
614       if (ri >= solv->learntrules)
615         {
616           /* conflict with a learnt rule */
617           /* can happen when packages cannot be installed for
618            * multiple reasons. */
619           /* we disable the learnt rule in this case */
620           disablerule(solv, r);
621           continue;
622         }
623         
624         /*
625          * find the decision which is the "opposite" of the rule
626          */
627         
628       for (i = 0; i < solv->decisionq.count; i++)
629         if (solv->decisionq.elements[i] == -v)
630           break;
631       assert(i < solv->decisionq.count);         /* assert that we found it */
632         
633         /*
634          * conflict with system solvable ?
635          */
636         
637       if (v == -SYSTEMSOLVABLE) {
638         /* conflict with system solvable */
639         queue_push(&solv->problems, solv->learnt_pool.count);
640         queue_push(&solv->learnt_pool, ri);
641         queue_push(&solv->learnt_pool, 0);
642         POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflict with system solvable, disabling rule #%d\n", ri);
643         if  (ri >= solv->jobrules && ri < solv->jobrules_end)
644           v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
645         else
646           v = ri;
647         queue_push(&solv->problems, v);
648         queue_push(&solv->problems, 0);
649         disableproblem(solv, v);
650         continue;
651       }
652
653       assert(solv->decisionq_why.elements[i]);
654         
655         /*
656          * conflict with an rpm rule ?
657          */
658         
659       if (solv->decisionq_why.elements[i] < solv->rpmrules_end)
660         {
661           /* conflict with rpm rule assertion */
662           queue_push(&solv->problems, solv->learnt_pool.count);
663           queue_push(&solv->learnt_pool, ri);
664           queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
665           queue_push(&solv->learnt_pool, 0);
666           assert(v > 0 || v == -SYSTEMSOLVABLE);
667           POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflict with rpm rule, disabling rule #%d\n", ri);
668           if (ri >= solv->jobrules && ri < solv->jobrules_end)
669             v = -(solv->ruletojob.elements[ri - solv->jobrules] + 1);
670           else
671             v = ri;
672           queue_push(&solv->problems, v);
673           queue_push(&solv->problems, 0);
674           disableproblem(solv, v);
675           continue;
676         }
677
678         /*
679          * conflict with another job or update/feature rule
680          */
681         
682       /* record proof */
683       queue_push(&solv->problems, solv->learnt_pool.count);
684       queue_push(&solv->learnt_pool, ri);
685       queue_push(&solv->learnt_pool, solv->decisionq_why.elements[i]);
686       queue_push(&solv->learnt_pool, 0);
687
688       POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "conflicting update/job assertions over literal %d\n", vv);
689
690         /*
691          * push all of our rules (can only be feature or job rules)
692          * asserting this literal on the problem stack
693          */
694         
695       for (i = solv->featurerules, rr = solv->rules + i; i < solv->learntrules; i++, rr++)
696         {
697           if (rr->d < 0                          /* disabled */
698               || rr->w2)                         /*  or no assertion */
699             continue;
700           if (rr->p != vv                        /* not affecting the literal */
701               && rr->p != -vv)
702             continue;
703           if (MAPTST(&solv->weakrulemap, i))     /* weak: silently ignore */
704             continue;
705             
706           POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, " - disabling rule #%d\n", i);
707             
708           solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, solv->rules + i);
709             
710           v = i;
711             /* is is a job rule ? */
712           if (i >= solv->jobrules && i < solv->jobrules_end)
713             v = -(solv->ruletojob.elements[i - solv->jobrules] + 1);
714             
715           queue_push(&solv->problems, v);
716           disableproblem(solv, v);
717         }
718       queue_push(&solv->problems, 0);
719
720        /*
721         * start over
722         * (back up from decisions)
723         */
724       while (solv->decisionq.count > decisionstart)
725         {
726           v = solv->decisionq.elements[--solv->decisionq.count];
727           --solv->decisionq_why.count;
728           vv = v > 0 ? v : -v;
729           solv->decisionmap[vv] = 0;
730         }
731       ii = -1; /* restarts loop at 0 */
732     }
733
734     /*
735      * phase 2: now do the weak assertions
736      */
737   for (ii = 0; ii < solv->ruleassertions.count; ii++)
738     {
739       ri = solv->ruleassertions.elements[ii];
740       r = solv->rules + ri;
741       if (r->d < 0 || r->w2)                     /* disabled or no assertion */
742         continue;
743       if (!MAPTST(&solv->weakrulemap, ri))       /* skip non-weak */
744         continue;
745       v = r->p;
746       vv = v > 0 ? v : -v;
747         /*
748          * decide !
749          * (if not yet decided)
750          */
751       if (!solv->decisionmap[vv])
752         {
753           queue_push(&solv->decisionq, v);
754           queue_push(&solv->decisionq_why, r - solv->rules);
755           solv->decisionmap[vv] = v > 0 ? 1 : -1;
756           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
757             {
758               Solvable *s = solv->pool->solvables + vv;
759               if (v < 0)
760                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "conflicting %s (weak assertion)\n", solvable2str(solv->pool, s));
761               else
762                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "installing  %s (weak assertion)\n", solvable2str(solv->pool, s));
763             }
764           continue;
765         }
766         /*
767          * previously decided, sane ?
768          */
769       if (v > 0 && solv->decisionmap[vv] > 0)
770         continue;
771       if (v < 0 && solv->decisionmap[vv] < 0)
772         continue;
773         
774       POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "assertion conflict, but I am weak, disabling ");
775       solver_printrule(solv, SAT_DEBUG_UNSOLVABLE, r);
776       disablerule(solv, r);
777     }
778   
779   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- makeruledecisions end; size decisionq: %d -----\n",solv->decisionq.count);
780 }
781
782
783 /*-------------------------------------------------------------------
784  * enable/disable learnt rules 
785  *
786  * we have enabled or disabled some of our rules. We now reenable all
787  * of our learnt rules but the ones that were learnt from rules that
788  * are now disabled.
789  */
790 static void
791 enabledisablelearntrules(Solver *solv)
792 {
793   Pool *pool = solv->pool;
794   Rule *r;
795   Id why, *whyp;
796   int i;
797
798   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "enabledisablelearntrules called\n");
799   for (i = solv->learntrules, r = solv->rules + i; i < solv->nrules; i++, r++)
800     {
801       whyp = solv->learnt_pool.elements + solv->learnt_why.elements[i - solv->learntrules];
802       while ((why = *whyp++) != 0)
803         {
804           assert(why > 0 && why < i);
805           if (solv->rules[why].d < 0)
806             break;
807         }
808       /* why != 0: we found a disabled rule, disable the learnt rule */
809       if (why && r->d >= 0)
810         {
811           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
812             {
813               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "disabling ");
814               solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
815             }
816           disablerule(solv, r);
817         }
818       else if (!why && r->d < 0)
819         {
820           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
821             {
822               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "re-enabling ");
823               solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
824             }
825           enablerule(solv, r);
826         }
827     }
828 }
829
830
831 /*-------------------------------------------------------------------
832  * enable weak rules
833  * 
834  * Enable all rules, except learnt rules, which are
835  * - disabled and weak (set in weakrulemap)
836  * 
837  */
838
839 static void
840 enableweakrules(Solver *solv)
841 {
842   int i;
843   Rule *r;
844
845   for (i = 1, r = solv->rules + i; i < solv->learntrules; i++, r++)
846     {
847       if (r->d >= 0) /* skip non-direct literals */
848         continue;
849       if (!MAPTST(&solv->weakrulemap, i))
850         continue;
851       enablerule(solv, r);
852     }
853 }
854
855
856 /* FIXME: bad code ahead, replace as soon as possible */
857 /* FIXME: should probably look at SOLVER_INSTALL|SOLVABLE_ONE_OF */
858
859 /*-------------------------------------------------------------------
860  * disable update rules
861  */
862
863 static void
864 disableupdaterules(Solver *solv, Queue *job, int jobidx)
865 {
866   Pool *pool = solv->pool;
867   int i, j;
868   Id how, select, what, p, pp;
869   Solvable *s;
870   Repo *installed;
871   Rule *r;
872   Id lastjob = -1;
873
874   installed = solv->installed;
875   if (!installed)
876     return;
877
878   if (jobidx != -1)
879     {
880       how = job->elements[jobidx];
881       select = how & SOLVER_SELECTMASK;
882       switch (how & SOLVER_JOBMASK)
883         {
884         case SOLVER_ERASE:
885           break;
886         case SOLVER_INSTALL:
887           if (select != SOLVER_SOLVABLE)
888             return;
889           break;
890         default:
891           return;
892         }
893     }
894   /* go through all enabled job rules */
895   MAPZERO(&solv->noupdate);
896   for (i = solv->jobrules; i < solv->jobrules_end; i++)
897     {
898       r = solv->rules + i;
899       if (r->d < 0)     /* disabled? */
900         continue;
901       j = solv->ruletojob.elements[i - solv->jobrules];
902       if (j == lastjob)
903         continue;
904       lastjob = j;
905       how = job->elements[j];
906       what = job->elements[j + 1];
907       select = how & SOLVER_SELECTMASK;
908       switch (how & SOLVER_JOBMASK)
909         {
910         case SOLVER_INSTALL:
911           if (select != SOLVER_SOLVABLE)
912             break;
913           s = pool->solvables + what;
914           if (solv->noobsoletes.size && MAPTST(&solv->noobsoletes, what))
915             break;
916           if (s->repo == installed)
917             {
918               MAPSET(&solv->noupdate, what - installed->start);
919               break;
920             }
921           if (s->obsoletes)
922             {
923               Id obs, *obsp;
924               obsp = s->repo->idarraydata + s->obsoletes;
925               while ((obs = *obsp++) != 0)
926                 FOR_PROVIDES(p, pp, obs)
927                   {
928                     if (pool->solvables[p].repo != installed)
929                       continue;
930                     if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
931                       continue;
932                     MAPSET(&solv->noupdate, p - installed->start);
933                   }
934             }
935           FOR_PROVIDES(p, pp, s->name)
936             {
937               if (!solv->implicitobsoleteusesprovides && pool->solvables[p].name != s->name)
938                 continue;
939               if (pool->solvables[p].repo == installed)
940                 MAPSET(&solv->noupdate, p - installed->start);
941             }
942           break;
943         case SOLVER_ERASE:
944           FOR_JOB_SELECT(p, pp, select, what)
945             if (pool->solvables[p].repo == installed)
946               MAPSET(&solv->noupdate, p - installed->start);
947           break;
948         default:
949           break;
950         }
951     }
952
953   /* fixup update rule status */
954   if (jobidx != -1)
955     {
956       /* we just disabled job #jobidx. enable all update rules
957        * that aren't disabled by the remaining job rules */
958       how = job->elements[jobidx];
959       what = job->elements[jobidx + 1];
960       select = how & SOLVER_SELECTMASK;
961       switch (how & SOLVER_JOBMASK)
962         {
963         case SOLVER_INSTALL:
964           if (select != SOLVER_SOLVABLE)
965             break;
966           s = pool->solvables + what;
967           if (s->repo == installed)
968             {
969               r = solv->rules + solv->updaterules + (what - installed->start);
970               if (r->d >= 0)
971                 break;
972               enablerule(solv, r);
973               IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
974                 {
975                   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
976                   solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
977                 }
978               break;
979             }
980           if (s->obsoletes)
981             {
982               Id obs, *obsp;
983               obsp = s->repo->idarraydata + s->obsoletes;
984               while ((obs = *obsp++) != 0)
985                 FOR_PROVIDES(p, pp, obs)
986                   {
987                     if (pool->solvables[p].repo != installed)
988                       continue;
989                     if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
990                       continue;
991                     if (MAPTST(&solv->noupdate, p - installed->start))
992                       continue;
993                     r = solv->rules + solv->updaterules + (p - installed->start);
994                     if (r->d >= 0)
995                       continue;
996                     enablerule(solv, r);
997                     IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
998                       {
999                         POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1000                         solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
1001                       }
1002                   }
1003             }
1004           FOR_PROVIDES(p, pp, s->name)
1005             {
1006               if (!solv->implicitobsoleteusesprovides && pool->solvables[p].name != s->name)
1007                 continue;
1008               if (pool->solvables[p].repo != installed)
1009                 continue;
1010               if (MAPTST(&solv->noupdate, p - installed->start))
1011                 continue;
1012               r = solv->rules + solv->updaterules + (p - installed->start);
1013               if (r->d >= 0)
1014                 continue;
1015               enablerule(solv, r);
1016               IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
1017                 {
1018                   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1019                   solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
1020                 }
1021             }
1022           break;
1023         case SOLVER_ERASE:
1024           FOR_JOB_SELECT(p, pp, select, what)
1025             {
1026               if (pool->solvables[p].repo != installed)
1027                 continue;
1028               if (MAPTST(&solv->noupdate, p - installed->start))
1029                 continue;
1030               r = solv->rules + solv->updaterules + (p - installed->start);
1031               if (r->d >= 0)
1032                 continue;
1033               enablerule(solv, r);
1034               IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
1035                 {
1036                   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1037                   solver_printrule(solv, SAT_DEBUG_SOLUTIONS, r);
1038                 }
1039             }
1040           break;
1041         default:
1042           break;
1043         }
1044       return;
1045     }
1046
1047   for (i = 0; i < installed->nsolvables; i++)
1048     {
1049       r = solv->rules + solv->updaterules + i;
1050       if (r->d >= 0 && MAPTST(&solv->noupdate, i))
1051         disablerule(solv, r);   /* was enabled, need to disable */
1052       r = solv->rules + solv->featurerules + i;
1053       if (r->d >= 0 && MAPTST(&solv->noupdate, i))
1054         disablerule(solv, r);   /* was enabled, need to disable */
1055     }
1056 }
1057
1058
1059 /*
1060  *  special multiversion patch conflict handling:
1061  *  a patch conflict is also satisfied, if some other
1062  *  version with the same name/arch that doesn't conflict
1063  *  get's installed. The generated rule is thus:
1064  *  -patch|-cpack|opack1|opack2|...
1065  */
1066 Id
1067 makemultiversionconflict(Solver *solv, Id n, Id con)
1068 {
1069   Pool *pool = solv->pool;
1070   Solvable *s, *sn;
1071   Queue q;
1072   Id p, pp, qbuf[64];
1073
1074   sn = pool->solvables + n;
1075   queue_init_buffer(&q, qbuf, sizeof(qbuf)/sizeof(*qbuf));
1076   queue_push(&q, -n);
1077   FOR_PROVIDES(p, pp, sn->name)
1078     {
1079       s = pool->solvables + p;
1080       if (s->name != sn->name || s->arch != sn->arch)
1081         continue;
1082       if (!MAPTST(&solv->noobsoletes, p))
1083         continue;
1084       if (pool_match_nevr(pool, pool->solvables + p, con))
1085         continue;
1086       /* here we have a multiversion solvable that doesn't conflict */
1087       /* thus we're not in conflict if it is installed */
1088       queue_push(&q, p);
1089     }
1090   if (q.count == 1)
1091     return -n;  /* no other package found, generate normal conflict */
1092   return pool_queuetowhatprovides(pool, &q);
1093 }
1094
1095
1096 /*-------------------------------------------------------------------
1097  * 
1098  * add (install) rules for solvable
1099  * 
1100  * s: Solvable for which to add rules
1101  * m: m[s] = 1 for solvables which have rules, prevent rule duplication
1102  * 
1103  * Algorithm: 'visit all nodes of a graph'. The graph nodes are
1104  *  solvables, the edges their dependencies.
1105  *  Starting from an installed solvable, this will create all rules
1106  *  representing the graph created by the solvables dependencies.
1107  * 
1108  * for unfulfilled requirements, conflicts, obsoletes,....
1109  * add a negative assertion for solvables that are not installable
1110  * 
1111  * It will also create rules for all solvables referenced by 's'
1112  *  i.e. descend to all providers of requirements of 's'
1113  *
1114  */
1115
1116 static void
1117 addrpmrulesforsolvable(Solver *solv, Solvable *s, Map *m)
1118 {
1119   Pool *pool = solv->pool;
1120   Repo *installed = solv->installed;
1121
1122   /* 'work' queue. keeps Ids of solvables we still have to work on.
1123      And buffer for it. */
1124   Queue workq;
1125   Id workqbuf[64];
1126     
1127   int i;
1128     /* if to add rules for broken deps ('rpm -V' functionality)
1129      * 0 = yes, 1 = no
1130      */
1131   int dontfix;
1132     /* Id var and pointer for each dependency
1133      * (not used in parallel)
1134      */
1135   Id req, *reqp;
1136   Id con, *conp;
1137   Id obs, *obsp;
1138   Id rec, *recp;
1139   Id sug, *sugp;
1140     /* var and ptr for loops */
1141   Id p, pp;
1142     /* ptr to 'whatprovides' */
1143   Id *dp;
1144     /* Id for current solvable 's' */
1145   Id n;
1146
1147   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable -----\n");
1148
1149   queue_init_buffer(&workq, workqbuf, sizeof(workqbuf)/sizeof(*workqbuf));
1150   queue_push(&workq, s - pool->solvables);      /* push solvable Id to work queue */
1151
1152   /* loop until there's no more work left */
1153   while (workq.count)
1154     {
1155       /*
1156        * n: Id of solvable
1157        * s: Pointer to solvable
1158        */
1159
1160       n = queue_shift(&workq);             /* 'pop' next solvable to work on from queue */
1161       if (MAPTST(m, n))                    /* continue if already visited */
1162         continue;
1163
1164       MAPSET(m, n);                        /* mark as visited */
1165       s = pool->solvables + n;             /* s = Solvable in question */
1166
1167       dontfix = 0;
1168       if (installed                        /* Installed system available */
1169           && !solv->fixsystem              /* NOT repair errors in rpm dependency graph */
1170           && s->repo == installed)         /* solvable is installed? */
1171       {
1172         dontfix = 1;                       /* dont care about broken rpm deps */
1173       }
1174
1175       if (!dontfix
1176           && s->arch != ARCH_SRC
1177           && s->arch != ARCH_NOSRC
1178           && !pool_installable(pool, s))
1179         {
1180           POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable\n", solvable2str(pool, s), (Id)(s - pool->solvables));
1181           addrule(solv, -n, 0);            /* uninstallable */
1182         }
1183
1184       /*-----------------------------------------
1185        * check requires of s
1186        */
1187
1188       if (s->requires)
1189         {
1190           reqp = s->repo->idarraydata + s->requires;
1191           while ((req = *reqp++) != 0)            /* go through all requires */
1192             {
1193               if (req == SOLVABLE_PREREQMARKER)   /* skip the marker */
1194                 continue;
1195
1196               /* find list of solvables providing 'req' */
1197               dp = pool->whatprovidesdata + pool_whatprovides(pool, req);
1198
1199               if (*dp == SYSTEMSOLVABLE)          /* always installed */
1200                 continue;
1201
1202               if (dontfix)
1203                 {
1204                   /* the strategy here is to not insist on dependencies
1205                    * that are already broken. so if we find one provider
1206                    * that was already installed, we know that the
1207                    * dependency was not broken before so we enforce it */
1208                  
1209                   /* check if any of the providers for 'req' is installed */
1210                   for (i = 0; (p = dp[i]) != 0; i++)
1211                     {
1212                       if (pool->solvables[p].repo == installed)
1213                         break;          /* provider was installed */
1214                     }
1215                   /* didn't find an installed provider: previously broken dependency */
1216                   if (!p)
1217                     {
1218                       POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "ignoring broken requires %s of installed package %s\n", dep2str(pool, req), solvable2str(pool, s));
1219                       continue;
1220                     }
1221                 }
1222
1223               if (!*dp)
1224                 {
1225                   /* nothing provides req! */
1226                   POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable (%s)\n", solvable2str(pool, s), (Id)(s - pool->solvables), dep2str(pool, req));
1227                   addrule(solv, -n, 0); /* mark requestor as uninstallable */
1228                   continue;
1229                 }
1230
1231               IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
1232                 {
1233                   POOL_DEBUG(SAT_DEBUG_RULE_CREATION,"  %s requires %s\n", solvable2str(pool, s), dep2str(pool, req));
1234                   for (i = 0; dp[i]; i++)
1235                     POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "   provided by %s\n", solvable2str(pool, pool->solvables + dp[i]));
1236                 }
1237
1238               /* add 'requires' dependency */
1239               /* rule: (-requestor|provider1|provider2|...|providerN) */
1240               addrule(solv, -n, dp - pool->whatprovidesdata);
1241
1242               /* descend the dependency tree
1243                  push all non-visited providers on the work queue */
1244               for (; *dp; dp++)
1245                 {
1246                   if (!MAPTST(m, *dp))
1247                     queue_push(&workq, *dp);
1248                 }
1249
1250             } /* while, requirements of n */
1251
1252         } /* if, requirements */
1253
1254       /* that's all we check for src packages */
1255       if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
1256         continue;
1257
1258       /*-----------------------------------------
1259        * check conflicts of s
1260        */
1261
1262       if (s->conflicts)
1263         {
1264           int ispatch = 0;
1265
1266           /* we treat conflicts in patches a bit differen:
1267            * - nevr matching
1268            * - multiversion handling
1269            * XXX: we should really handle this different, looking
1270            * at the name is a bad hack
1271            */
1272           if (!strncmp("patch:", id2str(pool, s->name), 6))
1273             ispatch = 1;
1274           conp = s->repo->idarraydata + s->conflicts;
1275           /* foreach conflicts of 's' */
1276           while ((con = *conp++) != 0)
1277             {
1278               /* foreach providers of a conflict of 's' */
1279               FOR_PROVIDES(p, pp, con)
1280                 {
1281                   if (ispatch && !pool_match_nevr(pool, pool->solvables + p, con))
1282                     continue;
1283                   /* dontfix: dont care about conflicts with already installed packs */
1284                   if (dontfix && pool->solvables[p].repo == installed)
1285                     continue;
1286                   /* p == n: self conflict */
1287                   if (p == n && !solv->allowselfconflicts)
1288                     {
1289                       if (ISRELDEP(con))
1290                         {
1291                           Reldep *rd = GETRELDEP(pool, con);
1292                           if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_OTHERPROVIDERS)
1293                             continue;
1294                         }
1295                       p = 0;    /* make it a negative assertion, aka 'uninstallable' */
1296                     }
1297                   if (p && ispatch && solv->noobsoletes.size && MAPTST(&solv->noobsoletes, p) && ISRELDEP(con))
1298                     {
1299                       /* our patch conflicts with a noobsoletes (aka multiversion) package */
1300                       p = -makemultiversionconflict(solv, p, con);
1301                     }
1302                  /* rule: -n|-p: either solvable _or_ provider of conflict */
1303                   addrule(solv, -n, -p);
1304                 }
1305             }
1306         }
1307
1308       /*-----------------------------------------
1309        * check obsoletes if not installed
1310        * (only installation will trigger the obsoletes in rpm)
1311        */
1312       if (!installed || pool->solvables[n].repo != installed)
1313         {                              /* not installed */
1314           int noobs = solv->noobsoletes.size && MAPTST(&solv->noobsoletes, n);
1315           if (s->obsoletes && !noobs)
1316             {
1317               obsp = s->repo->idarraydata + s->obsoletes;
1318               /* foreach obsoletes */
1319               while ((obs = *obsp++) != 0)
1320                 {
1321                   /* foreach provider of an obsoletes of 's' */ 
1322                   FOR_PROVIDES(p, pp, obs)
1323                     {
1324                       if (!solv->obsoleteusesprovides /* obsoletes are matched names, not provides */
1325                           && !pool_match_nevr(pool, pool->solvables + p, obs))
1326                         continue;
1327                       addrule(solv, -n, -p);
1328                     }
1329                 }
1330             }
1331           FOR_PROVIDES(p, pp, s->name)
1332             {
1333               Solvable *ps = pool->solvables + p;
1334               /* we still obsolete packages with same nevra, like rpm does */
1335               /* (actually, rpm mixes those packages. yuck...) */
1336               if (noobs && (s->name != ps->name || s->evr != ps->evr || s->arch != ps->arch))
1337                 continue;
1338               if (!solv->implicitobsoleteusesprovides && s->name != ps->name)
1339                 continue;
1340               addrule(solv, -n, -p);
1341             }
1342         }
1343
1344       /*-----------------------------------------
1345        * add recommends to the work queue
1346        */
1347       if (s->recommends)
1348         {
1349           recp = s->repo->idarraydata + s->recommends;
1350           while ((rec = *recp++) != 0)
1351             {
1352               FOR_PROVIDES(p, pp, rec)
1353                 if (!MAPTST(m, p))
1354                   queue_push(&workq, p);
1355             }
1356         }
1357       if (s->suggests)
1358         {
1359           sugp = s->repo->idarraydata + s->suggests;
1360           while ((sug = *sugp++) != 0)
1361             {
1362               FOR_PROVIDES(p, pp, sug)
1363                 if (!MAPTST(m, p))
1364                   queue_push(&workq, p);
1365             }
1366         }
1367     }
1368   queue_free(&workq);
1369   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable end -----\n");
1370 }
1371
1372
1373 /*-------------------------------------------------------------------
1374  * 
1375  * Add package rules for weak rules
1376  *
1377  * m: visited solvables
1378  */
1379
1380 static void
1381 addrpmrulesforweak(Solver *solv, Map *m)
1382 {
1383   Pool *pool = solv->pool;
1384   Solvable *s;
1385   Id sup, *supp;
1386   int i, n;
1387
1388   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak -----\n");
1389     /* foreach solvable in pool */
1390   for (i = n = 1; n < pool->nsolvables; i++, n++)
1391     {
1392       if (i == pool->nsolvables)                 /* wrap i */
1393         i = 1;
1394       if (MAPTST(m, i))                          /* been there */
1395         continue;
1396
1397       s = pool->solvables + i;
1398       if (!pool_installable(pool, s))            /* only look at installable ones */
1399         continue;
1400
1401       sup = 0;
1402       if (s->supplements)
1403         {
1404           /* find possible supplements */
1405           supp = s->repo->idarraydata + s->supplements;
1406           while ((sup = *supp++) != ID_NULL)
1407             if (dep_possible(solv, sup, m))
1408               break;
1409         }
1410
1411         /* if nothing found, check for enhances */
1412       if (!sup && s->enhances)
1413         {
1414           supp = s->repo->idarraydata + s->enhances;
1415           while ((sup = *supp++) != ID_NULL)
1416             if (dep_possible(solv, sup, m))
1417               break;
1418         }
1419         /* if nothing found, goto next solvables */
1420       if (!sup)
1421         continue;
1422       addrpmrulesforsolvable(solv, s, m);
1423       n = 0;
1424     }
1425   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak end -----\n");
1426 }
1427
1428
1429 /*-------------------------------------------------------------------
1430  * 
1431  * add package rules for possible updates
1432  * 
1433  * s: solvable
1434  * m: map of already visited solvables
1435  * allow_all: 0 = dont allow downgrades, 1 = allow all candidates
1436  */
1437
1438 static void
1439 addrpmrulesforupdaters(Solver *solv, Solvable *s, Map *m, int allow_all)
1440 {
1441   Pool *pool = solv->pool;
1442   int i;
1443     /* queue and buffer for it */
1444   Queue qs;
1445   Id qsbuf[64];
1446
1447   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
1448
1449   queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
1450     /* find update candidates for 's' */
1451   policy_findupdatepackages(solv, s, &qs, allow_all);
1452     /* add rule for 's' if not already done */
1453   if (!MAPTST(m, s - pool->solvables))
1454     addrpmrulesforsolvable(solv, s, m);
1455     /* foreach update candidate, add rule if not already done */
1456   for (i = 0; i < qs.count; i++)
1457     if (!MAPTST(m, qs.elements[i]))
1458       addrpmrulesforsolvable(solv, pool->solvables + qs.elements[i], m);
1459   queue_free(&qs);
1460
1461   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
1462 }
1463
1464 static Id
1465 finddistupgradepackages(Solver *solv, Solvable *s, Queue *qs, int allow_all)
1466 {
1467   Pool *pool = solv->pool;
1468   int i;
1469
1470   policy_findupdatepackages(solv, s, qs, allow_all);
1471   if (!qs->count)
1472     {
1473       if (allow_all)
1474         return 0;
1475       policy_findupdatepackages(solv, s, qs, 1);
1476       if (!qs->count)
1477         return 0;       /* orphaned */
1478       qs->count = 0;
1479       return -SYSTEMSOLVABLE;
1480     }
1481   if (allow_all)
1482     return s - pool->solvables;
1483   /* check if it is ok to keep the installed package */
1484   for (i = 0; i < qs->count; i++)
1485     {
1486       Solvable *ns = pool->solvables + qs->elements[i];
1487       if (s->evr == ns->evr && solvable_identical(s, ns))
1488         return s - pool->solvables;
1489     }
1490   /* nope, it must be some other package */
1491   return -SYSTEMSOLVABLE;
1492 }
1493
1494 /*-------------------------------------------------------------------
1495  * 
1496  * add rule for update
1497  *   (A|A1|A2|A3...)  An = update candidates for A
1498  *
1499  * s = (installed) solvable
1500  */
1501
1502 static void
1503 addupdaterule(Solver *solv, Solvable *s, int allow_all)
1504 {
1505   /* installed packages get a special upgrade allowed rule */
1506   Pool *pool = solv->pool;
1507   Id p, d;
1508   Queue qs;
1509   Id qsbuf[64];
1510
1511   POOL_DEBUG(SAT_DEBUG_SCHUBI, "-----  addupdaterule -----\n");
1512   queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
1513   p = s - pool->solvables;
1514   /* find update candidates for 's' */
1515   if (solv->distupgrade)
1516     p = finddistupgradepackages(solv, s, &qs, allow_all);
1517   else
1518     policy_findupdatepackages(solv, s, &qs, allow_all);
1519   if (!allow_all && qs.count && solv->noobsoletes.size)
1520     {
1521       int i, j;
1522
1523       d = pool_queuetowhatprovides(pool, &qs);
1524       /* filter out all noobsoletes packages as they don't update */
1525       for (i = j = 0; i < qs.count; i++)
1526         {
1527           if (MAPTST(&solv->noobsoletes, qs.elements[i]))
1528             {
1529               /* it's ok if they have same nevra */
1530               Solvable *ps = pool->solvables + qs.elements[i];
1531               if (ps->name != s->name || ps->evr != s->evr || ps->arch != s->arch)
1532                 continue;
1533             }
1534           qs.elements[j++] = qs.elements[i];
1535         }
1536       if (j == 0 && p == -SYSTEMSOLVABLE && solv->distupgrade)
1537         {
1538           queue_push(&solv->orphaned, s - pool->solvables);     /* treat as orphaned */
1539           j = qs.count;
1540         }
1541       if (j < qs.count)
1542         {
1543           if (d && solv->updatesystem && solv->installed && s->repo == solv->installed)
1544             {
1545               if (!solv->multiversionupdaters)
1546                 solv->multiversionupdaters = sat_calloc(solv->installed->end - solv->installed->start, sizeof(Id));
1547               solv->multiversionupdaters[s - pool->solvables - solv->installed->start] = d;
1548             }
1549           qs.count = j;
1550         }
1551     }
1552   if (qs.count && p == -SYSTEMSOLVABLE)
1553     p = queue_shift(&qs);
1554   d = qs.count ? pool_queuetowhatprovides(pool, &qs) : 0;
1555   queue_free(&qs);
1556   addrule(solv, p, d);  /* allow update of s */
1557   POOL_DEBUG(SAT_DEBUG_SCHUBI, "-----  addupdaterule end -----\n");
1558 }
1559
1560
1561 /********************************************************************/
1562 /* watches */
1563
1564
1565 /*-------------------------------------------------------------------
1566  * makewatches
1567  *
1568  * initial setup for all watches
1569  */
1570
1571 static void
1572 makewatches(Solver *solv)
1573 {
1574   Rule *r;
1575   int i;
1576   int nsolvables = solv->pool->nsolvables;
1577
1578   sat_free(solv->watches);
1579                                        /* lower half for removals, upper half for installs */
1580   solv->watches = sat_calloc(2 * nsolvables, sizeof(Id));
1581 #if 1
1582   /* do it reverse so rpm rules get triggered first (XXX: obsolete?) */
1583   for (i = 1, r = solv->rules + solv->nrules - 1; i < solv->nrules; i++, r--)
1584 #else
1585   for (i = 1, r = solv->rules + 1; i < solv->nrules; i++, r++)
1586 #endif
1587     {
1588       if (!r->w2)               /* assertions do not need watches */
1589         continue;
1590
1591       /* see addwatches_rule(solv, r) */
1592       r->n1 = solv->watches[nsolvables + r->w1];
1593       solv->watches[nsolvables + r->w1] = r - solv->rules;
1594
1595       r->n2 = solv->watches[nsolvables + r->w2];
1596       solv->watches[nsolvables + r->w2] = r - solv->rules;
1597     }
1598 }
1599
1600
1601 /*-------------------------------------------------------------------
1602  *
1603  * add watches (for rule)
1604  * sets up watches for a single rule
1605  * 
1606  * see also makewatches()
1607  */
1608
1609 static inline void
1610 addwatches_rule(Solver *solv, Rule *r)
1611 {
1612   int nsolvables = solv->pool->nsolvables;
1613
1614   r->n1 = solv->watches[nsolvables + r->w1];
1615   solv->watches[nsolvables + r->w1] = r - solv->rules;
1616
1617   r->n2 = solv->watches[nsolvables + r->w2];
1618   solv->watches[nsolvables + r->w2] = r - solv->rules;
1619 }
1620
1621
1622 /********************************************************************/
1623 /*
1624  * rule propagation
1625  */
1626
1627
1628 /* shortcuts to check if a literal (positive or negative) assignment
1629  * evaluates to 'true' or 'false'
1630  */
1631 #define DECISIONMAP_TRUE(p) ((p) > 0 ? (decisionmap[p] > 0) : (decisionmap[-p] < 0))
1632 #define DECISIONMAP_FALSE(p) ((p) > 0 ? (decisionmap[p] < 0) : (decisionmap[-p] > 0))
1633 #define DECISIONMAP_UNDEF(p) (decisionmap[(p) > 0 ? (p) : -(p)] == 0)
1634
1635 /*-------------------------------------------------------------------
1636  * 
1637  * propagate
1638  *
1639  * make decision and propagate to all rules
1640  * 
1641  * Evaluate each term affected by the decision (linked through watches)
1642  * If we find unit rules we make new decisions based on them
1643  * 
1644  * Everything's fixed there, it's just finding rules that are
1645  * unit.
1646  * 
1647  * return : 0 = everything is OK
1648  *          rule = conflict found in this rule
1649  */
1650
1651 static Rule *
1652 propagate(Solver *solv, int level)
1653 {
1654   Pool *pool = solv->pool;
1655   Id *rp, *next_rp;           /* rule pointer, next rule pointer in linked list */
1656   Rule *r;                    /* rule */
1657   Id p, pkg, other_watch;
1658   Id *dp;
1659   Id *decisionmap = solv->decisionmap;
1660     
1661   Id *watches = solv->watches + pool->nsolvables;   /* place ptr in middle */
1662
1663   POOL_DEBUG(SAT_DEBUG_PROPAGATE, "----- propagate -----\n");
1664
1665   /* foreach non-propagated decision */
1666   while (solv->propagate_index < solv->decisionq.count)
1667     {
1668         /*
1669          * 'pkg' was just decided
1670          * negate because our watches trigger if literal goes FALSE
1671          */
1672       pkg = -solv->decisionq.elements[solv->propagate_index++];
1673         
1674       IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1675         {
1676           POOL_DEBUG(SAT_DEBUG_PROPAGATE, "propagate for decision %d level %d\n", -pkg, level);
1677           solver_printruleelement(solv, SAT_DEBUG_PROPAGATE, 0, -pkg);
1678         }
1679
1680       /* foreach rule where 'pkg' is now FALSE */
1681       for (rp = watches + pkg; *rp; rp = next_rp)
1682         {
1683           r = solv->rules + *rp;
1684           if (r->d < 0)
1685             {
1686               /* rule is disabled, goto next */
1687               if (pkg == r->w1)
1688                 next_rp = &r->n1;
1689               else
1690                 next_rp = &r->n2;
1691               continue;
1692             }
1693
1694           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1695             {
1696               POOL_DEBUG(SAT_DEBUG_PROPAGATE,"  watch triggered ");
1697               solver_printrule(solv, SAT_DEBUG_PROPAGATE, r);
1698             }
1699
1700             /* 'pkg' was just decided (was set to FALSE)
1701              * 
1702              *  now find other literal watch, check clause
1703              *   and advance on linked list
1704              */
1705           if (pkg == r->w1)
1706             {
1707               other_watch = r->w2;
1708               next_rp = &r->n1;
1709             }
1710           else
1711             {
1712               other_watch = r->w1;
1713               next_rp = &r->n2;
1714             }
1715             
1716             /* 
1717              * This term is already true (through the other literal)
1718              * so we have nothing to do
1719              */
1720           if (DECISIONMAP_TRUE(other_watch))
1721             continue;
1722
1723             /*
1724              * The other literal is FALSE or UNDEF
1725              * 
1726              */
1727             
1728           if (r->d)
1729             {
1730               /* Not a binary clause, try to move our watch.
1731                * 
1732                * Go over all literals and find one that is
1733                *   not other_watch
1734                *   and not FALSE
1735                * 
1736                * (TRUE is also ok, in that case the rule is fulfilled)
1737                */
1738               if (r->p                                /* we have a 'p' */
1739                   && r->p != other_watch              /* which is not watched */
1740                   && !DECISIONMAP_FALSE(r->p))        /* and not FALSE */
1741                 {
1742                   p = r->p;
1743                 }
1744               else                                    /* go find a 'd' to make 'true' */
1745                 {
1746                   /* foreach p in 'd'
1747                      we just iterate sequentially, doing it in another order just changes the order of decisions, not the decisions itself
1748                    */
1749                   for (dp = pool->whatprovidesdata + r->d; (p = *dp++) != 0;)
1750                     {
1751                       if (p != other_watch              /* which is not watched */
1752                           && !DECISIONMAP_FALSE(p))     /* and not FALSE */
1753                         break;
1754                     }
1755                 }
1756
1757               if (p)
1758                 {
1759                   /*
1760                    * if we found some p that is UNDEF or TRUE, move
1761                    * watch to it
1762                    */
1763                   IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1764                     {
1765                       if (p > 0)
1766                         POOL_DEBUG(SAT_DEBUG_PROPAGATE, "    -> move w%d to %s\n", (pkg == r->w1 ? 1 : 2), solvable2str(pool, pool->solvables + p));
1767                       else
1768                         POOL_DEBUG(SAT_DEBUG_PROPAGATE,"    -> move w%d to !%s\n", (pkg == r->w1 ? 1 : 2), solvable2str(pool, pool->solvables - p));
1769                     }
1770                     
1771                   *rp = *next_rp;
1772                   next_rp = rp;
1773                     
1774                   if (pkg == r->w1)
1775                     {
1776                       r->w1 = p;
1777                       r->n1 = watches[p];
1778                     }
1779                   else
1780                     {
1781                       r->w2 = p;
1782                       r->n2 = watches[p];
1783                     }
1784                   watches[p] = r - solv->rules;
1785                   continue;
1786                 }
1787               /* search failed, thus all unwatched literals are FALSE */
1788                 
1789             } /* not binary */
1790             
1791             /*
1792              * unit clause found, set literal other_watch to TRUE
1793              */
1794
1795           if (DECISIONMAP_FALSE(other_watch))      /* check if literal is FALSE */
1796             return r;                              /* eek, a conflict! */
1797             
1798           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1799             {
1800               POOL_DEBUG(SAT_DEBUG_PROPAGATE, "   unit ");
1801               solver_printrule(solv, SAT_DEBUG_PROPAGATE, r);
1802             }
1803
1804           if (other_watch > 0)
1805             decisionmap[other_watch] = level;    /* install! */
1806           else
1807             decisionmap[-other_watch] = -level;  /* remove! */
1808             
1809           queue_push(&solv->decisionq, other_watch);
1810           queue_push(&solv->decisionq_why, r - solv->rules);
1811
1812           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
1813             {
1814               Solvable *s = pool->solvables + (other_watch > 0 ? other_watch : -other_watch);
1815               if (other_watch > 0)
1816                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "    -> decided to install %s\n", solvable2str(pool, s));
1817               else
1818                 POOL_DEBUG(SAT_DEBUG_PROPAGATE, "    -> decided to conflict %s\n", solvable2str(pool, s));
1819             }
1820             
1821         } /* foreach rule involving 'pkg' */
1822         
1823     } /* while we have non-decided decisions */
1824     
1825   POOL_DEBUG(SAT_DEBUG_PROPAGATE, "----- propagate end-----\n");
1826
1827   return 0;     /* all is well */
1828 }
1829
1830
1831 /********************************************************************/
1832 /* Analysis */
1833
1834 /*-------------------------------------------------------------------
1835  * 
1836  * analyze
1837  *   and learn
1838  */
1839
1840 static int
1841 analyze(Solver *solv, int level, Rule *c, int *pr, int *dr, int *whyp)
1842 {
1843   Pool *pool = solv->pool;
1844   Queue r;
1845   int rlevel = 1;
1846   Map seen;             /* global? */
1847   Id d, v, vv, *dp, why;
1848   int l, i, idx;
1849   int num = 0, l1num = 0;
1850   int learnt_why = solv->learnt_pool.count;
1851   Id *decisionmap = solv->decisionmap;
1852
1853   queue_init(&r);
1854
1855   POOL_DEBUG(SAT_DEBUG_ANALYZE, "ANALYZE at %d ----------------------\n", level);
1856   map_init(&seen, pool->nsolvables);
1857   idx = solv->decisionq.count;
1858   for (;;)
1859     {
1860       IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
1861         solver_printruleclass(solv, SAT_DEBUG_ANALYZE, c);
1862       queue_push(&solv->learnt_pool, c - solv->rules);
1863       d = c->d < 0 ? -c->d - 1 : c->d;
1864       dp = d ? pool->whatprovidesdata + d : 0;
1865       /* go through all literals of the rule */
1866       for (i = -1; ; i++)
1867         {
1868           if (i == -1)
1869             v = c->p;
1870           else if (d == 0)
1871             v = i ? 0 : c->w2;
1872           else
1873             v = *dp++;
1874           if (v == 0)
1875             break;
1876
1877           if (DECISIONMAP_TRUE(v))      /* the one true literal */
1878             continue;
1879           vv = v > 0 ? v : -v;
1880           if (MAPTST(&seen, vv))
1881             continue;
1882           l = solv->decisionmap[vv];
1883           if (l < 0)
1884             l = -l;
1885           MAPSET(&seen, vv);
1886           if (l == 1)
1887             l1num++;                    /* need to do this one in level1 pass */
1888           else if (l == level)
1889             num++;                      /* need to do this one as well */
1890           else
1891             {
1892               queue_push(&r, v);        /* not level1 or conflict level, add to new rule */
1893               if (l > rlevel)
1894                 rlevel = l;
1895             }
1896         }
1897 l1retry:
1898       if (!num && !--l1num)
1899         break;  /* all level 1 literals done */
1900       for (;;)
1901         {
1902           assert(idx > 0);
1903           v = solv->decisionq.elements[--idx];
1904           vv = v > 0 ? v : -v;
1905           if (MAPTST(&seen, vv))
1906             break;
1907         }
1908       MAPCLR(&seen, vv);
1909       if (num && --num == 0)
1910         {
1911           *pr = -v;     /* so that v doesn't get lost */
1912           if (!l1num)
1913             break;
1914           POOL_DEBUG(SAT_DEBUG_ANALYZE, "got %d involved level 1 decisions\n", l1num);
1915           for (i = 0; i < r.count; i++)
1916             {
1917               v = r.elements[i];
1918               MAPCLR(&seen, v > 0 ? v : -v);
1919             }
1920           /* only level 1 marks left */
1921           l1num++;
1922           goto l1retry;
1923         }
1924       why = solv->decisionq_why.elements[idx];
1925       if (!why)                 /* just in case, maybe for SYSTEMSOLVABLE */
1926         goto l1retry;
1927       c = solv->rules + why;
1928     }
1929   map_free(&seen);
1930
1931   if (r.count == 0)
1932     *dr = 0;
1933   else if (r.count == 1 && r.elements[0] < 0)
1934     *dr = r.elements[0];
1935   else
1936     *dr = pool_queuetowhatprovides(pool, &r);
1937   IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
1938     {
1939       POOL_DEBUG(SAT_DEBUG_ANALYZE, "learned rule for level %d (am %d)\n", rlevel, level);
1940       solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, *pr);
1941       for (i = 0; i < r.count; i++)
1942         solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, r.elements[i]);
1943     }
1944   /* push end marker on learnt reasons stack */
1945   queue_push(&solv->learnt_pool, 0);
1946   if (whyp)
1947     *whyp = learnt_why;
1948   solv->stats_learned++;
1949   return rlevel;
1950 }
1951
1952
1953 /*-------------------------------------------------------------------
1954  * 
1955  * reset_solver
1956  * 
1957  * reset the solver decisions to right after the rpm rules.
1958  * called after rules have been enabled/disabled
1959  */
1960
1961 static void
1962 reset_solver(Solver *solv)
1963 {
1964   Pool *pool = solv->pool;
1965   int i;
1966   Id v;
1967
1968   /* rewind decisions to direct rpm rule assertions */
1969   for (i = solv->decisionq.count - 1; i >= solv->directdecisions; i--)
1970     {
1971       v = solv->decisionq.elements[i];
1972       solv->decisionmap[v > 0 ? v : -v] = 0;
1973     }
1974
1975   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "decisions done reduced from %d to %d\n", solv->decisionq.count, solv->directdecisions);
1976
1977   solv->decisionq_why.count = solv->directdecisions;
1978   solv->decisionq.count = solv->directdecisions;
1979   solv->recommends_index = -1;
1980   solv->propagate_index = 0;
1981
1982   /* adapt learnt rule status to new set of enabled/disabled rules */
1983   enabledisablelearntrules(solv);
1984
1985   /* redo all job/update decisions */
1986   makeruledecisions(solv);
1987   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "decisions so far: %d\n", solv->decisionq.count);
1988 }
1989
1990
1991 /*-------------------------------------------------------------------
1992  * 
1993  * analyze_unsolvable_rule
1994  */
1995
1996 static void
1997 analyze_unsolvable_rule(Solver *solv, Rule *r, Id *lastweakp)
1998 {
1999   Pool *pool = solv->pool;
2000   int i;
2001   Id why = r - solv->rules;
2002
2003   IF_POOLDEBUG (SAT_DEBUG_UNSOLVABLE)
2004     solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, r);
2005   if (solv->learntrules && why >= solv->learntrules)
2006     {
2007       for (i = solv->learnt_why.elements[why - solv->learntrules]; solv->learnt_pool.elements[i]; i++)
2008         if (solv->learnt_pool.elements[i] > 0)
2009           analyze_unsolvable_rule(solv, solv->rules + solv->learnt_pool.elements[i], lastweakp);
2010       return;
2011     }
2012   if (MAPTST(&solv->weakrulemap, why))
2013     if (!*lastweakp || why > *lastweakp)
2014       *lastweakp = why;
2015   /* do not add rpm rules to problem */
2016   if (why < solv->rpmrules_end)
2017     return;
2018   /* turn rule into problem */
2019   if (why >= solv->jobrules && why < solv->jobrules_end)
2020     why = -(solv->ruletojob.elements[why - solv->jobrules] + 1);
2021   /* return if problem already countains our rule */
2022   if (solv->problems.count)
2023     {
2024       for (i = solv->problems.count - 1; i >= 0; i--)
2025         if (solv->problems.elements[i] == 0)    /* end of last problem reached? */
2026           break;
2027         else if (solv->problems.elements[i] == why)
2028           return;
2029     }
2030   queue_push(&solv->problems, why);
2031 }
2032
2033
2034 /*-------------------------------------------------------------------
2035  * 
2036  * analyze_unsolvable
2037  *
2038  * return: 1 - disabled some rules, try again
2039  *         0 - hopeless
2040  */
2041
2042 static int
2043 analyze_unsolvable(Solver *solv, Rule *cr, int disablerules)
2044 {
2045   Pool *pool = solv->pool;
2046   Rule *r;
2047   Map seen;             /* global to speed things up? */
2048   Id d, v, vv, *dp, why;
2049   int l, i, idx;
2050   Id *decisionmap = solv->decisionmap;
2051   int oldproblemcount;
2052   int oldlearntpoolcount;
2053   Id lastweak;
2054
2055   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "ANALYZE UNSOLVABLE ----------------------\n");
2056   solv->stats_unsolvable++;
2057   oldproblemcount = solv->problems.count;
2058   oldlearntpoolcount = solv->learnt_pool.count;
2059
2060   /* make room for proof index */
2061   /* must update it later, as analyze_unsolvable_rule would confuse
2062    * it with a rule index if we put the real value in already */
2063   queue_push(&solv->problems, 0);
2064
2065   r = cr;
2066   map_init(&seen, pool->nsolvables);
2067   queue_push(&solv->learnt_pool, r - solv->rules);
2068   lastweak = 0;
2069   analyze_unsolvable_rule(solv, r, &lastweak);
2070   d = r->d < 0 ? -r->d - 1 : r->d;
2071   dp = d ? pool->whatprovidesdata + d : 0;
2072   for (i = -1; ; i++)
2073     {
2074       if (i == -1)
2075         v = r->p;
2076       else if (d == 0)
2077         v = i ? 0 : r->w2;
2078       else
2079         v = *dp++;
2080       if (v == 0)
2081         break;
2082       if (DECISIONMAP_TRUE(v))  /* the one true literal */
2083           continue;
2084       vv = v > 0 ? v : -v;
2085       l = solv->decisionmap[vv];
2086       if (l < 0)
2087         l = -l;
2088       MAPSET(&seen, vv);
2089     }
2090   idx = solv->decisionq.count;
2091   while (idx > 0)
2092     {
2093       v = solv->decisionq.elements[--idx];
2094       vv = v > 0 ? v : -v;
2095       if (!MAPTST(&seen, vv))
2096         continue;
2097       why = solv->decisionq_why.elements[idx];
2098       queue_push(&solv->learnt_pool, why);
2099       r = solv->rules + why;
2100       analyze_unsolvable_rule(solv, r, &lastweak);
2101       d = r->d < 0 ? -r->d - 1 : r->d;
2102       dp = d ? pool->whatprovidesdata + d : 0;
2103       for (i = -1; ; i++)
2104         {
2105           if (i == -1)
2106             v = r->p;
2107           else if (d == 0)
2108             v = i ? 0 : r->w2;
2109           else
2110             v = *dp++;
2111           if (v == 0)
2112             break;
2113           if (DECISIONMAP_TRUE(v))      /* the one true literal */
2114               continue;
2115           vv = v > 0 ? v : -v;
2116           l = solv->decisionmap[vv];
2117           if (l < 0)
2118             l = -l;
2119           MAPSET(&seen, vv);
2120         }
2121     }
2122   map_free(&seen);
2123   queue_push(&solv->problems, 0);       /* mark end of this problem */
2124
2125   if (lastweak)
2126     {
2127       /* disable last weak rule */
2128       solv->problems.count = oldproblemcount;
2129       solv->learnt_pool.count = oldlearntpoolcount;
2130       r = solv->rules + lastweak;
2131       POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "disabling ");
2132       solver_printruleclass(solv, SAT_DEBUG_UNSOLVABLE, r);
2133       disablerule(solv, r);
2134       reset_solver(solv);
2135       return 1;
2136     }
2137
2138   /* finish proof */
2139   queue_push(&solv->learnt_pool, 0);
2140   solv->problems.elements[oldproblemcount] = oldlearntpoolcount;
2141
2142   if (disablerules)
2143     {
2144       for (i = oldproblemcount + 1; i < solv->problems.count - 1; i++)
2145         disableproblem(solv, solv->problems.elements[i]);
2146       /* XXX: might want to enable all weak rules again */
2147       reset_solver(solv);
2148       return 1;
2149     }
2150   POOL_DEBUG(SAT_DEBUG_UNSOLVABLE, "UNSOLVABLE\n");
2151   return 0;
2152 }
2153
2154
2155 /********************************************************************/
2156 /* Decision revert */
2157
2158 /*-------------------------------------------------------------------
2159  * 
2160  * revert
2161  * revert decision at level
2162  */
2163
2164 static void
2165 revert(Solver *solv, int level)
2166 {
2167   Pool *pool = solv->pool;
2168   Id v, vv;
2169   while (solv->decisionq.count)
2170     {
2171       v = solv->decisionq.elements[solv->decisionq.count - 1];
2172       vv = v > 0 ? v : -v;
2173       if (solv->decisionmap[vv] <= level && solv->decisionmap[vv] >= -level)
2174         break;
2175       POOL_DEBUG(SAT_DEBUG_PROPAGATE, "reverting decision %d at %d\n", v, solv->decisionmap[vv]);
2176       if (v > 0 && solv->recommendations.count && v == solv->recommendations.elements[solv->recommendations.count - 1])
2177         solv->recommendations.count--;
2178       solv->decisionmap[vv] = 0;
2179       solv->decisionq.count--;
2180       solv->decisionq_why.count--;
2181       solv->propagate_index = solv->decisionq.count;
2182     }
2183   while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] <= -level)
2184     {
2185       solv->branches.count--;
2186       while (solv->branches.count && solv->branches.elements[solv->branches.count - 1] >= 0)
2187         solv->branches.count--;
2188     }
2189   solv->recommends_index = -1;
2190 }
2191
2192
2193 /*-------------------------------------------------------------------
2194  * 
2195  * watch2onhighest - put watch2 on literal with highest level
2196  */
2197
2198 static inline void
2199 watch2onhighest(Solver *solv, Rule *r)
2200 {
2201   int l, wl = 0;
2202   Id d, v, *dp;
2203
2204   d = r->d < 0 ? -r->d - 1 : r->d;
2205   if (!d)
2206     return;     /* binary rule, both watches are set */
2207   dp = solv->pool->whatprovidesdata + d;
2208   while ((v = *dp++) != 0)
2209     {
2210       l = solv->decisionmap[v < 0 ? -v : v];
2211       if (l < 0)
2212         l = -l;
2213       if (l > wl)
2214         {
2215           r->w2 = dp[-1];
2216           wl = l;
2217         }
2218     }
2219 }
2220
2221
2222 /*-------------------------------------------------------------------
2223  * 
2224  * setpropagatelearn
2225  *
2226  * add free decision (solvable to install) to decisionq
2227  * increase level and propagate decision
2228  * return if no conflict.
2229  *
2230  * in conflict case, analyze conflict rule, add resulting
2231  * rule to learnt rule set, make decision from learnt
2232  * rule (always unit) and re-propagate.
2233  *
2234  * returns the new solver level or 0 if unsolvable
2235  *
2236  */
2237
2238 static int
2239 setpropagatelearn(Solver *solv, int level, Id decision, int disablerules)
2240 {
2241   Pool *pool = solv->pool;
2242   Rule *r;
2243   Id p = 0, d = 0;
2244   int l, why;
2245
2246   if (decision)
2247     {
2248       level++;
2249       if (decision > 0)
2250         solv->decisionmap[decision] = level;
2251       else
2252         solv->decisionmap[-decision] = -level;
2253       queue_push(&solv->decisionq, decision);
2254       queue_push(&solv->decisionq_why, 0);
2255     }
2256   for (;;)
2257     {
2258       r = propagate(solv, level);
2259       if (!r)
2260         break;
2261       if (level == 1)
2262         return analyze_unsolvable(solv, r, disablerules);
2263       POOL_DEBUG(SAT_DEBUG_ANALYZE, "conflict with rule #%d\n", (int)(r - solv->rules));
2264       l = analyze(solv, level, r, &p, &d, &why);        /* learnt rule in p and d */
2265       assert(l > 0 && l < level);
2266       POOL_DEBUG(SAT_DEBUG_ANALYZE, "reverting decisions (level %d -> %d)\n", level, l);
2267       level = l;
2268       revert(solv, level);
2269       r = addrule(solv, p, d);       /* p requires d */
2270       assert(r);
2271       assert(solv->learnt_why.count == (r - solv->rules) - solv->learntrules);
2272       queue_push(&solv->learnt_why, why);
2273       if (d)
2274         {
2275           /* at least 2 literals, needs watches */
2276           watch2onhighest(solv, r);
2277           addwatches_rule(solv, r);
2278         }
2279       else
2280         {
2281           /* learnt rule is an assertion */
2282           queue_push(&solv->ruleassertions, r - solv->rules);
2283         }
2284       solv->decisionmap[p > 0 ? p : -p] = p > 0 ? level : -level;
2285       queue_push(&solv->decisionq, p);
2286       queue_push(&solv->decisionq_why, r - solv->rules);
2287       IF_POOLDEBUG (SAT_DEBUG_ANALYZE)
2288         {
2289           POOL_DEBUG(SAT_DEBUG_ANALYZE, "decision: ");
2290           solver_printruleelement(solv, SAT_DEBUG_ANALYZE, 0, p);
2291           POOL_DEBUG(SAT_DEBUG_ANALYZE, "new rule: ");
2292           solver_printrule(solv, SAT_DEBUG_ANALYZE, r);
2293         }
2294     }
2295   return level;
2296 }
2297
2298
2299 /*-------------------------------------------------------------------
2300  * 
2301  * select and install
2302  * 
2303  * install best package from the queue. We add an extra package, inst, if
2304  * provided. See comment in weak install section.
2305  *
2306  * returns the new solver level or 0 if unsolvable
2307  *
2308  */
2309
2310 static int
2311 selectandinstall(Solver *solv, int level, Queue *dq, int disablerules)
2312 {
2313   Pool *pool = solv->pool;
2314   Id p;
2315   int i;
2316
2317   if (dq->count > 1)
2318     policy_filter_unwanted(solv, dq, POLICY_MODE_CHOOSE);
2319   if (dq->count > 1)
2320     {
2321       /* XXX: didn't we already do that? */
2322       /* XXX: shouldn't we prefer installed packages? */
2323       /* XXX: move to policy.c? */
2324       /* choose the supplemented one */
2325       for (i = 0; i < dq->count; i++)
2326         if (solver_is_supplementing(solv, pool->solvables + dq->elements[i]))
2327           {
2328             dq->elements[0] = dq->elements[i];
2329             dq->count = 1;
2330             break;
2331           }
2332     }
2333   if (dq->count > 1)
2334     {
2335       /* multiple candidates, open a branch */
2336       for (i = 1; i < dq->count; i++)
2337         queue_push(&solv->branches, dq->elements[i]);
2338       queue_push(&solv->branches, -level);
2339     }
2340   p = dq->elements[0];
2341
2342   POOL_DEBUG(SAT_DEBUG_POLICY, "installing %s\n", solvable2str(pool, pool->solvables + p));
2343
2344   return setpropagatelearn(solv, level, p, disablerules);
2345 }
2346
2347
2348 /********************************************************************/
2349 /* Main solver interface */
2350
2351
2352 /*-------------------------------------------------------------------
2353  * 
2354  * solver_create
2355  * create solver structure
2356  *
2357  * pool: all available solvables
2358  * installed: installed Solvables
2359  *
2360  *
2361  * Upon solving, rules are created to flag the Solvables
2362  * of the 'installed' Repo as installed.
2363  */
2364
2365 Solver *
2366 solver_create(Pool *pool)
2367 {
2368   Solver *solv;
2369   solv = (Solver *)sat_calloc(1, sizeof(Solver));
2370   solv->pool = pool;
2371   solv->installed = pool->installed;
2372
2373   queue_init(&solv->ruletojob);
2374   queue_init(&solv->decisionq);
2375   queue_init(&solv->decisionq_why);
2376   queue_init(&solv->problems);
2377   queue_init(&solv->suggestions);
2378   queue_init(&solv->recommendations);
2379   queue_init(&solv->orphaned);
2380   queue_init(&solv->learnt_why);
2381   queue_init(&solv->learnt_pool);
2382   queue_init(&solv->branches);
2383   queue_init(&solv->covenantq);
2384   queue_init(&solv->weakruleq);
2385   queue_init(&solv->ruleassertions);
2386
2387   map_init(&solv->recommendsmap, pool->nsolvables);
2388   map_init(&solv->suggestsmap, pool->nsolvables);
2389   map_init(&solv->noupdate, solv->installed ? solv->installed->end - solv->installed->start : 0);
2390   solv->recommends_index = 0;
2391
2392   solv->decisionmap = (Id *)sat_calloc(pool->nsolvables, sizeof(Id));
2393   solv->nrules = 1;
2394   solv->rules = sat_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
2395   memset(solv->rules, 0, sizeof(Rule));
2396
2397   return solv;
2398 }
2399
2400
2401 /*-------------------------------------------------------------------
2402  * 
2403  * solver_free
2404  */
2405
2406 void
2407 solver_free(Solver *solv)
2408 {
2409   queue_free(&solv->ruletojob);
2410   queue_free(&solv->decisionq);
2411   queue_free(&solv->decisionq_why);
2412   queue_free(&solv->learnt_why);
2413   queue_free(&solv->learnt_pool);
2414   queue_free(&solv->problems);
2415   queue_free(&solv->suggestions);
2416   queue_free(&solv->recommendations);
2417   queue_free(&solv->orphaned);
2418   queue_free(&solv->branches);
2419   queue_free(&solv->covenantq);
2420   queue_free(&solv->weakruleq);
2421   queue_free(&solv->ruleassertions);
2422
2423   map_free(&solv->recommendsmap);
2424   map_free(&solv->suggestsmap);
2425   map_free(&solv->noupdate);
2426   map_free(&solv->weakrulemap);
2427   map_free(&solv->noobsoletes);
2428
2429   sat_free(solv->decisionmap);
2430   sat_free(solv->rules);
2431   sat_free(solv->watches);
2432   sat_free(solv->obsoletes);
2433   sat_free(solv->obsoletes_data);
2434   sat_free(solv->multiversionupdaters);
2435   sat_free(solv);
2436 }
2437
2438
2439 /*-------------------------------------------------------------------
2440  * 
2441  * run_solver
2442  *
2443  * all rules have been set up, now actually run the solver
2444  *
2445  */
2446
2447 static void
2448 run_solver(Solver *solv, int disablerules, int doweak)
2449 {
2450   Queue dq;             /* local decisionqueue */
2451   Queue dqs;            /* local decisionqueue for supplements */
2452   int systemlevel;
2453   int level, olevel;
2454   Rule *r;
2455   int i, j, n;
2456   Solvable *s;
2457   Pool *pool = solv->pool;
2458   Id p, *dp;
2459
2460   IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
2461     {
2462       POOL_DEBUG (SAT_DEBUG_RULE_CREATION, "number of rules: %d\n", solv->nrules);
2463       for (i = 1; i < solv->nrules; i++)
2464         solver_printruleclass(solv, SAT_DEBUG_RULE_CREATION, solv->rules + i);
2465     }
2466
2467   POOL_DEBUG(SAT_DEBUG_STATS, "initial decisions: %d\n", solv->decisionq.count);
2468
2469   IF_POOLDEBUG (SAT_DEBUG_SCHUBI)
2470     solver_printdecisions(solv);
2471
2472   /* start SAT algorithm */
2473   level = 1;
2474   systemlevel = level + 1;
2475   POOL_DEBUG(SAT_DEBUG_STATS, "solving...\n");
2476
2477   queue_init(&dq);
2478   queue_init(&dqs);
2479
2480   /*
2481    * here's the main loop:
2482    * 1) propagate new decisions (only needed for level 1)
2483    * 2) try to keep installed packages
2484    * 3) fulfill all unresolved rules
2485    * 4) install recommended packages
2486    * 5) minimalize solution if we had choices
2487    * if we encounter a problem, we rewind to a safe level and restart
2488    * with step 1
2489    */
2490    
2491   for (;;)
2492     {
2493       /*
2494        * propagate
2495        */
2496
2497       if (level == 1)
2498         {
2499           POOL_DEBUG(SAT_DEBUG_PROPAGATE, "propagating (propagate_index: %d;  size decisionq: %d)...\n", solv->propagate_index, solv->decisionq.count);
2500           if ((r = propagate(solv, level)) != 0)
2501             {
2502               if (analyze_unsolvable(solv, r, disablerules))
2503                 continue;
2504               queue_free(&dq);
2505               queue_free(&dqs);
2506               return;
2507             }
2508         }
2509
2510      if (level < systemlevel)
2511         {
2512           POOL_DEBUG(SAT_DEBUG_STATS, "resolving job rules\n");
2513           for (i = solv->jobrules, r = solv->rules + i; i < solv->jobrules_end; i++, r++)
2514             {
2515               Id l;
2516               if (r->d < 0)             /* ignore disabled rules */
2517                 continue;
2518               queue_empty(&dq);
2519               FOR_RULELITERALS(l, dp, r)
2520                 {
2521                   if (l < 0)
2522                     {
2523                       if (solv->decisionmap[-l] <= 0)
2524                         break;
2525                     }
2526                   else
2527                     {
2528                       if (solv->decisionmap[l] > 0)
2529                         break;
2530                       if (solv->decisionmap[l] == 0)
2531                         queue_push(&dq, l);
2532                     }
2533                 }
2534               if (l || !dq.count)
2535                 continue;
2536               /* prune to installed if not updating */
2537               if (!solv->updatesystem && solv->installed && dq.count > 1)
2538                 {
2539                   int j, k;
2540                   for (j = k = 0; j < dq.count; j++)
2541                     {
2542                       Solvable *s = pool->solvables + dq.elements[j];
2543                       if (s->repo == solv->installed)
2544                         dq.elements[k++] = dq.elements[j];
2545                     }
2546                   if (k)
2547                     dq.count = k;
2548                 }
2549               olevel = level;
2550               level = selectandinstall(solv, level, &dq, disablerules);
2551               if (level == 0)
2552                 {
2553                   queue_free(&dq);
2554                   queue_free(&dqs);
2555                   return;
2556                 }
2557               if (level <= olevel)
2558                 break;
2559             }
2560           systemlevel = level + 1;
2561           if (i < solv->jobrules_end)
2562             continue;
2563         }
2564
2565
2566       /*
2567        * installed packages
2568        */
2569
2570       if (level < systemlevel && solv->installed && solv->installed->nsolvables)
2571         {
2572           if (!solv->updatesystem)
2573             {
2574               /*
2575                * Normal run (non-updating)
2576                * Keep as many packages installed as possible
2577                */
2578               POOL_DEBUG(SAT_DEBUG_STATS, "installing old packages\n");
2579                 
2580               for (i = solv->installed->start; i < solv->installed->end; i++)
2581                 {
2582                   s = pool->solvables + i;
2583                     
2584                     /* skip if not installed */
2585                   if (s->repo != solv->installed)
2586                     continue;
2587                     
2588                     /* skip if already decided */
2589                   if (solv->decisionmap[i] != 0)
2590                     continue;
2591                     
2592                   POOL_DEBUG(SAT_DEBUG_PROPAGATE, "keeping %s\n", solvable2str(pool, s));
2593                     
2594                   olevel = level;
2595                   level = setpropagatelearn(solv, level, i, disablerules);
2596
2597                   if (level == 0)                /* unsolvable */
2598                     {
2599                       queue_free(&dq);
2600                       queue_free(&dqs);
2601                       return;
2602                     }
2603                   if (level <= olevel)
2604                     break;
2605                 }
2606               systemlevel = level + 1;
2607               if (i < solv->installed->end)
2608                 continue;
2609             }
2610           else if (solv->noobsoletes.size && solv->multiversionupdaters)
2611             {
2612               /* see if we can multi-version install the newest package */
2613               for (i = solv->installed->start; i < solv->installed->end; i++)
2614                 {
2615                   Id d;
2616                   s = pool->solvables + i;
2617                   if (s->repo != solv->installed)
2618                     continue;
2619                   if (MAPTST(&solv->noupdate, i - solv->installed->start))
2620                     continue;
2621                   d = solv->multiversionupdaters[i - solv->installed->start];
2622                   if (!d)
2623                     continue;
2624                   queue_empty(&dq);
2625                   queue_push(&dq, i);
2626                   while ((p = pool->whatprovidesdata[d++]) != 0)
2627                     if (solv->decisionmap[p] >= 0)
2628                       queue_push(&dq, p);
2629                   policy_filter_unwanted(solv, &dq, POLICY_MODE_CHOOSE);
2630                   p = dq.elements[0];
2631                   if (p != i && solv->decisionmap[p] == 0)
2632                     {
2633                       olevel = level;
2634                       POOL_DEBUG(SAT_DEBUG_POLICY, "installing (multi-version) %s\n", solvable2str(pool, pool->solvables + p));
2635                       level = setpropagatelearn(solv, level, p, disablerules);
2636                       if (level == 0)
2637                         {
2638                           queue_free(&dq);
2639                           queue_free(&dqs);
2640                           return;
2641                         }
2642                       if (level <= olevel)
2643                         break;
2644                     }
2645                   p = i;
2646                   /* now that the best version is installed, try to
2647                    * keep the original one */
2648                   if (solv->decisionmap[p])     /* already decided? */
2649                    continue;
2650                   r = solv->rules + solv->updaterules + (i - solv->installed->start);
2651                   if (!r->p)            /* update rule == feature rule? */
2652                     r = r - solv->updaterules + solv->featurerules;
2653                   if (r->p == p)        /* allowed to keep package? */
2654                     {
2655                       olevel = level;
2656                       POOL_DEBUG(SAT_DEBUG_POLICY, "keeping (multi-version) %s\n", solvable2str(pool, pool->solvables + p));
2657                       level = setpropagatelearn(solv, level, p, disablerules);
2658                       if (level == 0)
2659                         {
2660                           queue_free(&dq);
2661                           queue_free(&dqs);
2662                           return;
2663                         }
2664                       if (level <= olevel)
2665                         break;
2666                     }
2667                 }
2668               systemlevel = level + 1;
2669               if (i < solv->installed->end)
2670                 continue;
2671             }
2672             
2673           POOL_DEBUG(SAT_DEBUG_STATS, "resolving update/feature rules\n");
2674             
2675           for (i = solv->installed->start, r = solv->rules + solv->updaterules; i < solv->installed->end; i++, r++)
2676             {
2677               Rule *rr;
2678               s = pool->solvables + i;
2679                 
2680                 /* skip if not installed (can't update) */
2681               if (s->repo != solv->installed)
2682                 continue;
2683                 /* skip if already decided */
2684               if (solv->decisionmap[i] > 0)
2685                 continue;
2686                 
2687                 /* noupdate is set if a job is erasing the installed solvable or installing a specific version */
2688               if (MAPTST(&solv->noupdate, i - solv->installed->start))
2689                 continue;
2690                 
2691               queue_empty(&dq);
2692
2693               rr = r;
2694               if (rr->d < 0)    /* disabled -> look at feature rule ? */
2695                 rr -= solv->installed->end - solv->installed->start;
2696               if (!rr->p)       /* identical to update rule? */
2697                 rr = r;
2698               if (rr->p <= 0)
2699                 continue;       /* no such rule or disabled */
2700         
2701               FOR_RULELITERALS(p, dp, rr)
2702                 {
2703                   if (solv->decisionmap[p] > 0)
2704                     break;
2705                   if (solv->decisionmap[p] == 0)
2706                     queue_push(&dq, p);
2707                 }
2708               if (p || !dq.count)       /* already fulfilled or empty */
2709                 continue;
2710               olevel = level;
2711               level = selectandinstall(solv, level, &dq, disablerules);
2712               if (level == 0)
2713                 {
2714                   queue_free(&dq);
2715                   queue_free(&dqs);
2716                   return;
2717                 }
2718               if (level <= olevel)
2719                 break;
2720             }
2721           systemlevel = level + 1;
2722           if (i < solv->installed->end)
2723             continue;
2724         }
2725
2726       if (level < systemlevel)
2727         systemlevel = level;
2728
2729       /*
2730        * decide
2731        */
2732
2733       POOL_DEBUG(SAT_DEBUG_POLICY, "deciding unresolved rules\n");
2734       for (i = 1, n = 1; ; i++, n++)
2735         {
2736           if (n == solv->nrules)
2737             break;
2738           if (i == solv->nrules)
2739             i = 1;
2740           r = solv->rules + i;
2741           if (r->d < 0)         /* ignore disabled rules */
2742             continue;
2743           queue_empty(&dq);
2744           if (r->d == 0)
2745             {
2746               /* binary or unary rule */
2747               /* need two positive undecided literals */
2748               if (r->p < 0 || r->w2 <= 0)
2749                 continue;
2750               if (solv->decisionmap[r->p] || solv->decisionmap[r->w2])
2751                 continue;
2752               queue_push(&dq, r->p);
2753               queue_push(&dq, r->w2);
2754             }
2755           else
2756             {
2757               /* make sure that
2758                * all negative literals are installed
2759                * no positive literal is installed
2760                * i.e. the rule is not fulfilled and we
2761                * just need to decide on the positive literals
2762                */
2763               if (r->p < 0)
2764                 {
2765                   if (solv->decisionmap[-r->p] <= 0)
2766                     continue;
2767                 }
2768               else
2769                 {
2770                   if (solv->decisionmap[r->p] > 0)
2771                     continue;
2772                   if (solv->decisionmap[r->p] == 0)
2773                     queue_push(&dq, r->p);
2774                 }
2775               dp = pool->whatprovidesdata + r->d;
2776               while ((p = *dp++) != 0)
2777                 {
2778                   if (p < 0)
2779                     {
2780                       if (solv->decisionmap[-p] <= 0)
2781                         break;
2782                     }
2783                   else
2784                     {
2785                       if (solv->decisionmap[p] > 0)
2786                         break;
2787                       if (solv->decisionmap[p] == 0)
2788                         queue_push(&dq, p);
2789                     }
2790                 }
2791               if (p)
2792                 continue;
2793             }
2794           IF_POOLDEBUG (SAT_DEBUG_PROPAGATE)
2795             {
2796               POOL_DEBUG(SAT_DEBUG_PROPAGATE, "unfulfilled ");
2797               solver_printruleclass(solv, SAT_DEBUG_PROPAGATE, r);
2798             }
2799           /* dq.count < 2 cannot happen as this means that
2800            * the rule is unit */
2801           assert(dq.count > 1);
2802
2803           olevel = level;
2804           level = selectandinstall(solv, level, &dq, disablerules);
2805           if (level == 0)
2806             {
2807               queue_free(&dq);
2808               queue_free(&dqs);
2809               return;
2810             }
2811           if (level < systemlevel)
2812             break;
2813           n = 0;
2814         } /* for(), decide */
2815
2816       if (n != solv->nrules)    /* continue if level < systemlevel */
2817         continue;
2818
2819       if (doweak)
2820         {
2821           int qcount;
2822
2823           POOL_DEBUG(SAT_DEBUG_POLICY, "installing recommended packages\n");
2824           queue_empty(&dq);
2825           queue_empty(&dqs);
2826           for (i = 1; i < pool->nsolvables; i++)
2827             {
2828               if (solv->decisionmap[i] < 0)
2829                 continue;
2830               if (solv->decisionmap[i] > 0)
2831                 {
2832                   /* installed, check for recommends */
2833                   Id *recp, rec, pp, p;
2834                   s = pool->solvables + i;
2835                   if (solv->ignorealreadyrecommended && s->repo == solv->installed)
2836                     continue;
2837                   /* XXX need to special case AND ? */
2838                   if (s->recommends)
2839                     {
2840                       recp = s->repo->idarraydata + s->recommends;
2841                       while ((rec = *recp++) != 0)
2842                         {
2843                           qcount = dq.count;
2844                           FOR_PROVIDES(p, pp, rec)
2845                             {
2846                               if (solv->decisionmap[p] > 0)
2847                                 {
2848                                   dq.count = qcount;
2849                                   break;
2850                                 }
2851                               else if (solv->decisionmap[p] == 0)
2852                                 {
2853                                   queue_pushunique(&dq, p);
2854                                 }
2855                             }
2856                         }
2857                     }
2858                 }
2859               else
2860                 {
2861                   s = pool->solvables + i;
2862                   if (!s->supplements)
2863                     continue;
2864                   if (!pool_installable(pool, s))
2865                     continue;
2866                   if (!solver_is_supplementing(solv, s))
2867                     continue;
2868                   if (solv->ignorealreadyrecommended && solv->installed)
2869                     queue_pushunique(&dqs, i);  /* needs filter */
2870                   else
2871                     queue_pushunique(&dq, i);
2872                 }
2873             }
2874           if (solv->ignorealreadyrecommended && dqs.count)
2875             {
2876               /* turn off all new packages */
2877               for (i = 0; i < solv->decisionq.count; i++)
2878                 {
2879                   p = solv->decisionq.elements[i];
2880                   if (p < 0)
2881                     continue;
2882                   s = pool->solvables + p;
2883                   if (s->repo && s->repo != solv->installed)
2884                     solv->decisionmap[p] = -solv->decisionmap[p];
2885                 }
2886               /* filter out old supplements */
2887               for (i = 0; i < dqs.count; i++)
2888                 {
2889                   p = dqs.elements[i];
2890                   s = pool->solvables + p;
2891                   if (!s->supplements)
2892                     continue;
2893                   if (!solver_is_supplementing(solv, s))
2894                     queue_pushunique(&dq, p);
2895                 }
2896               /* undo turning off */
2897               for (i = 0; i < solv->decisionq.count; i++)
2898                 {
2899                   p = solv->decisionq.elements[i];
2900                   if (p < 0)
2901                     continue;
2902                   s = pool->solvables + p;
2903                   if (s->repo && s->repo != solv->installed)
2904                     solv->decisionmap[p] = -solv->decisionmap[p];
2905                 }
2906             }
2907           if (dq.count)
2908             {
2909               if (dq.count > 1)
2910                 policy_filter_unwanted(solv, &dq, POLICY_MODE_RECOMMEND);
2911               p = dq.elements[0];
2912               POOL_DEBUG(SAT_DEBUG_POLICY, "installing recommended %s\n", solvable2str(pool, pool->solvables + p));
2913               queue_push(&solv->recommendations, p);
2914               level = setpropagatelearn(solv, level, p, 0);
2915               continue;
2916             }
2917         }
2918
2919      if (solv->distupgrade && solv->installed)
2920         {
2921           /* let's see if we can install some unsupported package */
2922           POOL_DEBUG(SAT_DEBUG_STATS, "deciding unsupported packages\n");
2923           for (i = 0; i < solv->orphaned.count; i++)
2924             {
2925               p = solv->orphaned.elements[i];
2926               if (!solv->decisionmap[p])
2927                 break;
2928             }
2929           if (i < solv->orphaned.count)
2930             {
2931               p = solv->orphaned.elements[i];
2932               if (solv->distupgrade_removeunsupported)
2933                 {
2934                   POOL_DEBUG(SAT_DEBUG_STATS, "removing unsupported %s\n", solvable2str(pool, pool->solvables + p));
2935                   level = setpropagatelearn(solv, level, -p, 0);
2936                 }
2937               else
2938                 {
2939                   POOL_DEBUG(SAT_DEBUG_STATS, "keeping unsupported %s\n", solvable2str(pool, pool->solvables + p));
2940                   level = setpropagatelearn(solv, level, p, 0);
2941                 }
2942               continue;
2943             }
2944         }
2945
2946      if (solv->solution_callback)
2947         {
2948           solv->solution_callback(solv, solv->solution_callback_data);
2949           if (solv->branches.count)
2950             {
2951               int i = solv->branches.count - 1;
2952               int l = -solv->branches.elements[i];
2953               for (; i > 0; i--)
2954                 if (solv->branches.elements[i - 1] < 0)
2955                   break;
2956               p = solv->branches.elements[i];
2957               POOL_DEBUG(SAT_DEBUG_STATS, "branching with %s\n", solvable2str(pool, pool->solvables + p));
2958               queue_empty(&dq);
2959               for (j = i + 1; j < solv->branches.count; j++)
2960                 queue_push(&dq, solv->branches.elements[j]);
2961               solv->branches.count = i;
2962               level = l;
2963               revert(solv, level);
2964               if (dq.count > 1)
2965                 for (j = 0; j < dq.count; j++)
2966                   queue_push(&solv->branches, dq.elements[j]);
2967               olevel = level;
2968               level = setpropagatelearn(solv, level, p, disablerules);
2969               if (level == 0)
2970                 {
2971                   queue_free(&dq);
2972                   queue_free(&dqs);
2973                   return;
2974                 }
2975               continue;
2976             }
2977           /* all branches done, we're finally finished */
2978           break;
2979         }
2980
2981       /* minimization step */
2982      if (solv->branches.count)
2983         {
2984           int l = 0, lasti = -1, lastl = -1;
2985           p = 0;
2986           for (i = solv->branches.count - 1; i >= 0; i--)
2987             {
2988               p = solv->branches.elements[i];
2989               if (p < 0)
2990                 l = -p;
2991               else if (p > 0 && solv->decisionmap[p] > l + 1)
2992                 {
2993                   lasti = i;
2994                   lastl = l;
2995                 }
2996             }
2997           if (lasti >= 0)
2998             {
2999               /* kill old solvable so that we do not loop */
3000               p = solv->branches.elements[lasti];
3001               solv->branches.elements[lasti] = 0;
3002               POOL_DEBUG(SAT_DEBUG_STATS, "minimizing %d -> %d with %s\n", solv->decisionmap[p], l, solvable2str(pool, pool->solvables + p));
3003
3004               level = lastl;
3005               revert(solv, level);
3006               olevel = level;
3007               level = setpropagatelearn(solv, level, p, disablerules);
3008               if (level == 0)
3009                 {
3010                   queue_free(&dq);
3011                   queue_free(&dqs);
3012                   return;
3013                 }
3014               continue;
3015             }
3016         }
3017       break;
3018     }
3019   POOL_DEBUG(SAT_DEBUG_STATS, "solver statistics: %d learned rules, %d unsolvable\n", solv->stats_learned, solv->stats_unsolvable);
3020
3021   POOL_DEBUG(SAT_DEBUG_STATS, "done solving.\n\n");
3022   queue_free(&dq);
3023   queue_free(&dqs);
3024 }
3025
3026
3027 /*-------------------------------------------------------------------
3028  * 
3029  * refine_suggestion
3030  * 
3031  * at this point, all rules that led to conflicts are disabled.
3032  * we re-enable all rules of a problem set but rule "sug", then
3033  * continue to disable more rules until there as again a solution.
3034  */
3035
3036 /* FIXME: think about conflicting assertions */
3037
3038 static void
3039 refine_suggestion(Solver *solv, Queue *job, Id *problem, Id sug, Queue *refined)
3040 {
3041   Pool *pool = solv->pool;
3042   int i, j;
3043   Id v;
3044   Queue disabled;
3045   int disabledcnt;
3046
3047   IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
3048     {
3049       POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "refine_suggestion start\n");
3050       for (i = 0; problem[i]; i++)
3051         {
3052           if (problem[i] == sug)
3053             POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "=> ");
3054           solver_printproblem(solv, problem[i]);
3055         }
3056     }
3057   queue_init(&disabled);
3058   queue_empty(refined);
3059   queue_push(refined, sug);
3060
3061   /* re-enable all problem rules with the exception of "sug"(gestion) */
3062   revert(solv, 1);
3063   reset_solver(solv);
3064
3065   for (i = 0; problem[i]; i++)
3066     if (problem[i] != sug)
3067       enableproblem(solv, problem[i]);
3068
3069   if (sug < 0)
3070     disableupdaterules(solv, job, -(sug + 1));
3071   else if (sug >= solv->updaterules && sug < solv->updaterules_end)
3072     {
3073       /* enable feature rule */
3074       Rule *r = solv->rules + solv->featurerules + (sug - solv->updaterules);
3075       if (r->p)
3076         enablerule(solv, r);
3077     }
3078
3079   enableweakrules(solv);
3080
3081   for (;;)
3082     {
3083       int njob, nfeature, nupdate;
3084       queue_empty(&solv->problems);
3085       revert(solv, 1);          /* XXX no longer needed? */
3086       reset_solver(solv);
3087
3088       if (!solv->problems.count)
3089         run_solver(solv, 0, 0);
3090
3091       if (!solv->problems.count)
3092         {
3093           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "no more problems!\n");
3094           IF_POOLDEBUG (SAT_DEBUG_SCHUBI)
3095             solver_printdecisions(solv);
3096           break;                /* great, no more problems */
3097         }
3098       disabledcnt = disabled.count;
3099       /* start with 1 to skip over proof index */
3100       njob = nfeature = nupdate = 0;
3101       for (i = 1; i < solv->problems.count - 1; i++)
3102         {
3103           /* ignore solutions in refined */
3104           v = solv->problems.elements[i];
3105           if (v == 0)
3106             break;      /* end of problem reached */
3107           for (j = 0; problem[j]; j++)
3108             if (problem[j] != sug && problem[j] == v)
3109               break;
3110           if (problem[j])
3111             continue;
3112           if (v >= solv->featurerules && v < solv->featurerules_end)
3113             nfeature++;
3114           else if (v > 0)
3115             nupdate++;
3116           else
3117             {
3118               if ((job->elements[-v -1] & SOLVER_ESSENTIAL) != 0)
3119                 continue;       /* not that one! */
3120               njob++;
3121             }
3122           queue_push(&disabled, v);
3123         }
3124       if (disabled.count == disabledcnt)
3125         {
3126           /* no solution found, this was an invalid suggestion! */
3127           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "no solution found!\n");
3128           refined->count = 0;
3129           break;
3130         }
3131       if (!njob && nupdate && nfeature)
3132         {
3133           /* got only update rules, filter out feature rules */
3134           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "throwing away feature rules\n");
3135           for (i = j = disabledcnt; i < disabled.count; i++)
3136             {
3137               v = disabled.elements[i];
3138               if (v < solv->featurerules || v >= solv->featurerules_end)
3139                 disabled.elements[j++] = v;
3140             }
3141           disabled.count = j;
3142           nfeature = 0;
3143         }
3144       if (disabled.count == disabledcnt + 1)
3145         {
3146           /* just one suggestion, add it to refined list */
3147           v = disabled.elements[disabledcnt];
3148           if (!nfeature)
3149             queue_push(refined, v);     /* do not record feature rules */
3150           disableproblem(solv, v);
3151           if (v >= solv->updaterules && v < solv->updaterules_end)
3152             {
3153               Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
3154               if (r->p)
3155                 enablerule(solv, r);    /* enable corresponding feature rule */
3156             }
3157           if (v < 0)
3158             disableupdaterules(solv, job, -(v + 1));
3159         }
3160       else
3161         {
3162           /* more than one solution, disable all */
3163           /* do not push anything on refine list, as we do not know which solution to choose */
3164           /* thus, the user will get another problem if he selects this solution, where he
3165            * can choose the right one */
3166           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
3167             {
3168               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "more than one solution found:\n");
3169               for (i = disabledcnt; i < disabled.count; i++)
3170                 solver_printproblem(solv, disabled.elements[i]);
3171             }
3172           for (i = disabledcnt; i < disabled.count; i++)
3173             {
3174               v = disabled.elements[i];
3175               disableproblem(solv, v);
3176               if (v >= solv->updaterules && v < solv->updaterules_end)
3177                 {
3178                   Rule *r = solv->rules + (v - solv->updaterules + solv->featurerules);
3179                   if (r->p)
3180                     enablerule(solv, r);
3181                 }
3182             }
3183         }
3184     }
3185   /* all done, get us back into the same state as before */
3186   /* enable refined rules again */
3187   for (i = 0; i < disabled.count; i++)
3188     enableproblem(solv, disabled.elements[i]);
3189   /* disable problem rules again */
3190
3191   /* FIXME! */
3192   for (i = 0; problem[i]; i++)
3193     enableproblem(solv, problem[i]);
3194   disableupdaterules(solv, job, -1);
3195
3196   /* disable problem rules again */
3197   for (i = 0; problem[i]; i++)
3198     disableproblem(solv, problem[i]);
3199   POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "refine_suggestion end\n");
3200 }
3201
3202
3203 /*-------------------------------------------------------------------
3204  * sorting helper for problems
3205  *
3206  * bring update rules before job rules
3207  * make essential job rules last
3208  */
3209
3210 Queue *problems_sort_data;
3211
3212 static int
3213 problems_sortcmp(const void *ap, const void *bp)
3214 {
3215   Id a = *(Id *)ap, b = *(Id *)bp;
3216   if (a < 0 && b > 0)
3217     return 1;
3218   if (a > 0 && b < 0)
3219     return -1;
3220   if (a < 0 && b < 0)
3221     {
3222       Queue *job = problems_sort_data;
3223       int af = job->elements[-a - 1] & SOLVER_ESSENTIAL;
3224       int bf = job->elements[-a - 1] & SOLVER_ESSENTIAL;
3225       int x = bf - af;
3226       if (x)
3227         return x;
3228     }
3229   return a - b;
3230 }
3231
3232
3233 /*-------------------------------------------------------------------
3234  * sort problems
3235  */
3236
3237 static void
3238 problems_sort(Solver *solv, Queue *job)
3239 {
3240   int i, j;
3241   if (!solv->problems.count)
3242     return;
3243   for (i = j = 1; i < solv->problems.count; i++)
3244     {
3245       if (!solv->problems.elements[i])
3246         {
3247           if (i > j + 1)
3248             {
3249               problems_sort_data = job;
3250               qsort(solv->problems.elements + j, i - j, sizeof(Id), problems_sortcmp);
3251             }
3252           if (++i == solv->problems.count)
3253             break;
3254           j = i + 1;
3255         }
3256     }
3257 }
3258
3259
3260 /*-------------------------------------------------------------------
3261  * convert problems to solutions
3262  */
3263
3264 static void
3265 problems_to_solutions(Solver *solv, Queue *job)
3266 {
3267   Pool *pool = solv->pool;
3268   Queue problems;
3269   Queue solution;
3270   Queue solutions;
3271   Id *problem;
3272   Id why;
3273   int i, j, nsol, probsolved;
3274   unsigned int now, refnow;
3275
3276   if (!solv->problems.count)
3277     return;
3278   now = sat_timems(0);
3279   problems_sort(solv, job);
3280   queue_clone(&problems, &solv->problems);
3281   queue_init(&solution);
3282   queue_init(&solutions);
3283   /* copy over proof index */
3284   queue_push(&solutions, problems.elements[0]);
3285   problem = problems.elements + 1;
3286   probsolved = 0;
3287   refnow = sat_timems(0);
3288   for (i = 1; i < problems.count; i++)
3289     {
3290       Id v = problems.elements[i];
3291       if (v == 0)
3292         {
3293           /* mark end of this problem */
3294           queue_push(&solutions, 0);
3295           queue_push(&solutions, 0);
3296           POOL_DEBUG(SAT_DEBUG_STATS, "refining took %d ms\n", sat_timems(refnow));
3297           if (i + 1 == problems.count)
3298             break;
3299           /* copy over proof of next problem */
3300           queue_push(&solutions, problems.elements[i + 1]);
3301           i++;
3302           problem = problems.elements + i + 1;
3303           refnow = sat_timems(0);
3304           probsolved = 0;
3305           continue;
3306         }
3307       if (v < 0 && (job->elements[-v - 1] & SOLVER_ESSENTIAL))
3308         {
3309           /* essential job, skip if we already have a non-essential
3310              solution */
3311           if (probsolved > 0)
3312             continue;
3313           probsolved = -1;      /* show all solutions */
3314         }
3315       refine_suggestion(solv, job, problem, v, &solution);
3316       if (!solution.count)
3317         continue;       /* this solution didn't work out */
3318
3319       nsol = 0;
3320       for (j = 0; j < solution.count; j++)
3321         {
3322           why = solution.elements[j];
3323           /* must be either job descriptor or update rule */
3324           assert(why < 0 || (why >= solv->updaterules && why < solv->updaterules_end));
3325 #if 0
3326           solver_printproblem(solv, why);
3327 #endif
3328           if (why < 0)
3329             {
3330               /* job descriptor */
3331               queue_push(&solutions, 0);
3332               queue_push(&solutions, -why);
3333             }
3334           else
3335             {
3336               /* update rule, find replacement package */
3337               Id p, *dp, rp = 0;
3338               Rule *rr;
3339               p = solv->installed->start + (why - solv->updaterules);
3340               rr = solv->rules + solv->featurerules + (why - solv->updaterules);
3341               if (!rr->p)
3342                 rr = solv->rules + why;
3343               if (solv->distupgrade && solv->rules[why].p != p && solv->decisionmap[p] > 0)
3344                 {
3345                   /* distupgrade case, allow to keep old package */
3346                   queue_push(&solutions, p);
3347                   queue_push(&solutions, p);
3348                   nsol++;
3349                   continue;
3350                 }
3351               if (solv->decisionmap[p] > 0)
3352                 continue;       /* false alarm, turned out we can keep the package */
3353               if (rr->w2)
3354                 {
3355                   int mvrp = 0;         /* multi-version replacement */
3356                   FOR_RULELITERALS(rp, dp, rr)
3357                     {
3358                       if (rp > 0 && solv->decisionmap[rp] > 0 && pool->solvables[rp].repo != solv->installed)
3359                         {
3360                           mvrp = rp;
3361                           if (!(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, rp)))
3362                             break;
3363                         }
3364                     }
3365                   if (!rp && mvrp)
3366                     {
3367                       /* found only multi-version replacements */
3368                       /* have to split solution into two parts */
3369                       queue_push(&solutions, p);
3370                       queue_push(&solutions, mvrp);
3371                       nsol++;
3372                     }
3373                 }
3374               queue_push(&solutions, p);
3375               queue_push(&solutions, rp);
3376             }
3377           nsol++;
3378         }
3379       /* mark end of this solution */
3380       if (nsol)
3381         {
3382           if (!probsolved)
3383             probsolved = 1;
3384           queue_push(&solutions, 0);
3385           queue_push(&solutions, 0);
3386         }
3387       else
3388         {
3389           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "Oops, everything was fine?\n");
3390         }
3391     }
3392   queue_free(&solution);
3393   queue_free(&problems);
3394   /* copy queue over to solutions */
3395   queue_free(&solv->problems);
3396   queue_clone(&solv->problems, &solutions);
3397
3398   /* bring solver back into problem state */
3399   revert(solv, 1);              /* XXX move to reset_solver? */
3400   reset_solver(solv);
3401
3402   assert(solv->problems.count == solutions.count);
3403   queue_free(&solutions);
3404   POOL_DEBUG(SAT_DEBUG_STATS, "problems_to_solutions took %d ms\n", sat_timems(now));
3405 }
3406
3407
3408 /*-------------------------------------------------------------------
3409  * 
3410  * problem iterator
3411  * 
3412  * advance to next problem
3413  */
3414
3415 Id
3416 solver_next_problem(Solver *solv, Id problem)
3417 {
3418   Id *pp;
3419   if (problem == 0)
3420     return solv->problems.count ? 1 : 0;
3421   pp = solv->problems.elements + problem;
3422   while (pp[0] || pp[1])
3423     {
3424       /* solution */
3425       pp += 2;
3426       while (pp[0] || pp[1])
3427         pp += 2;
3428       pp += 2;
3429     }
3430   pp += 2;
3431   problem = pp - solv->problems.elements;
3432   if (problem >= solv->problems.count)
3433     return 0;
3434   return problem + 1;
3435 }
3436
3437
3438 /*-------------------------------------------------------------------
3439  * 
3440  * solution iterator
3441  */
3442
3443 Id
3444 solver_next_solution(Solver *solv, Id problem, Id solution)
3445 {
3446   Id *pp;
3447   if (solution == 0)
3448     {
3449       solution = problem;
3450       pp = solv->problems.elements + solution;
3451       return pp[0] || pp[1] ? solution : 0;
3452     }
3453   pp = solv->problems.elements + solution;
3454   while (pp[0] || pp[1])
3455     pp += 2;
3456   pp += 2;
3457   solution = pp - solv->problems.elements;
3458   return pp[0] || pp[1] ? solution : 0;
3459 }
3460
3461
3462 /*-------------------------------------------------------------------
3463  * 
3464  * solution element iterator
3465  */
3466
3467 Id
3468 solver_next_solutionelement(Solver *solv, Id problem, Id solution, Id element, Id *p, Id *rp)
3469 {
3470   Id *pp;
3471   element = element ? element + 2 : solution;
3472   pp = solv->problems.elements + element;
3473   if (!(pp[0] || pp[1]))
3474     return 0;
3475   *p = pp[0];
3476   *rp = pp[1];
3477   return element;
3478 }
3479
3480
3481 /*-------------------------------------------------------------------
3482  * 
3483  * Retrieve information about a problematic rule
3484  *
3485  * this is basically the reverse of addrpmrulesforsolvable
3486  */
3487
3488 SolverProbleminfo
3489 solver_problemruleinfo(Solver *solv, Queue *job, Id rid, Id *depp, Id *sourcep, Id *targetp)
3490 {
3491   Pool *pool = solv->pool;
3492   Repo *installed = solv->installed;
3493   Rule *r;
3494   Solvable *s;
3495   int dontfix = 0;
3496   Id p, d, w2, pp, req, *reqp, con, *conp, obs, *obsp, *dp;
3497
3498   assert(rid > 0);
3499   if (rid >= solv->jobrules && rid < solv->jobrules_end)
3500     {
3501
3502       r = solv->rules + rid;
3503       p = solv->ruletojob.elements[rid - solv->jobrules];
3504       *depp = job->elements[p + 1];
3505       *sourcep = p;
3506       *targetp = job->elements[p];
3507       d = r->d < 0 ? -r->d - 1 : r->d;
3508       if (d == 0 && r->w2 == 0 && r->p == -SYSTEMSOLVABLE && (job->elements[p] & SOLVER_SELECTMASK) != SOLVER_SOLVABLE_ONE_OF)
3509         return SOLVER_PROBLEM_JOB_NOTHING_PROVIDES_DEP;
3510       return SOLVER_PROBLEM_JOB_RULE;
3511     }
3512   if (rid >= solv->updaterules && rid < solv->updaterules_end)
3513     {
3514       *depp = 0;
3515       *sourcep = solv->installed->start + (rid - solv->updaterules);
3516       *targetp = 0;
3517       return SOLVER_PROBLEM_UPDATE_RULE;
3518     }
3519   assert(rid < solv->rpmrules_end);
3520   r = solv->rules + rid;
3521   assert(r->p < 0);
3522   d = r->d < 0 ? -r->d - 1 : r->d;
3523   if (d == 0 && r->w2 == 0)
3524     {
3525       /* a rpm rule assertion */
3526       s = pool->solvables - r->p;
3527       if (installed && !solv->fixsystem && s->repo == installed)
3528         dontfix = 1;
3529       assert(!dontfix); /* dontfix packages never have a neg assertion */
3530       *sourcep = -r->p;
3531       *targetp = 0;
3532       /* see why the package is not installable */
3533       if (s->arch != ARCH_SRC && s->arch != ARCH_NOSRC && !pool_installable(pool, s))
3534         {
3535           *depp = 0;
3536           return SOLVER_PROBLEM_NOT_INSTALLABLE;
3537         }
3538       /* check requires */
3539       if (s->requires)
3540         {
3541           reqp = s->repo->idarraydata + s->requires;
3542           while ((req = *reqp++) != 0)
3543             {
3544               if (req == SOLVABLE_PREREQMARKER)
3545                 continue;
3546               dp = pool->whatprovidesdata + pool_whatprovides(pool, req);
3547               if (*dp == 0)
3548                 break;
3549             }
3550           if (req)
3551             {
3552               *depp = req;
3553               return SOLVER_PROBLEM_NOTHING_PROVIDES_DEP;
3554             }
3555         }
3556       if (!solv->allowselfconflicts && s->conflicts)
3557         {
3558           conp = s->repo->idarraydata + s->conflicts;
3559           while ((con = *conp++) != 0)
3560             FOR_PROVIDES(p, pp, con)
3561               if (p == -r->p)
3562                 {
3563                   *depp = con;
3564                   return SOLVER_PROBLEM_SELF_CONFLICT;
3565                 }
3566         }
3567       /* should never happen */
3568       *depp = 0;
3569       return SOLVER_PROBLEM_RPM_RULE;
3570     }
3571   s = pool->solvables - r->p;
3572   if (installed && !solv->fixsystem && s->repo == installed)
3573     dontfix = 1;
3574   w2 = r->w2;
3575   if (d && pool->whatprovidesdata[d] < 0)
3576     {
3577       /* rule looks like -p|-c|x|x|x..., we only create this for patches with multiversion */
3578       /* reduce it to -p|-c case */
3579       w2 = pool->whatprovidesdata[d];
3580     }
3581   if (d == 0 && w2 < 0)
3582     {
3583       /* a package conflict */
3584       Solvable *s2 = pool->solvables - w2;
3585       int dontfix2 = 0;
3586
3587       if (installed && !solv->fixsystem && s2->repo == installed)
3588         dontfix2 = 1;
3589
3590       /* if both packages have the same name and at least one of them
3591        * is not installed, they conflict */
3592       if (s->name == s2->name && !(installed && s->repo == installed && s2->repo == installed))
3593         {
3594           /* also check noobsoletes map */
3595           if ((s->evr == s2->evr && s->arch == s2->arch) || !solv->noobsoletes.size
3596                 || ((!installed || s->repo != installed) && !MAPTST(&solv->noobsoletes, -r->p))
3597                 || ((!installed || s2->repo != installed) && !MAPTST(&solv->noobsoletes, -w2)))
3598             {
3599               *depp = 0;
3600               *sourcep = -r->p;
3601               *targetp = -w2;
3602               return SOLVER_PROBLEM_SAME_NAME;
3603             }
3604         }
3605
3606       /* check conflicts in both directions */
3607       if (s->conflicts)
3608         {
3609           conp = s->repo->idarraydata + s->conflicts;
3610           while ((con = *conp++) != 0)
3611             {
3612               FOR_PROVIDES(p, pp, con)
3613                 {
3614                   if (dontfix && pool->solvables[p].repo == installed)
3615                     continue;
3616                   if (p != -w2)
3617                     continue;
3618                   *depp = con;
3619                   *sourcep = -r->p;
3620                   *targetp = p;
3621                   return SOLVER_PROBLEM_PACKAGE_CONFLICT;
3622                 }
3623             }
3624         }
3625       if (s2->conflicts)
3626         {
3627           conp = s2->repo->idarraydata + s2->conflicts;
3628           while ((con = *conp++) != 0)
3629             {
3630               FOR_PROVIDES(p, pp, con)
3631                 {
3632                   if (dontfix2 && pool->solvables[p].repo == installed)
3633                     continue;
3634                   if (p != -r->p)
3635                     continue;
3636                   *depp = con;
3637                   *sourcep = -w2;
3638                   *targetp = p;
3639                   return SOLVER_PROBLEM_PACKAGE_CONFLICT;
3640                 }
3641             }
3642         }
3643       /* check obsoletes in both directions */
3644       if ((!installed || s->repo != installed) && s->obsoletes && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->p)))
3645         {
3646           obsp = s->repo->idarraydata + s->obsoletes;
3647           while ((obs = *obsp++) != 0)
3648             {
3649               FOR_PROVIDES(p, pp, obs)
3650                 {
3651                   if (p != -w2)
3652                     continue;
3653                   if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3654                     continue;
3655                   *depp = obs;
3656                   *sourcep = -r->p;
3657                   *targetp = p;
3658                   return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3659                 }
3660             }
3661         }
3662       if ((!installed || s2->repo != installed) && s2->obsoletes && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -w2)))
3663         {
3664           obsp = s2->repo->idarraydata + s2->obsoletes;
3665           while ((obs = *obsp++) != 0)
3666             {
3667               FOR_PROVIDES(p, pp, obs)
3668                 {
3669                   if (p != -r->p)
3670                     continue;
3671                   if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3672                     continue;
3673                   *depp = obs;
3674                   *sourcep = -w2;
3675                   *targetp = p;
3676                   return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3677                 }
3678             }
3679         }
3680       if (solv->implicitobsoleteusesprovides && (!installed || s->repo != installed) && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -r->p)))
3681         {
3682           FOR_PROVIDES(p, pp, s->name)
3683             {
3684               if (p != -w2)
3685                 continue;
3686               *depp = s->name;
3687               *sourcep = -r->p;
3688               *targetp = p;
3689               return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3690             }
3691         }
3692       if (solv->implicitobsoleteusesprovides && (!installed || s2->repo != installed) && !(solv->noobsoletes.size && MAPTST(&solv->noobsoletes, -w2)))
3693         {
3694           FOR_PROVIDES(p, pp, s2->name)
3695             {
3696               if (p != -r->p)
3697                 continue;
3698               *depp = s2->name;
3699               *sourcep = -w2;
3700               *targetp = p;
3701               return SOLVER_PROBLEM_PACKAGE_OBSOLETES;
3702             }
3703         }
3704       /* all cases checked, can't happen */
3705       *depp = 0;
3706       *sourcep = -r->p;
3707       *targetp = 0;
3708       return SOLVER_PROBLEM_RPM_RULE;
3709     }
3710   /* simple requires */
3711   if (s->requires)
3712     {
3713       reqp = s->repo->idarraydata + s->requires;
3714       while ((req = *reqp++) != 0)
3715         {
3716           if (req == SOLVABLE_PREREQMARKER)
3717             continue;
3718           dp = pool->whatprovidesdata + pool_whatprovides(pool, req);
3719           if (d == 0)
3720             {
3721               if (*dp == r->w2 && dp[1] == 0)
3722                 break;
3723             }
3724           else if (dp - pool->whatprovidesdata == d)
3725             break;
3726         }
3727       if (req)
3728         {
3729           *depp = req;
3730           *sourcep = -r->p;
3731           *targetp = 0;
3732           return SOLVER_PROBLEM_DEP_PROVIDERS_NOT_INSTALLABLE;
3733         }
3734     }
3735   /* all cases checked, can't happen */
3736   *depp = 0;
3737   *sourcep = -r->p;
3738   *targetp = 0;
3739   return SOLVER_PROBLEM_RPM_RULE;
3740 }
3741
3742
3743 /*-------------------------------------------------------------------
3744  * 
3745  * find problem rule
3746  */
3747
3748 static void
3749 findproblemrule_internal(Solver *solv, Id idx, Id *reqrp, Id *conrp, Id *sysrp, Id *jobrp)
3750 {
3751   Id rid, d;
3752   Id lreqr, lconr, lsysr, ljobr;
3753   Rule *r;
3754   int reqassert = 0;
3755
3756   lreqr = lconr = lsysr = ljobr = 0;
3757   while ((rid = solv->learnt_pool.elements[idx++]) != 0)
3758     {
3759       assert(rid > 0);
3760       if (rid >= solv->learntrules)
3761         findproblemrule_internal(solv, solv->learnt_why.elements[rid - solv->learntrules], &lreqr, &lconr, &lsysr, &ljobr);
3762       else if (rid >= solv->jobrules && rid < solv->jobrules_end)
3763         {
3764           if (!*jobrp)
3765             *jobrp = rid;
3766         }
3767       else if (rid >= solv->updaterules && rid < solv->updaterules_end)
3768         {
3769           if (!*sysrp)
3770             *sysrp = rid;
3771         }
3772       else
3773         {
3774           assert(rid < solv->rpmrules_end);
3775           r = solv->rules + rid;
3776           d = r->d < 0 ? -r->d - 1 : r->d;
3777           if (!d && r->w2 < 0)
3778             {
3779               if (!*conrp)
3780                 *conrp = rid;
3781             }
3782           else
3783             {
3784               if (!d && r->w2 == 0 && !reqassert)
3785                 {
3786                   if (*reqrp > 0 && r->p < -1)
3787                     {
3788                       Id op = -solv->rules[*reqrp].p;
3789                       if (op > 1 && solv->pool->solvables[op].arch != solv->pool->solvables[-r->p].arch)
3790                         continue;       /* different arch, skip */
3791                     }
3792                   /* prefer assertions */
3793                   *reqrp = rid;
3794                   reqassert = 1;
3795                 }
3796               if (!*reqrp)
3797                 *reqrp = rid;
3798               else if (solv->installed && r->p < 0 && solv->pool->solvables[-r->p].repo == solv->installed && !reqassert)
3799                 {
3800                   /* prefer rules of installed packages */
3801                   *reqrp = rid;
3802                 }
3803             }
3804         }
3805     }
3806   if (!*reqrp && lreqr)
3807     *reqrp = lreqr;
3808   if (!*conrp && lconr)
3809     *conrp = lconr;
3810   if (!*jobrp && ljobr)
3811     *jobrp = ljobr;
3812   if (!*sysrp && lsysr)
3813     *sysrp = lsysr;
3814 }
3815
3816
3817 /*-------------------------------------------------------------------
3818  * 
3819  * find problem rule
3820  *
3821  * search for a rule that describes the problem to the
3822  * user. A pretty hopeless task, actually. We currently
3823  * prefer simple requires.
3824  */
3825
3826 Id
3827 solver_findproblemrule(Solver *solv, Id problem)
3828 {
3829   Id reqr, conr, sysr, jobr;
3830   Id idx = solv->problems.elements[problem - 1];
3831   reqr = conr = sysr = jobr = 0;
3832   findproblemrule_internal(solv, idx, &reqr, &conr, &sysr, &jobr);
3833   if (reqr)
3834     return reqr;
3835   if (conr)
3836     return conr;
3837   if (sysr)
3838     return sysr;
3839   if (jobr)
3840     return jobr;
3841   assert(0);
3842 }
3843
3844
3845 /*-------------------------------------------------------------------
3846  * 
3847  * create reverse obsoletes map for installed solvables
3848  *
3849  * for each installed solvable find which packages with *different* names
3850  * obsolete the solvable.
3851  * this index is used in policy_findupdatepackages if noupdateprovide is set.
3852  */
3853
3854 static void
3855 create_obsolete_index(Solver *solv)
3856 {
3857   Pool *pool = solv->pool;
3858   Solvable *s;
3859   Repo *installed = solv->installed;
3860   Id p, pp, obs, *obsp, *obsoletes, *obsoletes_data;
3861   int i, n;
3862
3863   if (!installed || !installed->nsolvables)
3864     return;
3865   solv->obsoletes = obsoletes = sat_calloc(installed->end - installed->start, sizeof(Id));
3866   for (i = 1; i < pool->nsolvables; i++)
3867     {
3868       s = pool->solvables + i;
3869       if (!s->obsoletes)
3870         continue;
3871       if (!pool_installable(pool, s))
3872         continue;
3873       obsp = s->repo->idarraydata + s->obsoletes;
3874       while ((obs = *obsp++) != 0)
3875         {
3876           FOR_PROVIDES(p, pp, obs)
3877             {
3878               if (pool->solvables[p].repo != installed)
3879                 continue;
3880               if (pool->solvables[p].name == s->name)
3881                 continue;
3882               if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3883                 continue;
3884               obsoletes[p - installed->start]++;
3885             }
3886         }
3887     }
3888   n = 0;
3889   for (i = 0; i < installed->nsolvables; i++)
3890     if (obsoletes[i])
3891       {
3892         n += obsoletes[i] + 1;
3893         obsoletes[i] = n;
3894       }
3895   solv->obsoletes_data = obsoletes_data = sat_calloc(n + 1, sizeof(Id));
3896   POOL_DEBUG(SAT_DEBUG_STATS, "obsoletes data: %d entries\n", n + 1);
3897   for (i = pool->nsolvables - 1; i > 0; i--)
3898     {
3899       s = pool->solvables + i;
3900       if (!s->obsoletes)
3901         continue;
3902       if (!pool_installable(pool, s))
3903         continue;
3904       obsp = s->repo->idarraydata + s->obsoletes;
3905       while ((obs = *obsp++) != 0)
3906         {
3907           FOR_PROVIDES(p, pp, obs)
3908             {
3909               if (pool->solvables[p].repo != installed)
3910                 continue;
3911               if (pool->solvables[p].name == s->name)
3912                 continue;
3913               if (!solv->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p, obs))
3914                 continue;
3915               p -= installed->start;
3916               if (obsoletes_data[obsoletes[p]] != i)
3917                 obsoletes_data[--obsoletes[p]] = i;
3918             }
3919         }
3920     }
3921 }
3922
3923
3924 /*-------------------------------------------------------------------
3925  * 
3926  * remove disabled conflicts
3927  */
3928
3929 static void
3930 removedisabledconflicts(Solver *solv, Queue *removed)
3931 {
3932   Pool *pool = solv->pool;
3933   int i, n;
3934   Id p, why, *dp;
3935   Id new;
3936   Rule *r;
3937   Id *decisionmap = solv->decisionmap;
3938
3939   POOL_DEBUG(SAT_DEBUG_SCHUBI, "removedisabledconflicts\n");
3940   queue_empty(removed);
3941   for (i = 0; i < solv->decisionq.count; i++)
3942     {
3943       p = solv->decisionq.elements[i];
3944       if (p > 0)
3945         continue;
3946       /* a conflict. we never do conflicts on free decisions, so there
3947        * must have been an unit rule */
3948       why = solv->decisionq_why.elements[i];
3949       assert(why > 0);
3950       r = solv->rules + why;
3951       if (r->d < 0 && decisionmap[-p])
3952         {
3953           /* rule is now disabled, remove from decisionmap */
3954           POOL_DEBUG(SAT_DEBUG_SCHUBI, "removing conflict for package %s[%d]\n", solvable2str(pool, pool->solvables - p), -p);
3955           queue_push(removed, -p);
3956           queue_push(removed, decisionmap[-p]);
3957           decisionmap[-p] = 0;
3958         }
3959     }
3960   if (!removed->count)
3961     return;
3962   /* we removed some confliced packages. some of them might still
3963    * be in conflict, so search for unit rules and re-conflict */
3964   new = 0;
3965   for (i = n = 1, r = solv->rules + i; n < solv->nrules; i++, r++, n++)
3966     {
3967       if (i == solv->nrules)
3968         {
3969           i = 1;
3970           r = solv->rules + i;
3971         }
3972       if (r->d < 0)
3973         continue;
3974       if (!r->w2)
3975         {
3976           if (r->p < 0 && !decisionmap[-r->p])
3977             new = r->p;
3978         }
3979       else if (!r->d)
3980         {
3981           /* binary rule */
3982           if (r->p < 0 && decisionmap[-r->p] == 0 && DECISIONMAP_FALSE(r->w2))
3983             new = r->p;
3984           else if (r->w2 < 0 && decisionmap[-r->w2] == 0 && DECISIONMAP_FALSE(r->p))
3985             new = r->w2;
3986         }
3987       else
3988         {
3989           if (r->p < 0 && decisionmap[-r->p] == 0)
3990             new = r->p;
3991           if (new || DECISIONMAP_FALSE(r->p))
3992             {
3993               dp = pool->whatprovidesdata + r->d;
3994               while ((p = *dp++) != 0)
3995                 {
3996                   if (new && p == new)
3997                     continue;
3998                   if (p < 0 && decisionmap[-p] == 0)
3999                     {
4000                       if (new)
4001                         {
4002                           new = 0;
4003                           break;
4004                         }
4005                       new = p;
4006                     }
4007                   else if (!DECISIONMAP_FALSE(p))
4008                     {
4009                       new = 0;
4010                       break;
4011                     }
4012                 }
4013             }
4014         }
4015       if (new)
4016         {
4017           POOL_DEBUG(SAT_DEBUG_SCHUBI, "re-conflicting package %s[%d]\n", solvable2str(pool, pool->solvables - new), -new);
4018           decisionmap[-new] = -1;
4019           new = 0;
4020           n = 0;        /* redo all rules */
4021         }
4022     }
4023 }
4024
4025
4026 /*-------------------------------------------------------------------
4027  *
4028  * weaken solvable dependencies
4029  */
4030
4031 static void
4032 weaken_solvable_deps(Solver *solv, Id p)
4033 {
4034   int i;
4035   Rule *r;
4036
4037   for (i = 1, r = solv->rules + i; i < solv->rpmrules_end; i++, r++)
4038     {
4039       if (r->p != -p)
4040         continue;
4041       if ((r->d == 0 || r->d == -1) && r->w2 < 0)
4042         continue;       /* conflict */
4043       queue_push(&solv->weakruleq, i);
4044     }
4045 }
4046
4047 /********************************************************************/
4048 /* main() */
4049
4050 /*
4051  *
4052  * solve job queue
4053  *
4054  */
4055
4056 void
4057 solver_solve(Solver *solv, Queue *job)
4058 {
4059   Pool *pool = solv->pool;
4060   Repo *installed = solv->installed;
4061   int i;
4062   int oldnrules;
4063   Map addedmap;                /* '1' == have rpm-rules for solvable */
4064   Map installcandidatemap;
4065   Id how, what, select, name, weak, p, pp, d;
4066   Queue q, redoq;
4067   Solvable *s;
4068   int goterase;
4069   Rule *r;
4070   int now, solve_start;
4071
4072   solve_start = sat_timems(0);
4073   POOL_DEBUG(SAT_DEBUG_STATS, "solver started\n");
4074   POOL_DEBUG(SAT_DEBUG_STATS, "fixsystem=%d updatesystem=%d dosplitprovides=%d, noupdateprovide=%d\n", solv->fixsystem, solv->updatesystem, solv->dosplitprovides, solv->noupdateprovide);
4075   POOL_DEBUG(SAT_DEBUG_STATS, "distupgrade=%d distupgrade_removeunsupported=%d\n", solv->distupgrade, solv->distupgrade_removeunsupported);
4076   POOL_DEBUG(SAT_DEBUG_STATS, "allowuninstall=%d, allowdowngrade=%d, allowarchchange=%d, allowvendorchange=%d\n", solv->allowuninstall, solv->allowdowngrade, solv->allowarchchange, solv->allowvendorchange);
4077   POOL_DEBUG(SAT_DEBUG_STATS, "promoteepoch=%d, allowvirtualconflicts=%d, allowselfconflicts=%d\n", pool->promoteepoch, solv->allowvirtualconflicts, solv->allowselfconflicts);
4078   POOL_DEBUG(SAT_DEBUG_STATS, "obsoleteusesprovides=%d, implicitobsoleteusesprovides=%d\n", solv->obsoleteusesprovides, solv->implicitobsoleteusesprovides);
4079   POOL_DEBUG(SAT_DEBUG_STATS, "dontinstallrecommended=%d, ignorealreadyrecommended=%d, dontshowinstalledrecommended=%d\n", solv->dontinstallrecommended, solv->ignorealreadyrecommended, solv->dontshowinstalledrecommended);
4080   /* create whatprovides if not already there */
4081   if (!pool->whatprovides)
4082     pool_createwhatprovides(pool);
4083
4084   /* create obsolete index if needed */
4085   create_obsolete_index(solv);
4086
4087   /*
4088    * create basic rule set of all involved packages
4089    * use addedmap bitmap to make sure we don't create rules twice
4090    *
4091    */
4092
4093   /* create noobsolete map if needed */
4094   for (i = 0; i < job->count; i += 2)
4095     {
4096       how = job->elements[i] & ~SOLVER_WEAK;
4097       if ((how & SOLVER_JOBMASK) != SOLVER_NOOBSOLETES)
4098         continue;
4099       what = job->elements[i + 1];
4100       select = how & SOLVER_SELECTMASK;
4101       if (!solv->noobsoletes.size)
4102         map_init(&solv->noobsoletes, pool->nsolvables);
4103       FOR_JOB_SELECT(p, pp, select, what)
4104         MAPSET(&solv->noobsoletes, p);
4105     }
4106
4107   map_init(&addedmap, pool->nsolvables);
4108   map_init(&installcandidatemap, pool->nsolvables);
4109   queue_init(&q);
4110
4111   /*
4112    * always install our system solvable
4113    */
4114   MAPSET(&addedmap, SYSTEMSOLVABLE);
4115   queue_push(&solv->decisionq, SYSTEMSOLVABLE);
4116   queue_push(&solv->decisionq_why, 0);
4117   solv->decisionmap[SYSTEMSOLVABLE] = 1; /* installed at level '1' */
4118
4119   now = sat_timems(0);
4120   /*
4121    * create rules for all package that could be involved with the solving
4122    * so called: rpm rules
4123    *
4124    */
4125   if (installed)
4126     {
4127       oldnrules = solv->nrules;
4128       POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for installed solvables ***\n");
4129       FOR_REPO_SOLVABLES(installed, p, s)
4130         addrpmrulesforsolvable(solv, s, &addedmap);
4131       POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for installed solvables\n", solv->nrules - oldnrules);
4132       POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for updaters of installed solvables ***\n");
4133       oldnrules = solv->nrules;
4134       FOR_REPO_SOLVABLES(installed, p, s)
4135         addrpmrulesforupdaters(solv, s, &addedmap, 1);
4136       POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for updaters of installed solvables\n", solv->nrules - oldnrules);
4137     }
4138
4139   /*
4140    * create rules for all packages involved in the job
4141    * (to be installed or removed)
4142    */
4143     
4144   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for packages involved with a job ***\n");
4145   oldnrules = solv->nrules;
4146   for (i = 0; i < job->count; i += 2)
4147     {
4148       how = job->elements[i];
4149       what = job->elements[i + 1];
4150       select = how & SOLVER_SELECTMASK;
4151
4152       switch (how & SOLVER_JOBMASK)
4153         {
4154         case SOLVER_INSTALL:
4155           FOR_JOB_SELECT(p, pp, select, what)
4156             {
4157               MAPSET(&installcandidatemap, p);
4158               addrpmrulesforsolvable(solv, pool->solvables + p, &addedmap);
4159             }
4160           break;
4161         case SOLVER_UPDATE:
4162           /* FIXME: semantics? */
4163           FOR_JOB_SELECT(p, pp, select, what)
4164             addrpmrulesforupdaters(solv, pool->solvables + what, &addedmap, 0);
4165           break;
4166         }
4167     }
4168   POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules for packages involved in a job\n", solv->nrules - oldnrules);
4169
4170   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** create rpm rules for recommended/suggested packages ***\n");
4171
4172   oldnrules = solv->nrules;
4173     
4174     /*
4175      * add rules for suggests, enhances
4176      */
4177   addrpmrulesforweak(solv, &addedmap);
4178   POOL_DEBUG(SAT_DEBUG_STATS, "added %d rpm rules because of weak dependencies\n", solv->nrules - oldnrules);
4179
4180   IF_POOLDEBUG (SAT_DEBUG_STATS)
4181     {
4182       int possible = 0, installable = 0;
4183       for (i = 1; i < pool->nsolvables; i++)
4184         {
4185           if (pool_installable(pool, pool->solvables + i))
4186             installable++;
4187           if (MAPTST(&addedmap, i))
4188             possible++;
4189         }
4190       POOL_DEBUG(SAT_DEBUG_STATS, "%d of %d installable solvables considered for solving\n", possible, installable);
4191     }
4192
4193   /*
4194    * first pass done, we now have all the rpm rules we need.
4195    * unify existing rules before going over all job rules and
4196    * policy rules.
4197    * at this point the system is always solvable,
4198    * as an empty system (remove all packages) is a valid solution
4199    */
4200
4201   unifyrules(solv);                               /* remove duplicate rpm rules */
4202
4203   solv->rpmrules_end = solv->nrules;              /* mark end of rpm rules */
4204
4205   solv->directdecisions = solv->decisionq.count;
4206   POOL_DEBUG(SAT_DEBUG_STATS, "rpm rule memory usage: %d K\n", solv->nrules * (int)sizeof(Rule) / 1024);
4207   POOL_DEBUG(SAT_DEBUG_STATS, "decisions so far: %d\n", solv->decisionq.count);
4208   POOL_DEBUG(SAT_DEBUG_STATS, "rpm rule creation took %d ms\n", sat_timems(now));
4209
4210   /*
4211    * create feature rules
4212    * 
4213    * foreach installed:
4214    *   create assertion (keep installed, if no update available)
4215    *   or
4216    *   create update rule (A|update1(A)|update2(A)|...)
4217    * 
4218    * those are used later on to keep a version of the installed packages in
4219    * best effort mode
4220    */
4221     
4222   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add feature rules ***\n");
4223   solv->featurerules = solv->nrules;              /* mark start of feature rules */
4224   if (installed)
4225     {
4226         /* foreach possibly installed solvable */
4227       for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
4228         {
4229           if (s->repo != installed)
4230             {
4231               addrule(solv, 0, 0);      /* create dummy rule */
4232               continue;
4233             }
4234           addupdaterule(solv, s, 1);    /* allow s to be updated */
4235         }
4236         /*
4237          * assert one rule per installed solvable,
4238          * either an assertion (A)
4239          * or a possible update (A|update1(A)|update2(A)|...)
4240          */
4241       assert(solv->nrules - solv->featurerules == installed->end - installed->start);
4242     }
4243   solv->featurerules_end = solv->nrules;
4244
4245     /*
4246      * Add update rules for installed solvables
4247      * 
4248      * almost identical to feature rules
4249      * except that downgrades/archchanges/vendorchanges are not allowed
4250      */
4251     
4252   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add update rules ***\n");
4253   solv->updaterules = solv->nrules;
4254
4255   if (installed)
4256     { /* foreach installed solvables */
4257       /* we create all update rules, but disable some later on depending on the job */
4258       for (i = installed->start, s = pool->solvables + i; i < installed->end; i++, s++)
4259         {
4260           Rule *sr;
4261
4262           if (s->repo != installed)
4263             {
4264               addrule(solv, 0, 0);      /* create dummy rule */
4265               continue;
4266             }
4267           addupdaterule(solv, s, 0);    /* allowall = 0: downgrades not allowed */
4268             /*
4269              * check for and remove duplicate
4270              */
4271           r = solv->rules + solv->nrules - 1;           /* r: update rule */
4272           sr = r - (installed->end - installed->start); /* sr: feature rule */
4273           /* it's orphaned if there is no feature rule or the feature rule
4274            * consists just of the installed package */
4275           if (!sr->p || (sr->p == i && !sr->d && !sr->w2))
4276             queue_push(&solv->orphaned, i);
4277           if (!r->p)
4278             {
4279               assert(solv->distupgrade && !sr->p);
4280               continue;
4281             }
4282           unifyrules_sortcmp_data = pool;
4283           if (!unifyrules_sortcmp(r, sr))
4284             {
4285               /* identical rule, kill unneeded rule */
4286               if (solv->allowuninstall)
4287                 {
4288                   /* keep feature rule, make it weak */
4289                   memset(r, 0, sizeof(*r));
4290                   queue_push(&solv->weakruleq, sr - solv->rules);
4291                 }
4292               else
4293                 {
4294                   /* keep update rule */
4295                   memset(sr, 0, sizeof(*sr));
4296                 }
4297             }
4298           else if (solv->allowuninstall)
4299             {
4300               /* make both feature and update rule weak */
4301               queue_push(&solv->weakruleq, r - solv->rules);
4302               queue_push(&solv->weakruleq, sr - solv->rules);
4303             }
4304           else
4305             disablerule(solv, sr);
4306         }
4307       /* consistency check: we added a rule for _every_ installed solvable */
4308       assert(solv->nrules - solv->updaterules == installed->end - installed->start);
4309     }
4310   solv->updaterules_end = solv->nrules;
4311
4312
4313   /*
4314    * now add all job rules
4315    */
4316
4317   POOL_DEBUG(SAT_DEBUG_SCHUBI, "*** Add JOB rules ***\n");
4318
4319   solv->jobrules = solv->nrules;
4320   for (i = 0; i < job->count; i += 2)
4321     {
4322       oldnrules = solv->nrules;
4323
4324       how = job->elements[i];
4325       what = job->elements[i + 1];
4326       weak = how & SOLVER_WEAK;
4327       select = how & SOLVER_SELECTMASK;
4328       switch (how & SOLVER_JOBMASK)
4329         {
4330         case SOLVER_INSTALL:
4331           POOL_DEBUG(SAT_DEBUG_JOB, "job: %sinstall %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4332           if (select == SOLVER_SOLVABLE)
4333             {
4334               p = what;
4335               d = 0;
4336             }
4337           else
4338             {
4339               queue_empty(&q);
4340               FOR_JOB_SELECT(p, pp, select, what)
4341                 queue_push(&q, p);
4342               if (!q.count)
4343                 {
4344                   /* no candidate found, make this an impossible rule */
4345                   queue_push(&q, -SYSTEMSOLVABLE);
4346                 }
4347               p = queue_shift(&q);      /* get first candidate */
4348               d = !q.count ? 0 : pool_queuetowhatprovides(pool, &q);    /* internalize */
4349             }
4350           addrule(solv, p, d);          /* add install rule */
4351           queue_push(&solv->ruletojob, i);
4352           if (weak)
4353             queue_push(&solv->weakruleq, solv->nrules - 1);
4354           break;
4355         case SOLVER_ERASE:
4356           POOL_DEBUG(SAT_DEBUG_JOB, "job: %serase %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4357           if (select == SOLVER_SOLVABLE && solv->installed && pool->solvables[what].repo == solv->installed)
4358             {
4359               /* special case for "erase a specific solvable": we also
4360                * erase all other solvables with that name, so that they
4361                * don't get picked up as replacement */
4362               name = pool->solvables[what].name;
4363               FOR_PROVIDES(p, pp, name)
4364                 {
4365                   if (p == what)
4366                     continue;
4367                   s = pool->solvables + p;
4368                   if (s->name != name)
4369                     continue;
4370                   /* keep other versions installed */
4371                   if (s->repo == solv->installed)
4372                     continue;
4373                   /* keep installcandidates of other jobs */
4374                   if (MAPTST(&installcandidatemap, p))
4375                     continue;
4376                   addrule(solv, -p, 0);                 /* remove by Id */
4377                   queue_push(&solv->ruletojob, i);
4378                   if (weak)
4379                     queue_push(&solv->weakruleq, solv->nrules - 1);
4380                 }
4381             }
4382           FOR_JOB_SELECT(p, pp, select, what)
4383             {
4384               addrule(solv, -p, 0);
4385               queue_push(&solv->ruletojob, i);
4386               if (weak)
4387                 queue_push(&solv->weakruleq, solv->nrules - 1);
4388             }
4389           break;
4390
4391         case SOLVER_UPDATE:
4392           POOL_DEBUG(SAT_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4393           if (select != SOLVER_SOLVABLE)
4394             break;
4395           s = pool->solvables + what;
4396           POOL_DEBUG(SAT_DEBUG_JOB, "job: %supdate %s\n", weak ? "weak " : "", solvable2str(pool, s));
4397           addupdaterule(solv, s, 0);
4398           queue_push(&solv->ruletojob, i);
4399           if (weak)
4400             queue_push(&solv->weakruleq, solv->nrules - 1);
4401           break;
4402         case SOLVER_WEAKENDEPS:
4403           POOL_DEBUG(SAT_DEBUG_JOB, "job: %sweaken deps %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4404           if (select != SOLVER_SOLVABLE)
4405             break;
4406           s = pool->solvables + what;
4407           weaken_solvable_deps(solv, what);
4408           break;
4409         case SOLVER_NOOBSOLETES:
4410           POOL_DEBUG(SAT_DEBUG_JOB, "job: %sno obsolete %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4411           break;
4412         case SOLVER_LOCK:
4413           POOL_DEBUG(SAT_DEBUG_JOB, "job: %slock %s\n", weak ? "weak " : "", solver_select2str(solv, select, what));
4414           FOR_JOB_SELECT(p, pp, select, what)
4415             {
4416               s = pool->solvables + p;
4417               if (installed && s->repo == installed)
4418                 addrule(solv, p, 0);
4419               else
4420                 addrule(solv, -p, 0);
4421               queue_push(&solv->ruletojob, i);
4422               if (weak)
4423                 queue_push(&solv->weakruleq, solv->nrules - 1);
4424             }
4425           break;
4426         default:
4427           POOL_DEBUG(SAT_DEBUG_JOB, "job: unknown job\n");
4428           break;
4429         }
4430         
4431         /*
4432          * debug
4433          */
4434         
4435       IF_POOLDEBUG (SAT_DEBUG_JOB)
4436         {
4437           int j;
4438           if (solv->nrules == oldnrules)
4439             POOL_DEBUG(SAT_DEBUG_JOB, " - no rule created\n");
4440           for (j = oldnrules; j < solv->nrules; j++)
4441             {
4442               POOL_DEBUG(SAT_DEBUG_JOB, " - job ");
4443               solver_printrule(solv, SAT_DEBUG_JOB, solv->rules + j);
4444             }
4445         }
4446     }
4447   assert(solv->ruletojob.count == solv->nrules - solv->jobrules);
4448   solv->jobrules_end = solv->nrules;
4449
4450     /* all rules created
4451      * --------------------------------------------------------------
4452      * prepare for solving
4453      */
4454     
4455   /* free unneeded memory */
4456   map_free(&addedmap);
4457   map_free(&installcandidatemap);
4458   queue_free(&q);
4459
4460   /* create weak map */
4461   map_init(&solv->weakrulemap, solv->nrules);
4462   for (i = 0; i < solv->weakruleq.count; i++)
4463     {
4464       p = solv->weakruleq.elements[i];
4465       MAPSET(&solv->weakrulemap, p);
4466     }
4467
4468   /* all new rules are learnt after this point */
4469   solv->learntrules = solv->nrules;
4470
4471   /* create assertion index. it is only used to speed up
4472    * makeruledecsions() a bit */
4473   for (i = 1, r = solv->rules + i; i < solv->nrules; i++, r++)
4474     if (r->p && !r->w2 && (r->d == 0 || r->d == -1))
4475       queue_push(&solv->ruleassertions, i);
4476
4477   /* disable update rules that conflict with our job */
4478   disableupdaterules(solv, job, -1);
4479
4480   /* make decisions based on job/update assertions */
4481   makeruledecisions(solv);
4482
4483   /* create watches chains */
4484   makewatches(solv);
4485
4486   POOL_DEBUG(SAT_DEBUG_STATS, "problems so far: %d\n", solv->problems.count);
4487
4488   /*
4489    * ********************************************
4490    * solve!
4491    * ********************************************
4492    */
4493     
4494   now = sat_timems(0);
4495   run_solver(solv, 1, solv->dontinstallrecommended ? 0 : 1);
4496   POOL_DEBUG(SAT_DEBUG_STATS, "solver took %d ms\n", sat_timems(now));
4497
4498   queue_init(&redoq);
4499   goterase = 0;
4500   /* disable all erase jobs (including weak "keep uninstalled" rules) */
4501   for (i = solv->jobrules, r = solv->rules + i; i < solv->learntrules; i++, r++)
4502     {
4503       if (r->d < 0)     /* disabled ? */
4504         continue;
4505       if (r->p > 0)     /* install job? */
4506         continue;
4507       disablerule(solv, r);
4508       goterase++;
4509     }
4510   
4511   if (goterase)
4512     {
4513       enabledisablelearntrules(solv);
4514       removedisabledconflicts(solv, &redoq);
4515     }
4516
4517   /*
4518    * find recommended packages
4519    */
4520     
4521   /* if redoq.count == 0 we already found all recommended in the
4522    * solver run */
4523   if (redoq.count || solv->dontinstallrecommended || !solv->dontshowinstalledrecommended || solv->ignorealreadyrecommended)
4524     {
4525       Id rec, *recp, p, pp;
4526
4527       /* create map of all recommened packages */
4528       solv->recommends_index = -1;
4529       MAPZERO(&solv->recommendsmap);
4530       for (i = 0; i < solv->decisionq.count; i++)
4531         {
4532           p = solv->decisionq.elements[i];
4533           if (p < 0)
4534             continue;
4535           s = pool->solvables + p;
4536           if (s->recommends)
4537             {
4538               recp = s->repo->idarraydata + s->recommends;
4539               while ((rec = *recp++) != 0)
4540                 {
4541                   FOR_PROVIDES(p, pp, rec)
4542                     if (solv->decisionmap[p] > 0)
4543                       break;
4544                   if (p)
4545                     {
4546                       if (!solv->dontshowinstalledrecommended)
4547                         {
4548                           FOR_PROVIDES(p, pp, rec)
4549                             if (solv->decisionmap[p] > 0)
4550                               MAPSET(&solv->recommendsmap, p);
4551                         }
4552                       continue; /* p != 0: already fulfilled */
4553                     }
4554                   FOR_PROVIDES(p, pp, rec)
4555                     MAPSET(&solv->recommendsmap, p);
4556                 }
4557             }
4558         }
4559       for (i = 1; i < pool->nsolvables; i++)
4560         {
4561           if (solv->decisionmap[i] < 0)
4562             continue;
4563           if (solv->decisionmap[i] > 0 && solv->dontshowinstalledrecommended)
4564             continue;
4565           s = pool->solvables + i;
4566           if (!MAPTST(&solv->recommendsmap, i))
4567             {
4568               if (!s->supplements)
4569                 continue;
4570               if (!pool_installable(pool, s))
4571                 continue;
4572               if (!solver_is_supplementing(solv, s))
4573                 continue;
4574             }
4575           if (solv->dontinstallrecommended)
4576             queue_push(&solv->recommendations, i);
4577           else
4578             queue_pushunique(&solv->recommendations, i);
4579         }
4580       /* we use MODE_SUGGEST here so that repo prio is ignored */
4581       policy_filter_unwanted(solv, &solv->recommendations, POLICY_MODE_SUGGEST);
4582     }
4583
4584   /*
4585    * find suggested packages
4586    */
4587     
4588   if (1)
4589     {
4590       Id sug, *sugp, p, pp;
4591
4592       /* create map of all suggests that are still open */
4593       solv->recommends_index = -1;
4594       MAPZERO(&solv->suggestsmap);
4595       for (i = 0; i < solv->decisionq.count; i++)
4596         {
4597           p = solv->decisionq.elements[i];
4598           if (p < 0)
4599             continue;
4600           s = pool->solvables + p;
4601           if (s->suggests)
4602             {
4603               sugp = s->repo->idarraydata + s->suggests;
4604               while ((sug = *sugp++) != 0)
4605                 {
4606                   FOR_PROVIDES(p, pp, sug)
4607                     if (solv->decisionmap[p] > 0)
4608                       break;
4609                   if (p)
4610                     {
4611                       if (!solv->dontshowinstalledrecommended)
4612                         {
4613                           FOR_PROVIDES(p, pp, sug)
4614                             if (solv->decisionmap[p] > 0)
4615                               MAPSET(&solv->suggestsmap, p);
4616                         }
4617                       continue; /* already fulfilled */
4618                     }
4619                   FOR_PROVIDES(p, pp, sug)
4620                     MAPSET(&solv->suggestsmap, p);
4621                 }
4622             }
4623         }
4624       for (i = 1; i < pool->nsolvables; i++)
4625         {
4626           if (solv->decisionmap[i] < 0)
4627             continue;
4628           if (solv->decisionmap[i] > 0 && solv->dontshowinstalledrecommended)
4629             continue;
4630           s = pool->solvables + i;
4631           if (!MAPTST(&solv->suggestsmap, i))
4632             {
4633               if (!s->enhances)
4634                 continue;
4635               if (!pool_installable(pool, s))
4636                 continue;
4637               if (!solver_is_enhancing(solv, s))
4638                 continue;
4639             }
4640           queue_push(&solv->suggestions, i);
4641         }
4642       policy_filter_unwanted(solv, &solv->suggestions, POLICY_MODE_SUGGEST);
4643     }
4644
4645   if (redoq.count)
4646     {
4647       /* restore decisionmap */
4648       for (i = 0; i < redoq.count; i += 2)
4649         solv->decisionmap[redoq.elements[i]] = redoq.elements[i + 1];
4650     }
4651
4652     /*
4653      * if unsolvable, prepare solutions
4654      */
4655
4656   if (solv->problems.count)
4657     {
4658       int recocount = solv->recommendations.count;
4659       solv->recommendations.count = 0;  /* so that revert() doesn't mess with it */
4660       queue_empty(&redoq);
4661       for (i = 0; i < solv->decisionq.count; i++)
4662         {
4663           Id p = solv->decisionq.elements[i];
4664           queue_push(&redoq, p);
4665           queue_push(&redoq, solv->decisionq_why.elements[i]);
4666           queue_push(&redoq, solv->decisionmap[p > 0 ? p : -p]);
4667         }
4668       problems_to_solutions(solv, job);
4669       memset(solv->decisionmap, 0, pool->nsolvables * sizeof(Id));
4670       queue_empty(&solv->decisionq);
4671       queue_empty(&solv->decisionq_why);
4672       for (i = 0; i < redoq.count; i += 3)
4673         {
4674           Id p = redoq.elements[i];
4675           queue_push(&solv->decisionq, p);
4676           queue_push(&solv->decisionq_why, redoq.elements[i + 1]);
4677           solv->decisionmap[p > 0 ? p : -p] = redoq.elements[i + 2];
4678         }
4679       solv->recommendations.count = recocount;
4680     }
4681
4682   queue_free(&redoq);
4683   POOL_DEBUG(SAT_DEBUG_STATS, "final solver statistics: %d learned rules, %d unsolvable\n", solv->stats_learned, solv->stats_unsolvable);
4684   POOL_DEBUG(SAT_DEBUG_STATS, "solver_solve took %d ms\n", sat_timems(solve_start));
4685 }
4686
4687 /***********************************************************************/
4688 /* disk usage computations */
4689
4690 /*-------------------------------------------------------------------
4691  * 
4692  * calculate DU changes
4693  */
4694
4695 void
4696 solver_calc_duchanges(Solver *solv, DUChanges *mps, int nmps)
4697 {
4698   Map installedmap;
4699
4700   solver_create_state_maps(solv, &installedmap, 0);
4701   pool_calc_duchanges(solv->pool, &installedmap, mps, nmps);
4702   map_free(&installedmap);
4703 }
4704
4705
4706 /*-------------------------------------------------------------------
4707  * 
4708  * calculate changes in install size
4709  */
4710
4711 int
4712 solver_calc_installsizechange(Solver *solv)
4713 {
4714   Map installedmap;
4715   int change;
4716
4717   solver_create_state_maps(solv, &installedmap, 0);
4718   change = pool_calc_installsizechange(solv->pool, &installedmap);
4719   map_free(&installedmap);
4720   return change;
4721 }
4722
4723 #define FIND_INVOLVED_DEBUG 0
4724 void
4725 solver_find_involved(Solver *solv, Queue *installedq, Solvable *ts, Queue *q)
4726 {
4727   Pool *pool = solv->pool;
4728   Map im;
4729   Map installedm;
4730   Solvable *s;
4731   Queue iq;
4732   Queue installedq_internal;
4733   Id tp, ip, p, pp, req, *reqp, sup, *supp;
4734   int i, count;
4735
4736   tp = ts - pool->solvables;
4737   queue_init(&iq);
4738   queue_init(&installedq_internal);
4739   map_init(&im, pool->nsolvables);
4740   map_init(&installedm, pool->nsolvables);
4741
4742   if (!installedq)
4743     {
4744       installedq = &installedq_internal;
4745       if (solv->installed)
4746         {
4747           for (ip = solv->installed->start; ip < solv->installed->end; ip++)
4748             {
4749               s = pool->solvables + ip;
4750               if (s->repo != solv->installed)
4751                 continue;
4752               queue_push(installedq, ip);
4753             }
4754         }
4755     }
4756   for (i = 0; i < installedq->count; i++)
4757     {
4758       ip = installedq->elements[i];
4759       MAPSET(&installedm, ip);
4760       MAPSET(&im, ip);
4761     }
4762
4763   queue_push(&iq, ts - pool->solvables);
4764   while (iq.count)
4765     {
4766       ip = queue_shift(&iq);
4767       if (!MAPTST(&im, ip))
4768         continue;
4769       if (!MAPTST(&installedm, ip))
4770         continue;
4771       MAPCLR(&im, ip);
4772       s = pool->solvables + ip;
4773 #if FIND_INVOLVED_DEBUG
4774       printf("hello %s\n", solvable2str(pool, s));
4775 #endif
4776       if (s->requires)
4777         {
4778           reqp = s->repo->idarraydata + s->requires;
4779           while ((req = *reqp++) != 0)
4780             {
4781               if (req == SOLVABLE_PREREQMARKER)
4782                 continue;
4783               /* count number of installed packages that match */
4784               count = 0;
4785               FOR_PROVIDES(p, pp, req)
4786                 if (MAPTST(&installedm, p))
4787                   count++;
4788               if (count > 1)
4789                 continue;
4790               FOR_PROVIDES(p, pp, req)
4791                 {
4792                   if (MAPTST(&im, p))
4793                     {
4794 #if FIND_INVOLVED_DEBUG
4795                       printf("%s requires %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
4796 #endif
4797                       queue_push(&iq, p);
4798                     }
4799                 }
4800             }
4801         }
4802       if (s->recommends)
4803         {
4804           reqp = s->repo->idarraydata + s->recommends;
4805           while ((req = *reqp++) != 0)
4806             {
4807               count = 0;
4808               FOR_PROVIDES(p, pp, req)
4809                 if (MAPTST(&installedm, p))
4810                   count++;
4811               if (count > 1)
4812                 continue;
4813               FOR_PROVIDES(p, pp, req)
4814                 {
4815                   if (MAPTST(&im, p))
4816                     {
4817 #if FIND_INVOLVED_DEBUG
4818                       printf("%s recommends %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
4819 #endif
4820                       queue_push(&iq, p);
4821                     }
4822                 }
4823             }
4824         }
4825       if (!iq.count)
4826         {
4827           /* supplements pass */
4828           for (i = 0; i < installedq->count; i++)
4829             {
4830               ip = installedq->elements[i];
4831               s = pool->solvables + ip;
4832               if (!s->supplements)
4833                 continue;
4834               if (!MAPTST(&im, ip))
4835                 continue;
4836               supp = s->repo->idarraydata + s->supplements;
4837               while ((sup = *supp++) != 0)
4838                 if (!dep_possible(solv, sup, &im) && dep_possible(solv, sup, &installedm))
4839                   break;
4840               /* no longer supplemented, also erase */
4841               if (sup)
4842                 {
4843 #if FIND_INVOLVED_DEBUG
4844                   printf("%s supplemented\n", solvable2str(pool, pool->solvables + ip));
4845 #endif
4846                   queue_push(&iq, ip);
4847                 }
4848             }
4849         }
4850     }
4851
4852   for (i = 0; i < installedq->count; i++)
4853     {
4854       ip = installedq->elements[i];
4855       if (MAPTST(&im, ip))
4856         queue_push(&iq, ip);
4857     }
4858
4859   while (iq.count)
4860     {
4861       ip = queue_shift(&iq);
4862       if (!MAPTST(&installedm, ip))
4863         continue;
4864       s = pool->solvables + ip;
4865 #if FIND_INVOLVED_DEBUG
4866       printf("bye %s\n", solvable2str(pool, s));
4867 #endif
4868       if (s->requires)
4869         {
4870           reqp = s->repo->idarraydata + s->requires;
4871           while ((req = *reqp++) != 0)
4872             {
4873               FOR_PROVIDES(p, pp, req)
4874                 {
4875                   if (!MAPTST(&im, p))
4876                     {
4877                       if (p == tp)
4878                         continue;
4879 #if FIND_INVOLVED_DEBUG
4880                       printf("%s requires %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
4881 #endif
4882                       MAPSET(&im, p);
4883                       queue_push(&iq, p);
4884                     }
4885                 }
4886             }
4887         }
4888       if (s->recommends)
4889         {
4890           reqp = s->repo->idarraydata + s->recommends;
4891           while ((req = *reqp++) != 0)
4892             {
4893               FOR_PROVIDES(p, pp, req)
4894                 {
4895                   if (!MAPTST(&im, p))
4896                     {
4897                       if (p == tp)
4898                         continue;
4899 #if FIND_INVOLVED_DEBUG
4900                       printf("%s recommends %s\n", solvable2str(pool, pool->solvables + ip), solvable2str(pool, pool->solvables + p));
4901 #endif
4902                       MAPSET(&im, p);
4903                       queue_push(&iq, p);
4904                     }
4905                 }
4906             }
4907         }
4908       if (!iq.count)
4909         {
4910           /* supplements pass */
4911           for (i = 0; i < installedq->count; i++)
4912             {
4913               ip = installedq->elements[i];
4914               if (ip == tp)
4915                 continue;
4916               s = pool->solvables + ip;
4917               if (!s->supplements)
4918                 continue;
4919               if (MAPTST(&im, ip))
4920                 continue;
4921               supp = s->repo->idarraydata + s->supplements;
4922               while ((sup = *supp++) != 0)
4923                 if (dep_possible(solv, sup, &im))
4924                   break;
4925               if (sup)
4926                 {
4927 #if FIND_INVOLVED_DEBUG
4928                   printf("%s supplemented\n", solvable2str(pool, pool->solvables + ip));
4929 #endif
4930                   MAPSET(&im, ip);
4931                   queue_push(&iq, ip);
4932                 }
4933             }
4934         }
4935     }
4936     
4937   queue_free(&iq);
4938
4939   /* convert map into result */
4940   for (i = 0; i < installedq->count; i++)
4941     {
4942       ip = installedq->elements[i];
4943       if (MAPTST(&im, ip))
4944         continue;
4945       if (ip == ts - pool->solvables)
4946         continue;
4947       queue_push(q, ip);
4948     }
4949   map_free(&im);
4950   map_free(&installedm);
4951   queue_free(&installedq_internal);
4952 }
4953
4954 /* EOF */