3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00
z3/src/ast/well_sorted.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

28 lines
349 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_ */