3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-23 06:13:40 +00:00
z3/src/tactic/goal_util.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

25 lines
285 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
goal_util.h
Abstract:
goal goodies.
Author:
Leonardo de Moura (leonardo) 2012-01-03.
Revision History:
--*/
#ifndef GOAL_UTIL_H_
#define GOAL_UTIL_H_
class goal;
bool has_term_ite(goal const & g);
#endif