2013-07-29 05:34:39 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
2013-09-13 10:35:29 +00:00
|
|
|
#include "kernel/context.h"
|
|
|
|
#include "kernel/object.h"
|
|
|
|
#include "kernel/level.h"
|
2013-07-29 05:34:39 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
/**
|
|
|
|
\brief Lean environment for defining constants, inductive
|
|
|
|
datatypes, universe variables, et.c
|
|
|
|
*/
|
|
|
|
class environment {
|
2013-08-08 23:12:46 +00:00
|
|
|
private:
|
2013-07-29 05:34:39 +00:00
|
|
|
struct imp;
|
2013-09-17 21:42:44 +00:00
|
|
|
std::shared_ptr<imp> m_ptr;
|
2013-08-06 19:24:20 +00:00
|
|
|
void check_type(name const & n, expr const & t, expr const & v);
|
2013-09-17 14:37:33 +00:00
|
|
|
environment(std::shared_ptr<imp> const & parent, bool);
|
2013-08-04 23:07:37 +00:00
|
|
|
explicit environment(std::shared_ptr<imp> const & ptr);
|
2013-11-12 04:29:53 +00:00
|
|
|
friend class read_only_environment;
|
|
|
|
friend class read_write_environment;
|
2013-07-29 05:34:39 +00:00
|
|
|
public:
|
2013-11-18 02:11:44 +00:00
|
|
|
typedef std::weak_ptr<imp> weak_ref;
|
|
|
|
|
2013-07-29 05:34:39 +00:00
|
|
|
environment();
|
|
|
|
~environment();
|
2013-11-18 02:11:44 +00:00
|
|
|
environment(weak_ref const & r);
|
|
|
|
|
|
|
|
weak_ref to_weak_ref() const { return weak_ref(m_ptr); }
|
2013-11-17 03:18:15 +00:00
|
|
|
|
|
|
|
friend bool is_eqp(environment const & env1, environment const & env2) { return env1.m_ptr.get() == env2.m_ptr.get(); }
|
2013-11-21 20:34:37 +00:00
|
|
|
friend void swap(environment & env1, environment & env2) { env1.m_ptr.swap(env2.m_ptr); }
|
2013-08-09 22:33:34 +00:00
|
|
|
// =======================================
|
|
|
|
// Parent/Child environment management
|
2013-07-29 05:34:39 +00:00
|
|
|
/**
|
2013-08-09 22:33:34 +00:00
|
|
|
\brief Create a child environment. This environment will only allow "read-only" operations until
|
|
|
|
all children environments are deleted.
|
|
|
|
*/
|
|
|
|
environment mk_child() const;
|
|
|
|
|
|
|
|
/** \brief Return true iff this environment has children environments. */
|
|
|
|
bool has_children() const;
|
|
|
|
|
|
|
|
/** \brief Return true iff this environment has a parent environment. */
|
|
|
|
bool has_parent() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Return parent environment of this environment.
|
|
|
|
\pre has_parent()
|
|
|
|
*/
|
|
|
|
environment parent() const;
|
|
|
|
// =======================================
|
|
|
|
|
|
|
|
// =======================================
|
|
|
|
// Universe variables
|
|
|
|
/**
|
|
|
|
\brief Add a new universe variable with name \c n and constraint <tt>n >= l</tt>.
|
2013-07-29 05:34:39 +00:00
|
|
|
Return the new variable.
|
|
|
|
|
|
|
|
\remark An exception is thrown if a universe inconsistency is detected.
|
|
|
|
*/
|
2013-08-09 22:33:34 +00:00
|
|
|
level add_uvar(name const & n, level const & l);
|
|
|
|
level add_uvar(name const & n) { return add_uvar(n, level()); }
|
2013-07-29 05:34:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Return true iff the constraint l1 >= l2 is implied by the constraints
|
|
|
|
in the environment.
|
|
|
|
*/
|
2013-07-30 02:05:43 +00:00
|
|
|
bool is_ge(level const & l1, level const & l2) const;
|
2013-07-29 05:34:39 +00:00
|
|
|
|
2013-08-04 23:07:37 +00:00
|
|
|
/**
|
|
|
|
\brief Return universal variable with the given name.
|
|
|
|
Throw an exception if variable is not defined in this environment.
|
|
|
|
*/
|
|
|
|
level get_uvar(name const & n) const;
|
2013-08-09 22:33:34 +00:00
|
|
|
// =======================================
|
2013-08-04 23:07:37 +00:00
|
|
|
|
2013-08-09 22:33:34 +00:00
|
|
|
// =======================================
|
|
|
|
// Environment Objects
|
2013-09-04 15:30:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Add builtin value to the environment.
|
|
|
|
|
|
|
|
\pre is_value(v)
|
|
|
|
*/
|
|
|
|
void add_builtin(expr const & v);
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Add a builtin value set to the environment.
|
|
|
|
|
|
|
|
The set is registered by providing a representative of the set.
|
|
|
|
Each builtin set of values is implemented by a C++ class.
|
|
|
|
The environment will only accept object of the same class of
|
|
|
|
the representative. This functionality is used to support
|
|
|
|
infinite set of builtin values such as the natural numbers.
|
|
|
|
|
|
|
|
\pre is_value(r);
|
|
|
|
*/
|
|
|
|
void add_builtin_set(expr const & r);
|
|
|
|
|
2013-08-05 01:26:01 +00:00
|
|
|
/**
|
|
|
|
\brief Add a new definition n : t := v.
|
|
|
|
It throws an exception if v does not have type t.
|
2013-08-05 03:52:14 +00:00
|
|
|
It throws an exception if there is already an object with the given name.
|
2013-08-05 01:26:01 +00:00
|
|
|
If opaque == true, then definition is not used by normalizer.
|
|
|
|
*/
|
|
|
|
void add_definition(name const & n, expr const & t, expr const & v, bool opaque = false);
|
2013-08-06 19:24:20 +00:00
|
|
|
void add_theorem(name const & n, expr const & t, expr const & v);
|
2013-08-05 01:26:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Add a new definition n : infer_type(v) := v.
|
2013-08-05 03:52:14 +00:00
|
|
|
It throws an exception if there is already an object with the given name.
|
2013-08-05 01:26:01 +00:00
|
|
|
If opaque == true, then definition is not used by normalizer.
|
|
|
|
*/
|
|
|
|
void add_definition(name const & n, expr const & v, bool opaque = false);
|
|
|
|
|
|
|
|
/**
|
2013-08-06 03:06:07 +00:00
|
|
|
\brief Add a new fact (Axiom or Fact) to the environment.
|
2013-08-05 03:52:14 +00:00
|
|
|
It throws an exception if there is already an object with the given name.
|
2013-08-05 01:26:01 +00:00
|
|
|
*/
|
2013-08-06 03:06:07 +00:00
|
|
|
void add_axiom(name const & n, expr const & t);
|
|
|
|
void add_var(name const & n, expr const & t);
|
2013-08-05 03:52:14 +00:00
|
|
|
|
2013-08-15 01:16:11 +00:00
|
|
|
/**
|
|
|
|
\brief Register the given unanymous object in this environment.
|
|
|
|
The environment assume the object ownership.
|
|
|
|
*/
|
2013-08-16 22:09:26 +00:00
|
|
|
void add_neutral_object(neutral_object_cell * o);
|
2013-08-15 01:16:11 +00:00
|
|
|
|
2013-08-05 03:52:14 +00:00
|
|
|
/**
|
|
|
|
\brief Return the object with the given name.
|
|
|
|
It throws an exception if the environment does not have an object with the given name.
|
|
|
|
*/
|
2013-08-16 22:09:26 +00:00
|
|
|
object const & get_object(name const & n) const;
|
2013-08-06 03:06:07 +00:00
|
|
|
|
2013-08-17 17:55:42 +00:00
|
|
|
/**
|
|
|
|
\brief Find a given object in the environment. Return the null
|
|
|
|
object if there is no object with the given name.
|
|
|
|
|
|
|
|
\remark Object implements operator bool(), and the null object returns false.
|
|
|
|
*/
|
|
|
|
object const & find_object(name const & n) const;
|
|
|
|
|
2013-08-15 01:16:11 +00:00
|
|
|
/** \brief Return true iff the environment has an object with the given name */
|
2013-12-03 07:02:39 +00:00
|
|
|
bool has_object(name const & n) const { return static_cast<bool>(find_object(n)); }
|
2013-08-15 01:16:11 +00:00
|
|
|
|
2013-09-01 23:59:15 +00:00
|
|
|
/**
|
|
|
|
\brief Return the type of \c e in the given context and this environment.
|
|
|
|
*/
|
2013-11-12 04:29:53 +00:00
|
|
|
expr infer_type(expr const & e, context const & ctx = context()) const;
|
2013-09-01 23:59:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Normalize \c e in the given context and this environment.
|
|
|
|
*/
|
2013-11-12 04:29:53 +00:00
|
|
|
expr normalize(expr const & e, context const & ctx = context()) const;
|
2013-09-01 23:59:15 +00:00
|
|
|
|
2013-11-13 22:26:01 +00:00
|
|
|
/**
|
|
|
|
\brief Low-level function for accessing objects. Consider using iterators.
|
|
|
|
*/
|
|
|
|
unsigned get_num_objects(bool local) const;
|
|
|
|
/**
|
|
|
|
\brief Low-level function for accessing objects. Consider using iterators.
|
|
|
|
*/
|
|
|
|
object const & get_object(unsigned i, bool local) const;
|
|
|
|
|
2013-08-08 23:12:46 +00:00
|
|
|
/** \brief Iterator for Lean environment objects. */
|
|
|
|
class object_iterator {
|
|
|
|
environment const & m_env;
|
|
|
|
unsigned m_idx;
|
2013-08-15 16:29:42 +00:00
|
|
|
bool m_local;
|
2013-08-08 23:12:46 +00:00
|
|
|
friend class environment;
|
2013-08-15 16:29:42 +00:00
|
|
|
object_iterator(environment const & env, unsigned idx, bool local):m_env(env), m_idx(idx), m_local(local) {}
|
2013-08-08 23:12:46 +00:00
|
|
|
public:
|
2013-08-15 16:29:42 +00:00
|
|
|
object_iterator(object_iterator const & s):m_env(s.m_env), m_idx(s.m_idx), m_local(s.m_local) {}
|
2013-08-08 23:12:46 +00:00
|
|
|
object_iterator & operator++() { ++m_idx; return *this; }
|
|
|
|
object_iterator operator++(int) { object_iterator tmp(*this); operator++(); return tmp; }
|
2013-08-21 19:42:55 +00:00
|
|
|
object_iterator & operator--() { --m_idx; return *this; }
|
|
|
|
object_iterator operator--(int) { object_iterator tmp(*this); operator--(); return tmp; }
|
2013-08-08 23:12:46 +00:00
|
|
|
bool operator==(object_iterator const & s) const { lean_assert(&m_env == &(s.m_env)); return m_idx == s.m_idx; }
|
|
|
|
bool operator!=(object_iterator const & s) const { return !operator==(s); }
|
2013-08-15 16:29:42 +00:00
|
|
|
object const & operator*() { return m_env.get_object(m_idx, m_local); }
|
2013-08-17 18:29:43 +00:00
|
|
|
object const * operator->() { return &(m_env.get_object(m_idx, m_local)); }
|
2013-08-08 23:12:46 +00:00
|
|
|
};
|
|
|
|
|
2013-08-15 16:29:42 +00:00
|
|
|
/**
|
|
|
|
\brief Return an iterator to the beginning of the sequence of
|
|
|
|
objects stored in this environment.
|
|
|
|
|
|
|
|
\remark The objects in this environment and ancestor
|
|
|
|
environments are considered
|
|
|
|
*/
|
|
|
|
object_iterator begin_objects() const { return object_iterator(*this, 0, false); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Return an iterator to the end of the sequence of
|
|
|
|
objects stored in this environment.
|
|
|
|
|
|
|
|
\remark The objects in this environment and ancestor
|
|
|
|
environments are considered
|
|
|
|
*/
|
|
|
|
object_iterator end_objects() const { return object_iterator(*this, get_num_objects(false), false); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Return an iterator to the beginning of the sequence of
|
|
|
|
objects stored in this environment (objects in ancestor
|
|
|
|
environments are ingored).
|
|
|
|
*/
|
|
|
|
object_iterator begin_local_objects() const { return object_iterator(*this, 0, true); }
|
2013-08-08 23:12:46 +00:00
|
|
|
|
2013-08-15 16:29:42 +00:00
|
|
|
/**
|
|
|
|
\brief Return an iterator to the end of the sequence of
|
|
|
|
objects stored in this environment (objects in ancestor
|
|
|
|
environments are ingored).
|
|
|
|
*/
|
|
|
|
object_iterator end_local_objects() const { return object_iterator(*this, get_num_objects(true), true); }
|
2013-08-09 22:33:34 +00:00
|
|
|
// =======================================
|
2013-08-08 23:12:46 +00:00
|
|
|
|
2013-08-06 03:06:07 +00:00
|
|
|
/** \brief Display universal variable constraints and objects stored in this environment and its parents. */
|
|
|
|
void display(std::ostream & out) const;
|
2013-08-24 23:11:35 +00:00
|
|
|
|
2013-11-07 03:21:22 +00:00
|
|
|
/**
|
|
|
|
\brief Frontend can store data in environment extensions.
|
|
|
|
Each extension is associated with a unique token/id.
|
|
|
|
This token allows the frontend to retrieve/store an extension object
|
|
|
|
in the environment
|
|
|
|
*/
|
|
|
|
class extension {
|
2013-11-07 19:36:08 +00:00
|
|
|
friend struct imp;
|
2013-11-07 03:21:22 +00:00
|
|
|
imp * m_env;
|
|
|
|
unsigned m_extid; // extension id
|
|
|
|
extension const * get_parent_core() const;
|
|
|
|
public:
|
|
|
|
extension();
|
|
|
|
virtual ~extension();
|
|
|
|
/**
|
|
|
|
\brief Return a constant reference for a parent extension,
|
|
|
|
and a nullptr if there is no parent/ancestor, or if the
|
|
|
|
parent/ancestor has an extension.
|
|
|
|
*/
|
|
|
|
template<typename Ext> Ext const * get_parent() const {
|
|
|
|
extension const * ext = get_parent_core();
|
|
|
|
lean_assert(!ext || dynamic_cast<Ext const *>(ext) != nullptr);
|
|
|
|
return static_cast<Ext const *>(ext);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Register an environment extension. Every environment
|
|
|
|
object will contain this extension. The funciton mk creates a
|
|
|
|
new instance of the extension. The extension object can be
|
|
|
|
retrieved using the token (unsigned integer) returned by this
|
|
|
|
method.
|
|
|
|
|
|
|
|
\remark The extension objects are created on demand.
|
|
|
|
|
|
|
|
\see get_extension
|
|
|
|
*/
|
|
|
|
typedef std::unique_ptr<extension> (*mk_extension)();
|
|
|
|
static unsigned register_extension(mk_extension mk);
|
|
|
|
|
|
|
|
private:
|
2013-11-07 19:29:01 +00:00
|
|
|
extension const & get_extension_core(unsigned extid) const;
|
|
|
|
extension & get_extension_core(unsigned extid);
|
2013-11-07 03:21:22 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
\brief Retrieve the extension associated with the token \c extid.
|
|
|
|
The token is the value returned by \c register_extension.
|
|
|
|
*/
|
|
|
|
template<typename Ext>
|
2013-11-07 19:29:01 +00:00
|
|
|
Ext const & get_extension(unsigned extid) const {
|
|
|
|
extension const & ext = get_extension_core(extid);
|
|
|
|
lean_assert(dynamic_cast<Ext const *>(&ext) != nullptr);
|
|
|
|
return static_cast<Ext const &>(ext);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Ext>
|
|
|
|
Ext & get_extension(unsigned extid) {
|
2013-11-07 03:21:22 +00:00
|
|
|
extension & ext = get_extension_core(extid);
|
|
|
|
lean_assert(dynamic_cast<Ext*>(&ext) != nullptr);
|
|
|
|
return static_cast<Ext&>(ext);
|
|
|
|
}
|
2013-11-07 19:29:01 +00:00
|
|
|
|
2013-11-18 02:11:44 +00:00
|
|
|
/**
|
|
|
|
\brief Return true iff the given file was not already marked as imported.
|
|
|
|
It will also mark the file as imported.
|
|
|
|
*/
|
|
|
|
bool mark_imported(char const * fname);
|
|
|
|
/**
|
|
|
|
\brief Return true iff the given builtin id was not already marked as imported.
|
|
|
|
It will also mark the id as imported.
|
|
|
|
*/
|
|
|
|
bool mark_builtin_imported(char const * id);
|
2013-07-29 05:34:39 +00:00
|
|
|
};
|
|
|
|
}
|