mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
26 lines
287 B
C++
26 lines
287 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
|