mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 14:55:45 +00:00
26 lines
399 B
C++
26 lines
399 B
C++
/*++
|
|
Copyright (c) 2019 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
display_dimacs.h
|
|
|
|
Abstract:
|
|
|
|
Display expressions in DIMACS format.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner0 2019-01-24
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef DISPLAY_DIMACS_H_
|
|
#define DISPLAY_DIMACS_H_
|
|
|
|
#include "ast.h"
|
|
|
|
std::ostream& display_dimacs(std::ostream& out, expr_ref_vector const& fmls);
|
|
|
|
#endif /* DISPLAY_DIMACS_H__ */
|