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
|
|
|
|
*/
|
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
2013-08-04 23:07:37 +00:00
|
|
|
#include <atomic>
|
2013-08-05 03:52:14 +00:00
|
|
|
#include <unordered_map>
|
2013-08-16 19:51:12 +00:00
|
|
|
#include "kernel_exception.h"
|
2013-07-29 05:34:39 +00:00
|
|
|
#include "environment.h"
|
2013-08-05 22:17:58 +00:00
|
|
|
#include "safe_arith.h"
|
2013-08-05 03:52:14 +00:00
|
|
|
#include "type_check.h"
|
2013-07-29 05:34:39 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2013-08-14 22:51:56 +00:00
|
|
|
|
2013-07-30 02:44:26 +00:00
|
|
|
/** \brief Implementation of the Lean environment. */
|
2013-07-29 05:34:39 +00:00
|
|
|
struct environment::imp {
|
2013-08-13 22:13:54 +00:00
|
|
|
// Remark: only named objects are stored in the dictionary.
|
2013-08-16 22:09:26 +00:00
|
|
|
typedef std::unordered_map<name, object, name_hash, name_eq> object_dictionary;
|
2013-08-05 22:17:58 +00:00
|
|
|
typedef std::tuple<level, level, int> constraint;
|
|
|
|
// Universe variable management
|
|
|
|
std::vector<constraint> m_constraints;
|
2013-08-05 03:52:14 +00:00
|
|
|
std::vector<level> m_uvars;
|
2013-08-05 22:17:58 +00:00
|
|
|
// Children environment management
|
2013-08-05 03:52:14 +00:00
|
|
|
std::atomic<unsigned> m_num_children;
|
|
|
|
std::shared_ptr<imp> m_parent;
|
2013-08-05 22:17:58 +00:00
|
|
|
// Object management
|
2013-08-16 22:09:26 +00:00
|
|
|
std::vector<object> m_objects;
|
2013-08-05 03:52:14 +00:00
|
|
|
object_dictionary m_object_dictionary;
|
2013-08-14 02:12:23 +00:00
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Return true iff this environment has children.
|
|
|
|
|
|
|
|
\remark If an environment has children than it cannot be
|
|
|
|
updated. That is, it is read-only.
|
|
|
|
*/
|
2013-08-04 23:07:37 +00:00
|
|
|
bool has_children() const { return m_num_children > 0; }
|
|
|
|
void inc_children() { m_num_children++; }
|
|
|
|
void dec_children() { m_num_children--; }
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/** \brief Return true iff this environment has a parent environment */
|
2013-08-04 23:07:37 +00:00
|
|
|
bool has_parent() const { return m_parent != nullptr; }
|
2013-07-29 05:34:39 +00:00
|
|
|
|
2013-08-16 22:09:26 +00:00
|
|
|
/** \brief Throw exception if environment or its ancestors already have an object with the given name. */
|
|
|
|
void check_name_core(name const & n, environment const & env) {
|
|
|
|
if (has_parent())
|
|
|
|
m_parent->check_name_core(n, env);
|
|
|
|
if (m_object_dictionary.find(n) != m_object_dictionary.end())
|
|
|
|
throw already_declared_exception(env, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void check_name(name const & n, environment const & env) {
|
|
|
|
if (has_children())
|
|
|
|
throw read_only_environment_exception(env);
|
|
|
|
check_name_core(n, env);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Store new named object inside internal data-structures */
|
|
|
|
void register_named_object(object const & new_obj) {
|
|
|
|
m_objects.push_back(new_obj);
|
|
|
|
m_object_dictionary.insert(std::make_pair(new_obj.get_name(), new_obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Return the object named \c n in the environment or its
|
|
|
|
ancestors. Return null object if there is no object with the
|
|
|
|
given name.
|
|
|
|
*/
|
|
|
|
object const & get_object_core(name const & n) const {
|
|
|
|
auto it = m_object_dictionary.find(n);
|
|
|
|
if (it == m_object_dictionary.end()) {
|
|
|
|
if (has_parent())
|
|
|
|
return m_parent->get_object_core(n);
|
|
|
|
else
|
|
|
|
return object::null();
|
|
|
|
} else {
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object const & get_object(name const & n, environment const & env) const {
|
|
|
|
object const & obj = get_object_core(n);
|
|
|
|
if (obj)
|
|
|
|
return obj;
|
|
|
|
else
|
|
|
|
throw unknown_object_exception(env, n);
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Return true if u >= v + k is implied by constraints
|
|
|
|
\pre is_uvar(u) && is_uvar(v)
|
|
|
|
*/
|
|
|
|
bool is_implied(level const & u, level const & v, int k) {
|
|
|
|
lean_assert(is_uvar(u) && is_uvar(v));
|
|
|
|
if (u == v)
|
2013-08-05 22:17:58 +00:00
|
|
|
return k <= 0;
|
|
|
|
else
|
|
|
|
return std::any_of(m_constraints.begin(), m_constraints.end(),
|
2013-08-13 22:13:54 +00:00
|
|
|
[&](constraint const & c) { return std::get<0>(c) == u && std::get<1>(c) == v && std::get<2>(c) >= k; });
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/** \brief Return true iff l1 >= l2 + k by asserted universe constraints. */
|
2013-07-30 02:05:43 +00:00
|
|
|
bool is_ge(level const & l1, level const & l2, int k) {
|
2013-08-05 22:17:58 +00:00
|
|
|
if (l1 == l2)
|
|
|
|
return k == 0;
|
2013-07-29 05:34:39 +00:00
|
|
|
switch (kind(l2)) {
|
|
|
|
case level_kind::UVar:
|
|
|
|
switch (kind(l1)) {
|
2013-08-05 22:17:58 +00:00
|
|
|
case level_kind::UVar: return is_implied(l1, l2, k);
|
|
|
|
case level_kind::Lift: return is_ge(lift_of(l1), l2, safe_sub(k, lift_offset(l1)));
|
2013-08-02 01:52:28 +00:00
|
|
|
case level_kind::Max: return std::any_of(max_begin_levels(l1), max_end_levels(l1), [&](level const & l) { return is_ge(l, l2, k); });
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
2013-08-05 22:17:58 +00:00
|
|
|
case level_kind::Lift: return is_ge(l1, lift_of(l2), safe_add(k, lift_offset(l2)));
|
2013-08-02 01:52:28 +00:00
|
|
|
case level_kind::Max: return std::all_of(max_begin_levels(l2), max_end_levels(l2), [&](level const & l) { return is_ge(l1, l, k); });
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
|
|
|
lean_unreachable();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/** \brief Return true iff l1 >= l2 is implied by asserted universe constraints. */
|
2013-07-30 02:05:43 +00:00
|
|
|
bool is_ge(level const & l1, level const & l2) {
|
2013-08-05 00:47:54 +00:00
|
|
|
if (has_parent())
|
2013-08-04 23:07:37 +00:00
|
|
|
return m_parent->is_ge(l1, l2);
|
2013-08-05 00:47:54 +00:00
|
|
|
else
|
|
|
|
return is_ge(l1, l2, 0);
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/** \brief Add a new universe variable */
|
2013-08-16 22:09:26 +00:00
|
|
|
level add_uvar(name const & n, environment const & env) {
|
|
|
|
check_name(n, env);
|
2013-08-05 22:17:58 +00:00
|
|
|
level r(n);
|
2013-07-29 05:34:39 +00:00
|
|
|
m_uvars.push_back(r);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Add basic constraint u >= v + d, and all basic
|
|
|
|
constraints implied by transitivity.
|
|
|
|
|
|
|
|
\pre is_uvar(u) && is_uvar(v)
|
|
|
|
*/
|
|
|
|
void add_constraint(level const & u, level const & v, int d) {
|
|
|
|
lean_assert(is_uvar(u) && is_uvar(v));
|
|
|
|
if (is_implied(u, v, d))
|
2013-08-05 22:17:58 +00:00
|
|
|
return; // redundant
|
|
|
|
buffer<constraint> to_add;
|
|
|
|
for (constraint const & c : m_constraints) {
|
2013-08-13 22:13:54 +00:00
|
|
|
if (std::get<0>(c) == v) {
|
2013-08-05 22:17:58 +00:00
|
|
|
level const & l3 = std::get<1>(c);
|
2013-08-13 22:13:54 +00:00
|
|
|
int u_l3_d = safe_add(d, std::get<2>(c));
|
|
|
|
if (!is_implied(u, l3, u_l3_d))
|
|
|
|
to_add.push_back(constraint(u, l3, u_l3_d));
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-13 22:13:54 +00:00
|
|
|
m_constraints.push_back(constraint(u, v, d));
|
2013-08-05 22:17:58 +00:00
|
|
|
for (constraint const & c: to_add) {
|
|
|
|
m_constraints.push_back(c);
|
|
|
|
}
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Add all basic constraints implied by n >= l + k
|
|
|
|
|
|
|
|
A basic constraint is a constraint of the form u >= v + k
|
|
|
|
where u and v are universe variables.
|
|
|
|
*/
|
2013-08-05 22:17:58 +00:00
|
|
|
void add_constraints(level const & n, level const & l, int k) {
|
|
|
|
lean_assert(is_uvar(n));
|
2013-07-29 05:34:39 +00:00
|
|
|
switch (kind(l)) {
|
2013-08-05 22:17:58 +00:00
|
|
|
case level_kind::UVar: add_constraint(n, l, k); return;
|
|
|
|
case level_kind::Lift: add_constraints(n, lift_of(l), safe_add(k, lift_offset(l))); return;
|
|
|
|
case level_kind::Max: std::for_each(max_begin_levels(l), max_end_levels(l), [&](level const & l1) { add_constraints(n, l1, k); }); return;
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
|
|
|
lean_unreachable();
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/** \brief Add a new universe variable with constraint n >= l */
|
2013-08-16 19:51:12 +00:00
|
|
|
level add_uvar(name const & n, level const & l, environment const & env) {
|
2013-08-04 23:07:37 +00:00
|
|
|
if (has_parent())
|
2013-08-16 19:51:12 +00:00
|
|
|
throw kernel_exception(env, "invalid universe declaration, universe variables can only be declared in top-level environments");
|
2013-08-04 23:07:37 +00:00
|
|
|
if (has_children())
|
2013-08-16 19:51:12 +00:00
|
|
|
throw read_only_environment_exception(env);
|
2013-08-16 22:09:26 +00:00
|
|
|
level r = add_uvar(n, env);
|
2013-08-05 22:17:58 +00:00
|
|
|
add_constraints(r, l, 0);
|
2013-08-16 22:09:26 +00:00
|
|
|
register_named_object(mk_uvar_decl(n, l));
|
2013-07-29 05:34:39 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Return the universe variable with given name. Throw an
|
|
|
|
exception if the environment and its ancestors do not
|
|
|
|
contain a universe variable named \c n.
|
|
|
|
*/
|
2013-08-16 19:51:12 +00:00
|
|
|
level get_uvar(name const & n, environment const & env) const {
|
2013-08-05 00:47:54 +00:00
|
|
|
if (has_parent()) {
|
2013-08-16 19:51:12 +00:00
|
|
|
return m_parent->get_uvar(n, env);
|
2013-08-05 00:47:54 +00:00
|
|
|
} else {
|
|
|
|
auto it = std::find_if(m_uvars.begin(), m_uvars.end(), [&](level const & l) { return uvar_name(l) == n; });
|
2013-08-16 19:51:12 +00:00
|
|
|
if (it == m_uvars.end())
|
|
|
|
throw unknown_universe_variable_exception(env, n);
|
|
|
|
else
|
2013-08-05 00:47:54 +00:00
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Initialize the set of universe variables with bottom
|
|
|
|
*/
|
2013-07-29 05:34:39 +00:00
|
|
|
void init_uvars() {
|
|
|
|
m_uvars.push_back(level());
|
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Throw an exception if \c t is not a type or type of \c
|
|
|
|
v is not convertible to \c t.
|
|
|
|
|
|
|
|
\remark env is the smart pointer of imp. We need it because
|
|
|
|
infer_universe and infer_type expect an environment instead of environment::imp.
|
|
|
|
*/
|
|
|
|
void check_type(name const & n, expr const & t, expr const & v, environment const & env) {
|
|
|
|
infer_universe(t, env);
|
|
|
|
expr v_t = infer_type(v, env);
|
2013-08-16 19:51:12 +00:00
|
|
|
if (!is_convertible(t, v_t, env))
|
|
|
|
throw def_type_mismatch_exception(env, n, t, v, v_t);
|
2013-08-13 22:13:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Throw exception if it is not a valid new definition */
|
|
|
|
void check_new_definition(name const & n, expr const & t, expr const & v, environment const & env) {
|
2013-08-16 19:51:12 +00:00
|
|
|
check_name(n, env);
|
2013-08-13 22:13:54 +00:00
|
|
|
check_type(n, t, v, env);
|
2013-08-06 03:06:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/** \brief Add new definition. */
|
|
|
|
void add_definition(name const & n, expr const & t, expr const & v, bool opaque, environment const & env) {
|
|
|
|
check_new_definition(n, t, v, env);
|
2013-08-16 22:09:26 +00:00
|
|
|
register_named_object(mk_definition(n, t, v, opaque));
|
2013-08-06 09:03:22 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/**
|
|
|
|
\brief Add new definition.
|
|
|
|
The type of the new definition is the type of \c v.
|
|
|
|
*/
|
|
|
|
void add_definition(name const & n, expr const & v, bool opaque, environment const & env) {
|
2013-08-16 19:51:12 +00:00
|
|
|
check_name(n, env);
|
2013-08-13 22:13:54 +00:00
|
|
|
expr v_t = infer_type(v, env);
|
2013-08-16 22:09:26 +00:00
|
|
|
register_named_object(mk_definition(n, v_t, v, opaque));
|
2013-08-13 22:13:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Add new theorem. */
|
|
|
|
void add_theorem(name const & n, expr const & t, expr const & v, environment const & env) {
|
|
|
|
check_new_definition(n, t, v, env);
|
2013-08-16 22:09:26 +00:00
|
|
|
register_named_object(mk_theorem(n, t, v));
|
2013-08-13 22:13:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Add new axiom. */
|
|
|
|
void add_axiom(name const & n, expr const & t, environment const & env) {
|
2013-08-16 19:51:12 +00:00
|
|
|
check_name(n, env);
|
2013-08-13 22:13:54 +00:00
|
|
|
infer_universe(t, env);
|
2013-08-16 22:09:26 +00:00
|
|
|
register_named_object(mk_axiom(n, t));
|
2013-08-06 03:06:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-13 22:13:54 +00:00
|
|
|
/** \brief Add new variable. */
|
|
|
|
void add_var(name const & n, expr const & t, environment const & env) {
|
2013-08-16 19:51:12 +00:00
|
|
|
check_name(n, env);
|
2013-08-13 22:13:54 +00:00
|
|
|
infer_universe(t, env);
|
2013-08-16 22:09:26 +00:00
|
|
|
register_named_object(mk_var_decl(n, t));
|
2013-08-05 03:52:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 16:29:42 +00:00
|
|
|
unsigned get_num_objects(bool local) const {
|
|
|
|
if (local || !has_parent()) {
|
|
|
|
return m_objects.size();
|
|
|
|
} else {
|
|
|
|
return m_objects.size() + m_parent->get_num_objects(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
object const & get_object(unsigned i, bool local) const {
|
|
|
|
if (local || !has_parent()) {
|
2013-08-16 22:09:26 +00:00
|
|
|
return m_objects[i];
|
2013-08-15 16:29:42 +00:00
|
|
|
} else {
|
|
|
|
unsigned num_parent_objects = m_parent->get_num_objects(false);
|
|
|
|
if (i >= num_parent_objects)
|
2013-08-16 22:09:26 +00:00
|
|
|
return m_objects[i - num_parent_objects];
|
2013-08-15 16:29:42 +00:00
|
|
|
else
|
|
|
|
return m_parent->get_object(i, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-06 03:06:07 +00:00
|
|
|
/** \brief Display universal variable constraints and objects stored in this environment and its parents. */
|
2013-08-08 02:10:12 +00:00
|
|
|
void display(std::ostream & out, environment const & env) const {
|
2013-08-06 03:06:07 +00:00
|
|
|
if (has_parent())
|
2013-08-08 02:10:12 +00:00
|
|
|
m_parent->display(out, env);
|
2013-08-16 22:09:26 +00:00
|
|
|
for (object const & obj : m_objects) {
|
|
|
|
if (obj.has_name()) {
|
|
|
|
out << obj.keyword() << " " << obj.get_name() << "\n";
|
|
|
|
}
|
2013-08-15 15:52:10 +00:00
|
|
|
}
|
2013-08-06 03:06:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-04 23:07:37 +00:00
|
|
|
imp():
|
|
|
|
m_num_children(0) {
|
2013-07-29 05:34:39 +00:00
|
|
|
init_uvars();
|
|
|
|
}
|
2013-08-04 23:07:37 +00:00
|
|
|
|
|
|
|
explicit imp(std::shared_ptr<imp> const & parent):
|
|
|
|
m_num_children(0),
|
|
|
|
m_parent(parent) {
|
|
|
|
m_parent->inc_children();
|
|
|
|
}
|
|
|
|
|
|
|
|
~imp() {
|
|
|
|
if (m_parent)
|
|
|
|
m_parent->dec_children();
|
|
|
|
}
|
2013-07-29 05:34:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
environment::environment():
|
2013-08-04 23:07:37 +00:00
|
|
|
m_imp(new imp()) {
|
|
|
|
}
|
|
|
|
|
|
|
|
environment::environment(imp * new_ptr):
|
|
|
|
m_imp(new_ptr) {
|
|
|
|
}
|
|
|
|
|
|
|
|
environment::environment(std::shared_ptr<imp> const & ptr):
|
|
|
|
m_imp(ptr) {
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
environment::~environment() {
|
|
|
|
}
|
|
|
|
|
2013-08-04 23:07:37 +00:00
|
|
|
environment environment::mk_child() const {
|
|
|
|
return environment(new imp(m_imp));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool environment::has_children() const {
|
|
|
|
return m_imp->has_children();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool environment::has_parent() const {
|
|
|
|
return m_imp->has_parent();
|
|
|
|
}
|
|
|
|
|
|
|
|
environment environment::parent() const {
|
|
|
|
lean_assert(has_parent());
|
|
|
|
return environment(m_imp->m_parent);
|
|
|
|
}
|
2013-08-09 22:33:34 +00:00
|
|
|
|
|
|
|
level environment::add_uvar(name const & n, level const & l) {
|
2013-08-16 19:51:12 +00:00
|
|
|
return m_imp->add_uvar(n, l, *this);
|
2013-08-09 22:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool environment::is_ge(level const & l1, level const & l2) const {
|
|
|
|
return m_imp->is_ge(l1, l2);
|
|
|
|
}
|
|
|
|
|
2013-08-05 00:47:54 +00:00
|
|
|
level environment::get_uvar(name const & n) const {
|
2013-08-16 19:51:12 +00:00
|
|
|
return m_imp->get_uvar(n, *this);
|
2013-08-05 00:47:54 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 19:24:20 +00:00
|
|
|
void environment::add_definition(name const & n, expr const & t, expr const & v, bool opaque) {
|
2013-08-13 22:13:54 +00:00
|
|
|
m_imp->add_definition(n, t, v, opaque, *this);
|
2013-08-05 03:52:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 19:24:20 +00:00
|
|
|
void environment::add_theorem(name const & n, expr const & t, expr const & v) {
|
2013-08-13 22:13:54 +00:00
|
|
|
m_imp->add_theorem(n, t, v, *this);
|
2013-08-06 19:24:20 +00:00
|
|
|
}
|
|
|
|
|
2013-08-05 03:52:14 +00:00
|
|
|
void environment::add_definition(name const & n, expr const & v, bool opaque) {
|
2013-08-13 22:13:54 +00:00
|
|
|
m_imp->add_definition(n, v, opaque, *this);
|
2013-08-05 03:52:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 03:06:07 +00:00
|
|
|
void environment::add_axiom(name const & n, expr const & t) {
|
2013-08-13 22:13:54 +00:00
|
|
|
m_imp->add_axiom(n, t, *this);
|
2013-08-06 03:06:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void environment::add_var(name const & n, expr const & t) {
|
2013-08-13 22:13:54 +00:00
|
|
|
m_imp->add_var(n, t, *this);
|
2013-08-05 03:52:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-16 22:09:26 +00:00
|
|
|
void environment::add_neutral_object(neutral_object_cell * o) {
|
|
|
|
m_imp->m_objects.push_back(mk_neutral(o));
|
2013-08-15 01:16:11 +00:00
|
|
|
}
|
|
|
|
|
2013-08-16 22:09:26 +00:00
|
|
|
object const & environment::get_object(name const & n) const {
|
2013-08-16 19:51:12 +00:00
|
|
|
return m_imp->get_object(n, *this);
|
2013-08-05 03:52:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 16:29:42 +00:00
|
|
|
unsigned environment::get_num_objects(bool local) const {
|
|
|
|
return m_imp->get_num_objects(local);
|
2013-08-08 23:12:46 +00:00
|
|
|
}
|
|
|
|
|
2013-08-15 16:29:42 +00:00
|
|
|
object const & environment::get_object(unsigned i, bool local) const {
|
|
|
|
return m_imp->get_object(i, local);
|
2013-08-08 23:12:46 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 03:06:07 +00:00
|
|
|
void environment::display(std::ostream & out) const {
|
2013-08-08 02:10:12 +00:00
|
|
|
m_imp->display(out, *this);
|
2013-08-06 03:06:07 +00:00
|
|
|
}
|
2013-07-29 05:34:39 +00:00
|
|
|
}
|