Adding checks to avoid further processing on UNSAT Problems
[satune.git] / src / Backend / solver_interface.h
1 /*      Copyright (c) 2015 Regents of the University of California
2  *
3  *      Author: Brian Demsky <bdemsky@uci.edu>
4  *
5  *      This program is free software; you can redistribute it and/or
6  *      modify it under the terms of the GNU General Public License
7  *      version 2 as published by the Free Software Foundation.
8  */
9
10 #ifndef SOLVER_INTERFACE_H
11 #define SOLVER_INTERFACE_H
12
13 #define IS_OUT_FD 3
14
15 enum SolverResult {IS_UNSAT=0, IS_SAT=1, IS_INDETER=2, IS_FREEZE=3, IS_RUNSOLVER=4};
16
17 #define IS_BUFFERSIZE 1024
18
19 #endif