mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
30 lines
514 B
C++
30 lines
514 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
propagate_values_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Propagate values using equalities of the form (= t v) where v is a value,
|
|
and atoms t and (not t)
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2011-12-28.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _PROPAGATE_VALUES_TACTIC_H_
|
|
#define _PROPAGATE_VALUES_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_propagate_values_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|