mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-03 21:09:11 +00:00 
			
		
		
		
	Whitespace
This commit is contained in:
		
							parent
							
								
									3e0926fb82
								
							
						
					
					
						commit
						31496b6625
					
				
					 1 changed files with 7 additions and 7 deletions
				
			
		| 
						 | 
					@ -34,22 +34,22 @@ class quasi_macros {
 | 
				
			||||||
    macro_manager &           m_macro_manager;
 | 
					    macro_manager &           m_macro_manager;
 | 
				
			||||||
    simplifier &              m_simplifier;
 | 
					    simplifier &              m_simplifier;
 | 
				
			||||||
    occurrences_map           m_occurrences;
 | 
					    occurrences_map           m_occurrences;
 | 
				
			||||||
    ptr_vector<expr>          m_todo;    
 | 
					    ptr_vector<expr>          m_todo;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    vector<symbol>            m_new_var_names;
 | 
					    vector<symbol>            m_new_var_names;
 | 
				
			||||||
    expr_ref_vector           m_new_vars;
 | 
					    expr_ref_vector           m_new_vars;
 | 
				
			||||||
    expr_ref_vector           m_new_eqs;
 | 
					    expr_ref_vector           m_new_eqs;
 | 
				
			||||||
    sort_ref_vector           m_new_qsorts;
 | 
					    sort_ref_vector           m_new_qsorts;
 | 
				
			||||||
    std::stringstream         m_new_name;    
 | 
					    std::stringstream         m_new_name;
 | 
				
			||||||
    expr_mark                 m_visited_once;
 | 
					    expr_mark                 m_visited_once;
 | 
				
			||||||
    expr_mark                 m_visited_more;
 | 
					    expr_mark                 m_visited_more;
 | 
				
			||||||
    
 | 
					
 | 
				
			||||||
    bool is_unique(func_decl * f) const;
 | 
					    bool is_unique(func_decl * f) const;
 | 
				
			||||||
    bool is_non_ground_uninterp(expr const * e) const;
 | 
					    bool is_non_ground_uninterp(expr const * e) const;
 | 
				
			||||||
    bool fully_depends_on(app * a, quantifier * q) const;    
 | 
					    bool fully_depends_on(app * a, quantifier * q) const;
 | 
				
			||||||
    bool depends_on(expr * e, func_decl * f) const;
 | 
					    bool depends_on(expr * e, func_decl * f) const;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    bool is_quasi_macro(expr * e, app_ref & a, expr_ref &v) const;        
 | 
					    bool is_quasi_macro(expr * e, app_ref & a, expr_ref &v) const;
 | 
				
			||||||
    void quasi_macro_to_macro(quantifier * q, app * a, expr * t, quantifier_ref & macro);
 | 
					    void quasi_macro_to_macro(quantifier * q, app * a, expr * t, quantifier_ref & macro);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    void find_occurrences(expr * e);
 | 
					    void find_occurrences(expr * e);
 | 
				
			||||||
| 
						 | 
					@ -59,11 +59,11 @@ class quasi_macros {
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    quasi_macros(ast_manager & m, macro_manager & mm, simplifier & s);
 | 
					    quasi_macros(ast_manager & m, macro_manager & mm, simplifier & s);
 | 
				
			||||||
    ~quasi_macros();
 | 
					    ~quasi_macros();
 | 
				
			||||||
    
 | 
					
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
       \brief Find pure function macros and apply them.
 | 
					       \brief Find pure function macros and apply them.
 | 
				
			||||||
    */
 | 
					    */
 | 
				
			||||||
    bool operator()(unsigned n, expr * const * exprs, proof * const * prs, expr_ref_vector & new_exprs, proof_ref_vector & new_prs);    
 | 
					    bool operator()(unsigned n, expr * const * exprs, proof * const * prs, expr_ref_vector & new_exprs, proof_ref_vector & new_prs);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue