mirror of
https://github.com/Z3Prover/z3
synced 2025-08-15 15:25:26 +00:00
29 lines
436 B
C++
29 lines
436 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
aig_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Tactic for minimizing circuits using AIGs.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-10-24
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef AIG_TACTIC_H_
|
|
#define AIG_TACTIC_H_
|
|
|
|
#include "util/params.h"
|
|
class tactic;
|
|
|
|
tactic * mk_aig_tactic(params_ref const & p = params_ref());
|
|
/*
|
|
ADD_TACTIC("aig", "simplify Boolean structure using AIGs.", "mk_aig_tactic()")
|
|
*/
|
|
#endif
|