mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 08:45:47 +00:00
25 lines
330 B
C
25 lines
330 B
C
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dimacs_frontend.h
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2011-07-26.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef DIMACS_FRONTEND_H_
|
|
#define DIMACS_FRONTEND_H_
|
|
|
|
unsigned read_dimacs(char const * benchmark_file);
|
|
|
|
#endif /* DIMACS_FRONTEND_H_ */
|
|
|