1. Homepage
  2. Programming
  3. LMU Projekt 1: SAT Solving

LMU Projekt 1: SAT Solving

Engage in a Conversation
LMUSAT SolvingMiniSatC++PythonJavaN-Queens

Problem set 1: SAT Solving
CourseNana.COM

Exercises are meant to be solved collaboratively during the tutorial. Projects have to be handed in. CourseNana.COM

Exercise 1 :
Setting Up and Running a SAT Solver:
CourseNana.COM

  1. (a)  Step 1: Install MiniSat using your package manager (e.g., apt on Debian/Ubuntu, brew on macOS, or download and compile from the official MiniSat website http://minisat.se/). CourseNana.COM

  2. (b)  Step 2: Create a text file (e.g., example.cnf) with a SAT problem in DIMACS CNF format. DIMACS CNF format specifies the number of variables, number of clauses, and the clauses themselves. Here’s an example problem: CourseNana.COM

  3. (c)  Step 3: Run MiniSat on the problem with the following command: minisat example.cnf output.txt CourseNana.COM

  4. (d)  Step 4: Interpret the Results
    1. If the problem is satisfiable, MiniSat will create an output.txt file with a line like:
    CourseNana.COM

    s SATISFIABLE CourseNana.COM

    2. If the problem is unsatisfiable, MiniSat will output: CourseNana.COM

    s UNSATISFIABLE CourseNana.COM

    3. If satisfiable, you can find the assignment for the variables in the solution. They will be listed under the v line in the output.txt file, like: CourseNana.COM

    v 1 -2 -3 CourseNana.COM

  5. (e)  Step 5: Run MiniSat on different problems to get a better understanding of its usage. CourseNana.COM

  6. (f)  Step 6 (Optional): You can repeat the above steps using CaDiCaL instead of MiniSat by CourseNana.COM

    installing CaDiCaL and running it in a similar manner. CourseNana.COM

This exercise should help you get started with setting up and running a SAT solver like MiniSat or CaDiCaL. Experiment with different SAT problems to gain more experience with these solvers. CourseNana.COM

Exercise 2 : CourseNana.COM

Encoding the N-Queens Puzzle into SAT Formulas. In this exercise, you will learn how to encode the N-Queens puzzle into SAT formulas. The N-Queens problem involves placing N chess queens on an NxN chessboard, so that no two queens threaten each other. This exercise will focus on encoding the 8-Queens problem into SAT formulas. In chess, queens can move horizontally, vertically, and diagonally. CourseNana.COM

c Sample SAT Problem
p cnf 3 3
1 -2 3 0
-1 2 0

-1 -2 -3 0 CourseNana.COM

Figure 1: 4-queens CourseNana.COM

  1. (a)  Define a set of Boolean variables to represent the placement of queens on the chessboard. For an 8x8 board, you’ll need 64 variables. You can name them, for example, Qxy, where x and y represent the row and column, respectively. CourseNana.COM

  2. (b)  Formulate constraints to ensure that no two queens can threaten each other. These con- straints can include: CourseNana.COM

    1. One queen in each row: For each row, there must be exactly one queen placed.
    2. One queen in each column: For each column, there must be exactly one queen placed. 3. Diagonal constraints: No two queens should threaten each other diagonally.
    CourseNana.COM

  3. (c)  Encode Constraints into SAT Formulas CourseNana.COM

    1. For each constraint, create SAT formulas that represent it using the Boolean variables defined before. For example, the constraint One queen in each row can be encoded as a formula: CourseNana.COM

      For each row i, you should have a clause like (Qi1 Qi2 ... Qi8), which ensures at least one queen is in that row. CourseNana.COM

      You should also have clauses ensuring that no two queens are in the same row, like (¬Qi1 ∨ ¬Qi2) (¬Qi1 ∨ ¬Qi3), and so on. CourseNana.COM

    2. Similarly, create formulas for "One queen in each column" and "Diagonal constraints." Diagonal constraints are a bit more complex and might require extra variables and clauses. CourseNana.COM

  4. (d)  Install a SAT solver like MiniSat or CaDiCaL (as in the previous exercise). Then, Create a DIMACS CNF file containing the SAT formulas generated before. CourseNana.COM

  5. (e)  Run the SAT solver on the DIMACS CNF file. If the solver returns SATISFIABLE, it means a valid solution has been found. You can extract the queen placements from the solver’s output. CourseNana.COM

  6. (f)  You can experiment with different board sizes (e.g., 4-Queens, 5-Queens) by modifying the number of variables and constraints in your SAT encoding. CourseNana.COM

    Figure 2: Puzzle 1 Figure 3: Puzzle 1 solved CourseNana.COM

Project 1: The goal of this project is to encode the Bridges puzzle into SAT formulas. Each puzzle is based on a rectangular arrangement of islands where the number in each island tells how many bridges are connected to it. The object is to connect all islands according to the number of bridges so: CourseNana.COM

1. There are no more than two bridges in the same direction. CourseNana.COM

2. Bridges can only be vertical or horizontal and are not allowed to cross islands or other bridges. CourseNana.COM

3. When completed, all bridges are interconnected enabling passage from any island to another. You can find more information and play Bridges here: Bridges Puzzle. CourseNana.COM

We will use the following format to represent puzzles as inputs to the program: The first line contains n, the number of rows and columns of the puzzle, respectively. The following grid rep- resents an example puzzle input. A dot . indicates an empty cell, while a number marks an island with the number of bridges that can leave the island cell. The puzzle in figures 2 and 3 correspond to the following input: CourseNana.COM

7 1.3..2. ....... 4.5...2 ....... ..6..2. 2...... ..2.1.2 CourseNana.COM

This project consists of four parts. The first part is necessary to pass, while the other parts will get you a better grade. Keep in mind that quality is more important than quantity, though. CourseNana.COM

  1. (a)  Compulsory part: Implement a program that reads puzzles in the above format, converts them into a SAT instance, runs a SAT solver to find a solution, and displays the result graphically. A set of sample inputs are attached to the problem set, more can be generated from the template puzzles on the website linked above. We will verify your program against different inputs as well and the provided ones are only meant to help you test your program. CourseNana.COM

  2. (b)  Bonus part: How well does you encoding scale with increasing grid sizes? Measure its performance and devise a more efficient encoding. CourseNana.COM

  3. (c)  Bonus part: Add a feature to enter new puzzles manually via the GUI. CourseNana.COM

  4. (d)  Bonus part: Add a feature to generate new puzzles automatically and store them in the above format. Ensure that the puzzles generated have a unique solution. CourseNana.COM

Solutions can be submitted via Moodle until Thursday, 23. November 2023, 14:00 in groups of 1-3 students. The groups can be specified on Moodle. On the courses website, under section "Groups" you can find a link leading to the group selection. There you can form groups of 1-3 students. CourseNana.COM

The programming languages C/C++, Rust, Java, Python and Haskell may be used. Other languages might be permitted as well, just ask us beforehand. We recommend using C++, because particularly for the later projects, a competitive performance is difficult to attain in other languages. CourseNana.COM

Projects will be stored in GitLab. Make sure that you have access with your cip account and if not follow the instructions listed here to gain access. In a new GitLab repository, named after your group number, upload your project files and also add a short README file, explaining how to build/run your program. You are also instructed to upload your generated DIMACS files for the solved instances of the puzzle to the repository. When you are ready to submit your project, please fork your repository and share the forked version with us. CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
LMU代写,SAT Solving代写,MiniSat代写,C++代写,Python代写,Java代写,N-Queens代写,LMU代编,SAT Solving代编,MiniSat代编,C++代编,Python代编,Java代编,N-Queens代编,LMU代考,SAT Solving代考,MiniSat代考,C++代考,Python代考,Java代考,N-Queens代考,LMUhelp,SAT Solvinghelp,MiniSathelp,C++help,Pythonhelp,Javahelp,N-Queenshelp,LMU作业代写,SAT Solving作业代写,MiniSat作业代写,C++作业代写,Python作业代写,Java作业代写,N-Queens作业代写,LMU编程代写,SAT Solving编程代写,MiniSat编程代写,C++编程代写,Python编程代写,Java编程代写,N-Queens编程代写,LMUprogramming help,SAT Solvingprogramming help,MiniSatprogramming help,C++programming help,Pythonprogramming help,Javaprogramming help,N-Queensprogramming help,LMUassignment help,SAT Solvingassignment help,MiniSatassignment help,C++assignment help,Pythonassignment help,Javaassignment help,N-Queensassignment help,LMUsolution,SAT Solvingsolution,MiniSatsolution,C++solution,Pythonsolution,Javasolution,N-Queenssolution,