3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

checkpoint

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-21 18:32:35 -07:00
parent 39d6628be9
commit f6c89ba1d3
34 changed files with 9 additions and 9 deletions

View file

@ -1,30 +0,0 @@
/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
echo_tactic.h
Abstract:
Tactic and probe for dumping data.
Author:
Leonardo (leonardo) 2012-10-20
Notes:
--*/
#ifndef _ECHO_TACTICS_H_
#define _ECHO_TACTICS_H_
class cmd_context;
class tactic;
class probe;
tactic * mk_echo_tactic(cmd_context & ctx, char const * msg, bool newline = true);
// Display the value returned by p in the diagnostic_stream
tactic * mk_probe_value_tactic(cmd_context & ctx, char const * msg, probe * p, bool newline = true);
#endif