mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
26 lines
350 B
C++
26 lines
350 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
simplify_cmd.h
|
|
|
|
Abstract:
|
|
SMT2 front-end 'simplify' command.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-04-20
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _SIMPLIFY_CMD_H_
|
|
#define _SIMPLIFY_CMD_H_
|
|
|
|
class cmd_context;
|
|
|
|
void install_simplify_cmd(cmd_context & ctx, char const * cmd_name = "simplify");
|
|
|
|
#endif
|