mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-03 21:09:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			537 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			537 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:
 | 
						|
 | 
						|
--*/
 | 
						|
#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
 |