3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 01:05:47 +00:00

split muz_qe into two directories

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-08-28 12:08:47 -07:00
parent d795792304
commit 137339a2e1
174 changed files with 242 additions and 174 deletions

25
src/qe/qe_cmd.h Normal file
View file

@ -0,0 +1,25 @@
/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
qe_cmd.h
Abstract:
SMT2 front-end 'qe' command.
Author:
Nikolaj Bjorner (nbjorner) 2011-01-11
Notes:
--*/
#ifndef _QE_CMD_H_
#define _QE_CMD_H_
class cmd_context;
void install_qe_cmd(cmd_context & ctx, char const * cmd_name = "elim-quantifiers");
#endif