mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 09:20:22 +00:00
20 lines
277 B
C
20 lines
277 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_
|
|
|
|
unsigned parse_opt(char const* file_name, bool is_wcnf);
|
|
|
|
#endif /* OPT_FRONTEND_H_ */
|
|
|
|
|