mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
29 lines
352 B
C++
29 lines
352 B
C++
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
well_sorted.h
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2007-12-29.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _WELL_SORTED_H_
|
|
#define _WELL_SORTED_H_
|
|
|
|
class ast_manager;
|
|
class expr;
|
|
|
|
bool is_well_sorted(ast_manager const & m, expr * n);
|
|
|
|
#endif /* _WELL_SORTED_H_ */
|
|
|