3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-15 23:35:26 +00:00

Reorganizing the code

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-21 14:16:35 -07:00
parent 3003ee5cb6
commit dcf778a287
120 changed files with 10 additions and 4 deletions

27
src/aig/aig_tactic.h Normal file
View file

@ -0,0 +1,27 @@
/*++
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"params.h"
class tactic;
tactic * mk_aig_tactic(params_ref const & p = params_ref());
#endif