mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
26 lines
335 B
C++
26 lines
335 B
C++
/*++
|
|
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
|