mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
26 lines
371 B
C
26 lines
371 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, front_end_params & front_end_params);
|
|
|
|
#endif /* _DATALOG_FRONTEND_H_ */
|
|
|