fix(kernel/type_checker): disable expression caching in asynchronous proof checking

This commit is contained in:
Gabriel Ebner 2017-02-16 09:52:36 +01:00 committed by Leonardo de Moura
parent ad713c81b4
commit 1437ee9599

View file

@ -760,6 +760,7 @@ public:
}
expr execute() override {
scoped_expr_caching disable(false);
bool memoize = true;
bool trusted_only = m_decl.is_trusted();
type_checker checker(m_env, memoize, trusted_only);