]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/algorithms.h
implement external solver calling for upgrade and dist-upgrade, too
[apt.git] / apt-pkg / algorithms.h
index cf4a98c4f95818b069336362ba0c178e5997d8f1..582cbc527b1c9b4e7d252fae526318319118a0bb 100644 (file)
@@ -105,10 +105,13 @@ class pkgProblemResolver                                          /*{{{*/
 
    void MakeScores();
    bool DoUpgrade(pkgCache::PkgIterator Pkg);
+
+   bool ResolveInternal(bool const BrokenFix = false);
+   bool ResolveByKeepInternal();
    
    public:
    
-   inline void Protect(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] |= Protected;};
+   inline void Protect(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] |= Protected; Cache.MarkProtected(Pkg);};
    inline void Remove(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] |= ToRemove;};
    inline void Clear(pkgCache::PkgIterator Pkg) {Flags[Pkg->ID] &= ~(Protected | ToRemove);};