automatic evaluation of reductions between np complete
play

Automatic Evaluation of Reductions between NP-Complete Problems - PowerPoint PPT Presentation

Automatic Evaluation of Reductions between NP-Complete Problems (Tool Paper) Carles Creus, Pau Fern andez, Guillem Godoy Universitat Polit` ecnica de Catalunya July 16, 2014 Carles Creus, Pau Fern andez, Guillem Godoy Automatic


  1. Automatic Evaluation of Reductions between NP-Complete Problems (Tool Paper) Carles Creus, Pau Fern´ andez, Guillem Godoy Universitat Polit` ecnica de Catalunya July 16, 2014 Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  2. The RACSO Online Judge ( http://racso.lsi.upc.edu/juez ) We have developed an Online Judge for Theory of Computation. The users are intended to be students of this subject. Each kind of problem needs a specific evaluator. The evaluators give a verdict for the submitted solution proposal (ACCEPT or REJECT, with a counterexample in the latter case). The desirable execution time is ≤ 5 seconds. Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  3. Evaluator for Reductions between NP-Complete Problems Recall that, given two problems P 1 , P 2 , a polynomial time reduction R : P 1 ≤ P 2 is a polynomial-time transformation from instances I 1 of P 1 into instances I 2 of P 2 holding I 1 ∈ P 1 ⇔ I 2 = R ( I 1 ) ∈ P 2 . If P 1 is NP-hard, then P 2 is NP-hard. We have exercises describing NP-complete problems P 1 , P 2 that ask for R : P 1 ≤ P 2 . The evaluator tries to determine whether R is correct or not. Recall that this problem is undecidable. Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  4. Evaluator for Reductions between NP-Complete Problems How to check correctness of R ? The evaluator has a set of tests that are inputs I 1 of P 1 and two additional reductions R 1 : P 1 ≤ SAT , R 2 : P 2 ≤ SAT provided by the problem setter. For each I 1 the evaluator computes: R I 1 − → I 2 ↓ R 1 ↓ R 2 S 1 S 2 and checks equivalence of S 1 , S 2 using a SAT-solver (MiniSat). Problems: 1. The set of tests may not be exhaustive enough. 2. The composition R 2 ( R ( I )) produces big SAT instances. 3. Is polynomiality of the reduction tested? The problem setter is responsible for 1. For item 2 we need small instances. For item 3 we need big instances. Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  5. The REDNP programming language Our solution: we define a programming language called REDNP with the following advantages: ◮ Defining several reductions between NP-complete problems is easy. ◮ Using intermediate structured memory is not possible. Thus, performing an exhaustive search over an exponential number of combinations is difficult. Hence, we can use a set of small instances. Polynomiality is not 100% assured, but, in principle, only reasonable submissions will be accepted. With REDNP, the only structured data is the input and the output. Each exercise defines them according to P 1 , P 2 . Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  6. Example: Directed-Hamiltonian ≤ Undirected-Hamiltonian Problem: Directed-Hamiltonian-Circuit Input: A directed graph G . Question: Is there a Hamiltonian cycle in G ? Problem: Undirected-Hamiltonian-Circuit Input: An undirected graph G . Question: Is there a Hamiltonian cycle in G ? � { u in , u out , u ′ | u ∈ V } , � R : G = � V , E � �→ { ( u in , u ′ ) , ( u ′ , u out ) | u ∈ V }∪ { ( u out , v in ) | ( u , v ) ∈ E } a in a out a b a ′ b in b ′ b out c in c out c c ′ Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  7. Example: Directed-Hamiltonian ≤ Undirected-Hamiltonian In this part of the talk the reduction is described with REDNP inside the answer block text of the corresponding problem of the RACSO online judge as follows: main { for (i=1;i<=in.numnodes;i++) { out.edges.push="in{i}","aux{i}"; out.edges.push="out{i}","aux{i}"; } foreach (edge;in.edges) out.edges.push="out{edge[0]}","in{edge[1]}"; } Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  8. Features of REDNP for defining reductions to SAT REDNP has the insertsat function predefined, that makes the insertion of clauses from an arbitrary propositional formula over and, or, not, = > , < =, < = > by using the Tseitin transformation. Also, we can use atmost, atleast, exactly inside insertsat. Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  9. Example: Vertex-Cover ≤ SAT In this part of the talk the reduction is described with REDNP inside the answer block text of the corresponding problem of the RACSO online judge as follows: main { foreach (edge;in.edges) insertsat("atleast 1 chosen{edge[0]} chosen{edge[1]}"); formula="exactly {in.k}"; for (i=1;i<=in.numnodes;i++) formula=formula+" chosen{i}"; insertsat(formula); } Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  10. Performance of composition of reductions Directed Hamiltonian Circuit ≤ Undirected Hamiltonian Circuit ≤ SAT (matrix-like graph) 1000 time MiniSAT (in seconds) 100 10 Standard DHC ≤ UHC ≤ SAT Reductions 1 Student DHC ≤ UHC ≤ SAT Reductions Standard DHC ≤ SAT Reduction 0.1 0.01 1x1 1x2 1x3 1x4 1x5 2x2 2x3 2x4 2x5 3x3 3x4 3x5 4x4 4x5 5x5 matrix dimension Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  11. Performance of composition of reductions Vertex Cover ≤ Dominating Set ≤ SAT (matrix-like graph) 100 time MiniSAT (in seconds) 10 dim = 12x12 dim = 11x11 dim = 10x10 dim = 9x9 1 dim = 8x8 dim = 12x12 dim = 11x11 dim = 10x10 0.1 dim = 9x9 dim = 8x8 0.01 0 0.2 0.4 0.6 0.8 1 k / dim Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

  12. Conclusion and further work ◮ Small conceptually difficult instances produce big difficult SAT instances through R 2 ◦ R . ◮ Practice shows that REDNP is confortable enough to formalize reductions (students are familiar with C-like programming languages). ◮ Very useful: The judge can be used as a support-learning tool and for evaluating practical exams. Students of our subject (not including NP-complete problems) are motivated and work hard (more than 200 exercises solved per person). ◮ More useful: There are global exams in the judge. Professors can participate or collaborate in preparing exams. ◮ The SAT instances obtained by composing reductions could be added as benchmarks in SAT-competitions. ◮ Alternative methods for evaluating reductions? ◮ Alternative programming languages for defining reductions (easily and forbiding exhaustive exponential searches)? Carles Creus, Pau Fern´ andez, Guillem Godoy Automatic Evaluation of Reductions between NP-Complete Problems

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