mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
28 lines
495 B
C++
28 lines
495 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
echo_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Tactic and probe for dumping data.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-10-20
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
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);
|
|
|