3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-16 07:45:27 +00:00

Reorganizing the code

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-20 22:44:27 -07:00
parent aa949693d4
commit 6bc591c67e
15 changed files with 4 additions and 2 deletions

27
src/ast/has_free_vars.h Normal file
View file

@ -0,0 +1,27 @@
/*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
has_free_vars.h
Abstract:
<abstract>
Author:
Leonardo de Moura (leonardo) 2008-06-23.
Revision History:
--*/
#ifndef _HAS_FREE_VARS_H_
#define _HAS_FREE_VARS_H_
class expr;
bool has_free_vars(expr * n);
#endif /* _HAS_FREE_VARS_H_ */