mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 00:35:47 +00:00
Z3 sources
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
3f9edad676
commit
e9eab22e5c
1186 changed files with 381859 additions and 0 deletions
46
lib/smt_classifier.h
Normal file
46
lib/smt_classifier.h
Normal file
|
@ -0,0 +1,46 @@
|
|||
/*++
|
||||
Copyright (c) 2006 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
smt_classifier.h
|
||||
|
||||
Abstract:
|
||||
|
||||
<abstract>
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo de Moura (leonardo) 2008-06-24.
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _SMT_CLASSIFIER_H_
|
||||
#define _SMT_CLASSIFIER_H_
|
||||
|
||||
#include"static_features.h"
|
||||
|
||||
namespace smt {
|
||||
|
||||
class classifier {
|
||||
context & m_context;
|
||||
ast_manager & m_manager;
|
||||
static_features m_static_features;
|
||||
symbol m_logic;
|
||||
public:
|
||||
classifier(context & c);
|
||||
/**
|
||||
\brief Give a hint by specifying the logic used to describe a problem.
|
||||
*/
|
||||
void set_logic(symbol & s);
|
||||
/**
|
||||
\brief Setup the logical context for solving the following formulas.
|
||||
*/
|
||||
void setup(unsigned num_formulas, expr * const * fs);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
#endif /* _SMT_CLASSIFIER_H_ */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue