refactor(library/elaborator): simplify synthesizer interface
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c6b05bcfcb
commit
73bbf67702
2 changed files with 7 additions and 15 deletions
|
@ -105,12 +105,12 @@ class elaborator::imp {
|
|||
|
||||
struct synthesizer_case_split : public case_split {
|
||||
expr m_metavar;
|
||||
std::unique_ptr<synthesizer::result> m_alternatives;
|
||||
lazy_list<expr> m_alternatives;
|
||||
|
||||
synthesizer_case_split(expr const & m, std::unique_ptr<synthesizer::result> & r, state const & prev_state):
|
||||
synthesizer_case_split(expr const & m, lazy_list<expr> const & r, state const & prev_state):
|
||||
case_split(prev_state),
|
||||
m_metavar(m),
|
||||
m_alternatives(std::move(r)) {
|
||||
m_alternatives(r) {
|
||||
}
|
||||
|
||||
virtual ~synthesizer_case_split() {}
|
||||
|
|
|
@ -6,6 +6,7 @@ Author: Leonardo de Moura
|
|||
*/
|
||||
#pragma once
|
||||
#include <memory>
|
||||
#include "util/lazy_list.h"
|
||||
#include "kernel/environment.h"
|
||||
#include "kernel/context.h"
|
||||
#include "library/elaborator/elaborator_exception.h"
|
||||
|
@ -18,19 +19,10 @@ class synthesizer {
|
|||
public:
|
||||
virtual ~synthesizer() {}
|
||||
|
||||
/** \brief The synthesizer produces a "result" object that can generates the sequence of possible solutions. */
|
||||
class result {
|
||||
public:
|
||||
virtual ~result() {}
|
||||
/** \brief Return the next possible solution. An elaborator_exception is throw in case of failure. */
|
||||
virtual expr next() = 0;
|
||||
/** \brief Interrupt the computation for the next solution. */
|
||||
};
|
||||
|
||||
/**
|
||||
\brief Return an object for computing a sequence of expressions
|
||||
\brief Return a sequence of expressions
|
||||
of type \c type in the given environment and context.
|
||||
*/
|
||||
virtual std::unique_ptr<result> operator()(environment const & env, context const & ctx, expr const & type) = 0;
|
||||
virtual lazy_list<expr> operator()(environment const & env, context const & ctx, expr const & type) = 0;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue