Painless
A framework to ease parallelization of sequential CDCL SAT solvers
Loading...
Searching...
No Matches
parse.hpp
1#ifndef _parse_hpp_INCLUDED
2#define _parse_hpp_INCLUDED
3#include <vector>
4
5char*
6read_int(char* p, int* i);
7char*
8read_until_new_line(char* p);
9void
10readfile(const char* file, int* orivars, int* oriclauses, std::vector<std::vector<int>>& clause);
11
12#endif