multi criteria optimization in asp and its application to
play

Multi-Criteria Optimization in ASP and its Application to Linux - PowerPoint PPT Presentation

Multi-Criteria Optimization in ASP and its Application to Linux Package Configuration Martin Gebser Roland Kaminski Benjamin Kaufmann Torsten Schaub Institut f ur Informatik, Universit at Potsdam June 18, 2011 Outline 1 Introduction 2


  1. Multi-Criteria Optimization in ASP and its Application to Linux Package Configuration Martin Gebser Roland Kaminski Benjamin Kaufmann Torsten Schaub Institut f¨ ur Informatik, Universit¨ at Potsdam June 18, 2011

  2. Outline 1 Introduction 2 Package Configuration 3 Multi-Criteria Optimization 4 Experimental Results 5 Discussion

  3. Outline 1 Introduction 2 Package Configuration 3 Multi-Criteria Optimization 4 Experimental Results 5 Discussion

  4. Motivation Maintaining packages in modern Linux distributions is difficult Complex dependencies Large package repositories Ever changing in view of software development Challenges for package configuration tools Large problem size Soft (and hard) constraints Multiple optimization criteria Contributions of this work Package configuration via Answer Set Programming (ASP) Uniform modeling by encoding plus instances Solving techniques for multi-criteria optimization 2/12

  5. Outline 1 Introduction 2 Package Configuration 3 Multi-Criteria Optimization 4 Experimental Results 5 Discussion

  6. Overview aspcud Tool for solving package configuration problems aspcud Preprocessor CUDF Grounder Solver Solution Encoding Preprocessor Converts CUDF input to ASP instance Encoding First-order problem specification Grounder Instantiates first-order variables Solver Searches for (optimal) answer sets 3/12

  7. Overview aspcud Tool for solving package configuration problems aspcud Preprocessor CUDF Grounder Solver Solution Encoding Preprocessor Converts CUDF input to ASP instance Encoding First-order problem specification Grounder Instantiates first-order variables Solver Searches for (optimal) answer sets 3/12

  8. Instance Format Installable Packages: glibc-1 libc-1 libc-2 package(libc,1). package(libc,2). c 1 c 2 c 3 package(glibc,1). gpg-1 gpg-2 gpg-3 package(gpg,1). package(gpg,2). c 5 c 4 package(gpg,3). package(kpgp,1). kpgp-1 4/12

  9. Instance Format Clauses: glibc-1 libc-1 libc-2 satisfies(libc,1,c1). satisfies(libc,1,c2). c 1 c 2 c 3 satisfies(libc,2,c1). satisfies(glibc,1,c3). gpg-1 gpg-2 gpg-3 satisfies(gpg,1,c5). c 5 c 4 satisfies(gpg,2,c5). satisfies(gpg,3,c5). kpgp-1 satisfies(kpgp,1,c4). 4/12

  10. Instance Format Package Dependencies: glibc-1 libc-1 libc-2 depends(gpg,1,c1). depends(gpg,2,c2). c 1 c 2 c 3 gpg-1 gpg-2 gpg-3 c 5 c 4 kpgp-1 4/12

  11. Instance Format Package Conflicts: glibc-1 libc-1 libc-2 conflicts(libc,2,c2). c 1 c 2 c 3 conflicts(gpg,3,c3). gpg-1 gpg-2 gpg-3 c 5 c 4 kpgp-1 4/12

  12. Instance Format Package Recommendations: glibc-1 libc-1 libc-2 recommends(libc,2,c4). c 1 c 2 c 3 gpg-1 gpg-2 gpg-3 c 5 c 4 kpgp-1 4/12

  13. Instance Format Installed Packages: glibc-1 libc-1 libc-2 installed(libc,1). c 1 c 2 c 3 installed(glibc,1). gpg-1 gpg-2 gpg-3 c 5 c 4 kpgp-1 4/12

  14. Instance Format Requests: glibc-1 libc-1 libc-2 requested(c5). c 1 c 2 c 3 gpg-1 gpg-2 gpg-3 c 5 c 4 kpgp-1 4/12

  15. Instance Format Optimization Criteria: glibc-1 libc-1 libc-2 utility(delete,-1). utility(change,-2). c 1 c 2 c 3 gpg-1 gpg-2 gpg-3 c 5 c 4 kpgp-1 4/12

  16. Overview aspcud Tool for solving package configuration problems aspcud Preprocessor CUDF Grounder Solver Solution Encoding Preprocessor Converts CUDF input to ASP instance Encoding First-order problem specification Grounder Instantiates first-order variables Solver Searches for (optimal) answer sets 5/12

  17. Hard Constraints % choose packages to install { install(N,V) } :- package(N,V). % derive required clauses exclude(C) :- install(N,V), conflicts(N,V,C). include(C) :- install(N,V), depends(N,V,C). % derive satisfied clauses satisfy(C) :- install(N,V), satisfies(N,V,C). % assert required clauses to be (un)satisfied :- exclude(C), satisfy(C). :- include(C), not satisfy(C). :- request(C), not satisfy(C). 6/12

  18. Hard Constraints % choose packages to install { install(N,V) } :- package(N,V). % derive required clauses exclude(C) :- install(N,V), conflicts(N,V,C). include(C) :- install(N,V), depends(N,V,C). % derive satisfied clauses satisfy(C) :- install(N,V), satisfies(N,V,C). % assert required clauses to be (un)satisfied :- exclude(C), satisfy(C). :- include(C), not satisfy(C). :- request(C), not satisfy(C). 6/12

  19. Hard Constraints % choose packages to install { install(N,V) } :- package(N,V). % derive required clauses exclude(C) :- install(N,V), conflicts(N,V,C). include(C) :- install(N,V), depends(N,V,C). % derive satisfied clauses satisfy(C) :- install(N,V), satisfies(N,V,C). % assert required clauses to be (un)satisfied :- exclude(C), satisfy(C). :- include(C), not satisfy(C). :- request(C), not satisfy(C). 6/12

  20. Soft Constraints % auxiliary definitions install(N) :- install(N,V). installed(N) :- installed(N,V). % derive optimization criteria violations violate(newpkg,N) :- utility(newpkg,L), install(N), not installed(N). violate(delete,N) :- utility(delete,L), installed(N), not install(N). % similar for other criteria ... % impose soft constraints #minimize[ violate(U,T) = 1 @ -L : utility(U,L) : L < 0 ]. #maximize[ violate(U,T) = 1 @ L : utility(U,L) : L > 0 ]. 7/12

  21. Soft Constraints % auxiliary definitions install(N) :- install(N,V). installed(N) :- installed(N,V). % derive optimization criteria violations violate(newpkg,N) :- utility(newpkg,L), install(N), not installed(N). violate(delete,N) :- utility(delete,L), installed(N), not install(N). % similar for other criteria ... % impose soft constraints #minimize[ violate(U,T) = 1 @ -L : utility(U,L) : L < 0 ]. #maximize[ violate(U,T) = 1 @ L : utility(U,L) : L > 0 ]. 7/12

  22. Outline 1 Introduction 2 Package Configuration 3 Multi-Criteria Optimization 4 Experimental Results 5 Discussion

  23. Optimization Algorithm aspcud Preprocessor CUDF Grounder Solver Solution Encoding Package configuration problems are often under-constrained Lexicographical optimization algorithm enumerates too much Alternative Approach Optimize criteria in the order of significance Decrease upper bounds (costs) w.r.t. witnesses Proceed to next criterion upon unsatisfiability Design Goals Incorporate into conflict-driven solving Keep as much learned information as possible Build upon standard features like assumptions 8/12

  24. 1 Model ← ⊥ 2 foreach Criterion do Lower ← 0 3 Upper ← eval ( Criterion , Model ) 4 while Lower < Upper do 5 add (( Criterion ∪ �∼ Aux = −∞� ) < Upper ) 6 M ← solve ( { Aux } ) 7 if M � = ⊥ then 8 Model ← M 9 Upper ← eval ( Criterion , Model ) 10 simplify ( { Aux } ) 11 else 12 if Model = ⊥ then return ⊥ 13 Lower ← Upper 14 simplify ( {∼ Aux } ) 15 16 return M

  25. Outline 1 Introduction 2 Package Configuration 3 Multi-Criteria Optimization 4 Experimental Results 5 Discussion

  26. Setup Benchmarks 117 instances from the 3rd MISC-live run Optimization criteria paranoid, trendy user1 (-notuptodate, -removed, -changed) user2 (-changed, -removed, -unsat recommends, -new) user3 (-changed, -notuptodate, -removed, -new) Optimization algorithms clasp 0 : lexicographical optimization clasp 1 : hierarchical optimization clasp 2 : hierarchical optimization with exponential steps Optimization heuristics clasp 0 i : no optimization-specific heuristic clasp 1 i : falsify literals to minimize upon branching clasp 2 i : falsify literals to minimize until conflict clasp 3 i : combines clasp 1 i and clasp 2 i Search restarts clasp j i -r: perform restart after each model (mandatory with clasp 2 i and clasp 3 i ) Scoring like in MISC-live run 10/12

  27. Setup Benchmarks 117 instances from the 3rd MISC-live run Optimization criteria paranoid, trendy user1 (-notuptodate, -removed, -changed) user2 (-changed, -removed, -unsat recommends, -new) user3 (-changed, -notuptodate, -removed, -new) Optimization algorithms clasp 0 : lexicographical optimization clasp 1 : hierarchical optimization clasp 2 : hierarchical optimization with exponential steps Optimization heuristics clasp 0 i : no optimization-specific heuristic clasp 1 i : falsify literals to minimize upon branching clasp 2 i : falsify literals to minimize until conflict clasp 3 i : combines clasp 1 i and clasp 2 i Search restarts clasp j i -r: perform restart after each model (mandatory with clasp 2 i and clasp 3 i ) Scoring like in MISC-live run 10/12

  28. Setup Benchmarks 117 instances from the 3rd MISC-live run Optimization criteria paranoid, trendy user1 (-notuptodate, -removed, -changed) user2 (-changed, -removed, -unsat recommends, -new) user3 (-changed, -notuptodate, -removed, -new) Optimization algorithms clasp 0 : lexicographical optimization clasp 1 : hierarchical optimization clasp 2 : hierarchical optimization with exponential steps Optimization heuristics clasp 0 i : no optimization-specific heuristic clasp 1 i : falsify literals to minimize upon branching clasp 2 i : falsify literals to minimize until conflict clasp 3 i : combines clasp 1 i and clasp 2 i Search restarts clasp j i -r: perform restart after each model (mandatory with clasp 2 i and clasp 3 i ) Scoring like in MISC-live run 10/12

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend