mirror of
https://github.com/Z3Prover/z3
synced 2026-02-24 01:01:19 +00:00
31 lines
378 B
C++
31 lines
378 B
C++
/*++
|
|
Copyright (c) 2013 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
qe_util.h
|
|
|
|
Abstract:
|
|
|
|
Utilities for quantifiers.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2013-08-28
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef QE_UTIL_H_
|
|
#define QE_UTIL_H_
|
|
|
|
#include "ast.h"
|
|
|
|
namespace qe {
|
|
|
|
expr_ref mk_and(expr_ref_vector const& fmls);
|
|
|
|
expr_ref mk_or(expr_ref_vector const& fmls);
|
|
|
|
}
|
|
#endif
|