-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
executable file
·30 lines (27 loc) · 757 Bytes
/
main.cpp
File metadata and controls
executable file
·30 lines (27 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "iostream"
//#include "referVector.h"
#include "myVector.h"
#include "myList.h"
#include "vector"
#include "memory"
#include "fstream"
#include "Dpll.h"
#include "chrono"
#include "CnfParser.h"
#include "regex"
#include "SudokuSolver.h"
#include "Interface.h"
//#include "algorithm"
using namespace std;
int main(void) {
// auto satSolver = *new SatSolver;
// auto cnfParser = *new CnfParser;
// auto sudokuSolver = *new SudokuSolver;
// Formula formula = cnfParser.readCnf("Sudoku.cnf");
//// cout << formula.Size()<< endl;
// Solution solution = satSolver.Solve(formula, cnfParser.symbolNum);
// cnfParser.outputSolution(satSolver.status, solution, satSolver.time);
App app = *new App;
app.Start();
return 0;
}