3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-27 00:18:45 +00:00

initial opt commands

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-10-14 17:08:24 -07:00
parent 0a964c324e
commit 726f66a77c
5 changed files with 183 additions and 2 deletions

28
src/opt/opt_cmds.h Normal file
View file

@ -0,0 +1,28 @@
/*++
Copyright (c) 2013 Microsoft Corporation
Module Name:
opt_cmds.h
Abstract:
Commands for optimization benchmarks
Author:
Anh-Phan Dung (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