mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
27 lines
311 B
C++
27 lines
311 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
st_cmds.h
|
|
|
|
Abstract:
|
|
|
|
Commands for testing strategies.
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2011-04-27
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _ST_CMD_H_
|
|
#define _ST_CMD_H_
|
|
|
|
class cmd_context;
|
|
|
|
void install_st_cmds(cmd_context & ctx);
|
|
|
|
#endif
|