mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
26 lines
247 B
C++
26 lines
247 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:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
class expr;
|
|
|
|
bool has_free_vars(expr * n);
|
|
|
|
|