mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
28 lines
352 B
C
28 lines
352 B
C
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
inj_axiom.h
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2008-06-23.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _INJ_AXIOM_H_
|
|
#define _INJ_AXIOM_H_
|
|
|
|
#include"ast.h"
|
|
|
|
bool simplify_inj_axiom(ast_manager & m, quantifier * q, expr_ref & result);
|
|
|
|
#endif /* _INJ_AXIOM_H_ */
|
|
|