mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
23 lines
319 B
C
23 lines
319 B
C
/*++
|
|
Copyright (c) 2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
opt_frontend.h
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2014-10-10.
|
|
|
|
--*/
|
|
#ifndef OPT_FRONTEND_H_
|
|
#define OPT_FRONTEND_H_
|
|
|
|
enum opt_format { opb_t, wcnf_t, lp_t };
|
|
|
|
unsigned parse_opt(char const* file_name, opt_format f);
|
|
|
|
#endif /* OPT_FRONTEND_H_ */
|
|
|
|
|