2013-11-21 18:44:53 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2013-11-21 23:31:55 +00:00
|
|
|
#include <utility>
|
2013-11-22 02:39:33 +00:00
|
|
|
#include <chrono>
|
2013-11-21 23:31:55 +00:00
|
|
|
#include "util/interrupt.h"
|
2013-11-22 02:39:33 +00:00
|
|
|
#include "util/lazy_list_fn.h"
|
2013-11-21 23:31:55 +00:00
|
|
|
#include "library/tactic/tactic_exception.h"
|
2013-11-21 18:44:53 +00:00
|
|
|
#include "library/tactic/tactic.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
tactic & tactic::operator=(tactic const & s) {
|
|
|
|
LEAN_COPY_REF(tactic, s);
|
|
|
|
}
|
|
|
|
|
|
|
|
tactic & tactic::operator=(tactic && s) {
|
|
|
|
LEAN_MOVE_REF(tactic, s);
|
|
|
|
}
|
2013-11-21 20:34:37 +00:00
|
|
|
|
2013-11-22 00:44:31 +00:00
|
|
|
expr tactic::solve(environment const & env, io_state const & io, proof_state const & s) {
|
2013-11-22 02:39:33 +00:00
|
|
|
proof_state_seq r = operator()(env, io, s);
|
|
|
|
if (!r)
|
|
|
|
throw exception("tactic failed to solve input");
|
|
|
|
proof_state final = head(r);
|
|
|
|
assignment a(final.get_menv());
|
2013-11-22 00:44:31 +00:00
|
|
|
proof_map m;
|
2013-11-22 02:39:33 +00:00
|
|
|
return final.get_proof_builder()(m, env, a);
|
2013-11-22 00:44:31 +00:00
|
|
|
}
|
|
|
|
|
2013-11-22 01:25:19 +00:00
|
|
|
expr tactic::solve(environment const & env, io_state const & io, context const & ctx, expr const & t) {
|
|
|
|
proof_state s = to_proof_state(env, ctx, t);
|
|
|
|
return solve(env, io, s);
|
|
|
|
}
|
|
|
|
|
2013-11-22 02:39:33 +00:00
|
|
|
tactic id_tactic() {
|
|
|
|
return mk_tactic([](environment const &, io_state const &, proof_state const & s) -> proof_state_seq {
|
|
|
|
return proof_state_seq(s);
|
|
|
|
});
|
|
|
|
}
|
2013-11-22 01:25:19 +00:00
|
|
|
|
2013-11-22 02:39:33 +00:00
|
|
|
tactic fail_tactic() {
|
|
|
|
return mk_tactic([](environment const &, io_state const &, proof_state const &) -> proof_state_seq {
|
|
|
|
return proof_state_seq();
|
|
|
|
});
|
|
|
|
}
|
2013-11-22 01:25:19 +00:00
|
|
|
|
|
|
|
tactic now_tactic() {
|
2013-11-22 02:39:33 +00:00
|
|
|
return mk_tactic([](environment const &, io_state const &, proof_state const & s) -> proof_state_seq {
|
2013-11-22 01:25:19 +00:00
|
|
|
if (!empty(s.get_goals()))
|
2013-11-22 02:39:33 +00:00
|
|
|
return proof_state_seq();
|
|
|
|
else
|
|
|
|
return proof_state_seq(s);
|
2013-11-22 01:25:19 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
tactic assumption_tactic() {
|
2013-11-22 02:39:33 +00:00
|
|
|
return mk_tactic([](environment const &, io_state const &, proof_state const & s) -> proof_state_seq {
|
2013-11-22 01:25:19 +00:00
|
|
|
list<std::pair<name, expr>> proofs;
|
|
|
|
goals new_goals = map_goals(s, [&](name const & ng, goal const & g) -> goal {
|
|
|
|
expr const & c = g.get_conclusion();
|
|
|
|
expr pr;
|
|
|
|
for (auto const & p : g.get_hypotheses()) {
|
|
|
|
check_interrupted();
|
|
|
|
if (p.second == c) {
|
|
|
|
pr = mk_constant(p.first);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pr) {
|
|
|
|
proofs.emplace_front(ng, pr);
|
|
|
|
return goal();
|
|
|
|
} else {
|
|
|
|
return g;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
proof_builder p = s.get_proof_builder();
|
|
|
|
proof_builder new_p = mk_proof_builder([=](proof_map const & m, environment const & env, assignment const & a) -> expr {
|
|
|
|
proof_map new_m(m);
|
|
|
|
for (auto const & np : proofs) {
|
|
|
|
new_m.insert(np.first, np.second);
|
|
|
|
}
|
|
|
|
return p(new_m, env, a);
|
|
|
|
});
|
2013-11-22 02:39:33 +00:00
|
|
|
return proof_state_seq(proof_state(s, new_goals, new_p));
|
2013-11-22 01:25:19 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-11-22 02:39:33 +00:00
|
|
|
tactic then(tactic t1, tactic t2) {
|
|
|
|
return mk_tactic([=](environment const & env, io_state const & io, proof_state const & s1) -> proof_state_seq {
|
|
|
|
tactic _t1(t1);
|
|
|
|
return map_append(_t1(env, io, s1), [=](proof_state const & s2) {
|
|
|
|
check_interrupted();
|
|
|
|
tactic _t2(t2);
|
|
|
|
return _t2(env, io, s2);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2013-11-21 20:34:37 +00:00
|
|
|
|
2013-11-22 02:39:33 +00:00
|
|
|
tactic orelse(tactic t1, tactic t2) {
|
|
|
|
return mk_tactic([=](environment const & env, io_state const & io, proof_state const & s) -> proof_state_seq {
|
|
|
|
tactic _t1(t1);
|
|
|
|
proof_state_seq r = _t1(env, io, s);
|
|
|
|
if (r) {
|
|
|
|
return r;
|
|
|
|
} else {
|
|
|
|
check_interrupted();
|
|
|
|
tactic _t2(t2);
|
|
|
|
return _t2(env, io, s);
|
2013-11-21 20:34:37 +00:00
|
|
|
}
|
2013-11-22 02:39:33 +00:00
|
|
|
});
|
|
|
|
}
|
2013-11-21 20:34:37 +00:00
|
|
|
|
2013-11-22 02:39:33 +00:00
|
|
|
tactic try_for(tactic t, unsigned ms, unsigned check_ms) {
|
|
|
|
if (check_ms == 0)
|
|
|
|
check_ms = 1;
|
|
|
|
return mk_tactic([=](environment const & env, io_state const & io, proof_state const & s) -> proof_state_seq {
|
|
|
|
tactic _t(t);
|
|
|
|
proof_state_seq r;
|
|
|
|
std::atomic<bool> done(false);
|
|
|
|
interruptible_thread th([&]() {
|
|
|
|
try {
|
|
|
|
r = _t(env, io, s);
|
|
|
|
} catch (...) {
|
|
|
|
r = proof_state_seq();
|
|
|
|
}
|
|
|
|
done = true;
|
|
|
|
});
|
|
|
|
try {
|
|
|
|
auto start = std::chrono::steady_clock::now();
|
|
|
|
std::chrono::milliseconds d(ms);
|
2013-11-22 23:51:17 +00:00
|
|
|
std::chrono::milliseconds small(check_ms);
|
2013-11-22 02:39:33 +00:00
|
|
|
while (!done) {
|
|
|
|
auto curr = std::chrono::steady_clock::now();
|
|
|
|
if (std::chrono::duration_cast<std::chrono::milliseconds>(curr - start) > d)
|
|
|
|
break;
|
|
|
|
check_interrupted();
|
2013-11-22 23:51:17 +00:00
|
|
|
std::this_thread::sleep_for(small);
|
2013-11-22 02:39:33 +00:00
|
|
|
}
|
|
|
|
th.request_interrupt();
|
|
|
|
th.join();
|
|
|
|
return r;
|
|
|
|
} catch (...) {
|
|
|
|
th.request_interrupt();
|
|
|
|
th.join();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2013-11-21 18:44:53 +00:00
|
|
|
}
|