3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 09:50:23 +00:00

add optimization front-ends directly to the shell

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-10-10 14:23:58 -07:00
parent d1a2e61220
commit f651145b4c
5 changed files with 379 additions and 2 deletions

20
src/shell/opt_frontend.h Normal file
View file

@ -0,0 +1,20 @@
/*++
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_ */