mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
29 lines
416 B
C++
29 lines
416 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
symmetry_reduce.h
|
|
|
|
Abstract:
|
|
|
|
Add symmetry breaking predicates to assertion sets.
|
|
|
|
Author:
|
|
|
|
Nikolaj (nbjorner) 2011-05-31
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _SYMMETRY_REDUCE_TACTIC_H_
|
|
#define _SYMMETRY_REDUCE_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_symmetry_reduce_tactic(ast_manager & m, params_ref const & p);
|
|
|
|
#endif
|