3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-20 10:10:21 +00:00
z3/src/opt/opt_cmds.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

28 lines
322 B
C++

/*++
Copyright (c) 2013 Microsoft Corporation
Module Name:
opt_cmds.h
Abstract:
Commands for optimization benchmarks
Author:
Anh-Dung Phan (t-anphan) 2013-10-14
Notes:
--*/
#ifndef OPT_CMDS_H_
#define OPT_CMDS_H_
#include "ast.h"
class cmd_context;
void install_opt_cmds(cmd_context & ctx);
#endif