2015-09-16 07:49:39 -07:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
2015-09-23 18:13:18 -07:00
|
|
|
#include "util/rb_map.h"
|
2015-09-16 07:49:39 -07:00
|
|
|
#include "kernel/expr.h"
|
2015-09-23 18:13:18 -07:00
|
|
|
#include "library/blast/hypothesis.h"
|
|
|
|
|
2015-09-16 07:49:39 -07:00
|
|
|
namespace lean {
|
|
|
|
namespace blast {
|
2015-09-23 18:13:18 -07:00
|
|
|
class metavar_decl {
|
|
|
|
hypothesis_set m_context;
|
|
|
|
expr m_type;
|
|
|
|
};
|
|
|
|
|
2015-09-16 07:49:39 -07:00
|
|
|
class state {
|
2015-09-23 18:13:18 -07:00
|
|
|
typedef rb_map<unsigned, metavar_decl, unsigned_cmp> metavar_decls;
|
|
|
|
metavar_decls m_metavar_decls;
|
2015-09-16 07:49:39 -07:00
|
|
|
};
|
|
|
|
}}
|