aboutsummaryrefslogtreecommitdiffstats
path: root/libs/minisat/Dimacs.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-11-26 07:16:06 +0100
committerGitHub <noreply@github.com>2017-11-26 07:16:06 +0100
commitc22d0e1f53f0b1f3127f30a2fcb638a32cf9c58b (patch)
tree76702d368bb4945886b847cfbe0709d2549cc545 /libs/minisat/Dimacs.h
parent8dd59bd72e47fffc9b7ab6cc91c76903ada363ff (diff)
parent1b231b442c576bacc5d25a35a5846f896394e2f1 (diff)
downloadyosys-c22d0e1f53f0b1f3127f30a2fcb638a32cf9c58b.tar.gz
yosys-c22d0e1f53f0b1f3127f30a2fcb638a32cf9c58b.tar.bz2
yosys-c22d0e1f53f0b1f3127f30a2fcb638a32cf9c58b.zip
Merge pull request #460 from mithro/g3-fixes
Bunch of small fixes
Diffstat (limited to 'libs/minisat/Dimacs.h')
-rw-r--r--libs/minisat/Dimacs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/minisat/Dimacs.h b/libs/minisat/Dimacs.h
index ccfa1c013..61b9d3ca0 100644
--- a/libs/minisat/Dimacs.h
+++ b/libs/minisat/Dimacs.h
@@ -76,10 +76,10 @@ static void parse_DIMACS_main(B& in, Solver& S, bool strictp = false) {
// Inserts problem into solver.
//
-template<class Solver>
-static void parse_DIMACS(gzFile input_stream, Solver& S, bool strictp = false) {
- StreamBuffer in(input_stream);
- parse_DIMACS_main(in, S, strictp); }
+//template<class Solver>
+//static void parse_DIMACS(gzFile input_stream, Solver& S, bool strictp = false) {
+// StreamBuffer in(input_stream);
+// parse_DIMACS_main(in, S, strictp); }
//=================================================================================================
}