mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 16:25:48 +00:00
27 lines
400 B
C
27 lines
400 B
C
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
smtlib_frontend.h
|
|
|
|
Abstract:
|
|
|
|
Smtlib frontend.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2006-11-2.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef SMTLIB_FRONTEND_H_
|
|
#define SMTLIB_FRONTEND_H_
|
|
|
|
unsigned read_smtlib_file(char const * benchmark_file);
|
|
unsigned read_smtlib2_commands(char const * command_file);
|
|
|
|
#endif /* SMTLIB_FRONTEND_H_ */
|
|
|
|
|