mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
27 lines
349 B
C++
27 lines
349 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
smt2_extra_cmds.h
|
|
|
|
Abstract:
|
|
|
|
Additional SMT-specific commands.
|
|
|
|
Author:
|
|
|
|
Christoph (cwinter) 2017-01-16
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef SMT2_EXTRA_CMDS_H_
|
|
#define SMT2_EXTRA_CMDS_H_
|
|
|
|
class cmd_context;
|
|
|
|
void install_smt2_extra_cmds(cmd_context & ctx);
|
|
|
|
#endif /* SMT2_EXTRA_CMDS_H_ */
|