mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
41 lines
556 B
C++
41 lines
556 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
smt_implied_equalities.h
|
|
|
|
Abstract:
|
|
|
|
Procedure for obtaining implied equalities relative to the
|
|
state of a solver.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2012-02-29
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef __SMT_IMPLIED_EQUALITIES_H__
|
|
#define __SMT_IMPLIED_EQUALITIES_H__
|
|
|
|
#include"smt_solver.h"
|
|
|
|
|
|
namespace smt {
|
|
|
|
lbool implied_equalities(
|
|
solver& solver,
|
|
unsigned num_terms, expr* const* terms,
|
|
unsigned* class_ids);
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif
|