summaryrefslogtreecommitdiff
path: root/src/proof/dimacs_printer.h
blob: d11adea3f1e08d513d6afe0ad0e54de050434621 (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*********************                                                        */
/*! \file dimacs_printer.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Alex Ozdemir
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2018 by the authors listed in the file AUTHORS
 ** in the top-level source directory) and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief DIMACS SAT Problem Format
 **
 ** Defines serialization for SAT problems as DIMACS
 **/

#include "cvc4_private.h"

#ifndef __CVC4__PROOF__DIMACS_PRINTER_H
#define __CVC4__PROOF__DIMACS_PRINTER_H

#include <iosfwd>
#include <memory>

#include "proof/clause_id.h"
#include "prop/sat_solver_types.h"

namespace CVC4 {
namespace proof {

/**
 * Prints the literal as a (+) or (-) int
 * Not operator<< b/c that represents negation as ~
 *
 * @param o where to print
 * @param l the literal to print
 *
 * @return the original stream
 */
std::ostream& textOut(std::ostream& o, const prop::SatLiteral& l);

/**
 * Prints the clause as a space-separated list of ints
 * Not operator<< b/c that represents literal negation as ~
 *
 * @param o where to print
 * @param c the clause to print
 *
 * @return the original stream
 */
std::ostream& textOut(std::ostream& o, const prop::SatClause& c);

/**
 * Prints a CNF formula in DIMACS format
 *
 * @param o where to print to
 * @param usedClauses the CNF formula
 */
void printDimacs(
    std::ostream& o,
    const std::vector<std::pair<ClauseId, prop::SatClause>>& usedClauses);

}  // namespace proof
}  // namespace CVC4

#endif  // __CVC4__PROOF__DIMACS_PRINTER_H
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback