mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 03:07:07 +00:00
28 lines
317 B
C++
28 lines
317 B
C++
/*++
|
|
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_ */
|
|
|