2014-10-23 16:01:19 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2014-10-26 17:27:33 +00:00
|
|
|
#include "library/reducible.h"
|
2014-10-23 16:01:19 +00:00
|
|
|
#include "library/unifier.h"
|
|
|
|
#include "library/tactic/elaborate.h"
|
|
|
|
|
|
|
|
namespace lean {
|
2014-10-29 06:18:49 +00:00
|
|
|
bool solve_constraints(environment const & env, io_state const & ios, proof_state & ps, constraint_seq const & cs) {
|
|
|
|
if (!cs)
|
|
|
|
return true;
|
|
|
|
unifier_config cfg(ios.get_options());
|
|
|
|
buffer<constraint> cs_buffer;
|
|
|
|
cs.linearize(cs_buffer);
|
|
|
|
to_buffer(ps.get_postponed(), cs_buffer);
|
|
|
|
name_generator ngen = ps.get_ngen();
|
|
|
|
substitution subst = ps.get_subst();
|
|
|
|
unify_result_seq rseq = unify(env, cs_buffer.size(), cs_buffer.data(), ngen.mk_child(), subst, cfg);
|
|
|
|
if (auto p = rseq.pull()) {
|
|
|
|
substitution new_subst = p->first.first;
|
|
|
|
constraints new_postponed = p->first.second;
|
2014-10-29 15:57:34 +00:00
|
|
|
ps = proof_state(ps, ps.get_goals(), new_subst, ngen, new_postponed);
|
2014-10-29 06:18:49 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-23 16:01:19 +00:00
|
|
|
optional<expr> elaborate_with_respect_to(environment const & env, io_state const & ios, elaborate_fn const & elab,
|
2014-11-28 22:59:35 +00:00
|
|
|
proof_state & s, expr const & e, optional<expr> const & expected_type,
|
|
|
|
bool report_unassigned) {
|
2014-10-23 16:01:19 +00:00
|
|
|
name_generator ngen = s.get_ngen();
|
|
|
|
substitution subst = s.get_subst();
|
|
|
|
goals const & gs = s.get_goals();
|
|
|
|
if (empty(gs))
|
|
|
|
return none_expr();
|
2014-11-28 22:59:35 +00:00
|
|
|
auto ecs = elab(head(gs), ngen.mk_child(), e, report_unassigned);
|
2014-10-23 16:01:19 +00:00
|
|
|
expr new_e = ecs.first;
|
|
|
|
buffer<constraint> cs;
|
|
|
|
to_buffer(ecs.second, cs);
|
2014-10-26 17:27:33 +00:00
|
|
|
if (cs.empty() && !expected_type) {
|
2014-10-23 16:19:58 +00:00
|
|
|
// easy case: no constraints to be solved
|
|
|
|
s = proof_state(s, ngen);
|
2014-10-23 16:01:19 +00:00
|
|
|
return some_expr(new_e);
|
|
|
|
} else {
|
2014-10-23 16:19:58 +00:00
|
|
|
to_buffer(s.get_postponed(), cs);
|
2014-10-26 17:27:33 +00:00
|
|
|
if (expected_type) {
|
|
|
|
auto tc = mk_type_checker(env, ngen.mk_child());
|
|
|
|
auto e_t_cs = tc->infer(new_e);
|
|
|
|
expr t = subst.instantiate(*expected_type);
|
|
|
|
e_t_cs.second.linearize(cs);
|
|
|
|
auto d_cs = tc->is_def_eq(e_t_cs.first, t);
|
|
|
|
if (!d_cs.first)
|
|
|
|
return none_expr();
|
|
|
|
d_cs.second.linearize(cs);
|
|
|
|
}
|
2014-10-23 16:19:58 +00:00
|
|
|
unifier_config cfg(ios.get_options());
|
|
|
|
unify_result_seq rseq = unify(env, cs.size(), cs.data(), ngen.mk_child(), subst, cfg);
|
|
|
|
if (auto p = rseq.pull()) {
|
|
|
|
substitution new_subst = p->first.first;
|
|
|
|
constraints new_postponed = p->first.second;
|
|
|
|
new_e = new_subst.instantiate(new_e);
|
2014-10-29 15:57:34 +00:00
|
|
|
s = proof_state(s, gs, new_subst, ngen, new_postponed);
|
2014-10-23 16:19:58 +00:00
|
|
|
return some_expr(new_e);
|
|
|
|
} else {
|
|
|
|
return none_expr();
|
|
|
|
}
|
2014-10-23 16:01:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|