lean2/src/kernel
Leonardo de Moura 956f203a55 refactor(bindings/lua): move Lua bindings to the file associated with them
The directory bindings/lua was getting too big and had too many dependencies.
Moreover, it was getting too painful to edit/maintain two different places.
Now, the bindings for module X are in the directory that defines X.
For example, the bindings for util/name.cpp are located at util/name.cpp.

The only exception is the kernel. We do not want to inflate the kernel
with Lua bindings. The bindings for the kernel classes are located
at bindings/kernel_bindings.

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-11-26 19:15:56 -08:00
..
abstract.cpp Use fullpath in #include directives, add missing STL headers 2013-09-13 03:35:29 -07:00
abstract.h Use fullpath in #include directives, add missing STL headers 2013-09-13 03:35:29 -07:00
builtin.cpp feat(kernel): add is_bool predicate 2013-11-26 11:34:50 -08:00
builtin.h feat(kernel): add is_bool predicate 2013-11-26 11:34:50 -08:00
CMakeLists.txt refactor(kernel): add find_fn, replace for_each_fn with find_fn when appropriate, remove unnecessary function has_cached_type 2013-11-19 13:03:46 -08:00
context.cpp feat(kernel/context): add method for remove context entries at positions [s, s+n). 2013-10-22 15:52:24 -07:00
context.h feat(kernel/context): add method for remove context entries at positions [s, s+n). 2013-10-22 15:52:24 -07:00
environment.cpp refactor(kernel): add find_fn, replace for_each_fn with find_fn when appropriate, remove unnecessary function has_cached_type 2013-11-19 13:03:46 -08:00
environment.h feat(library/tactic): add 'idtac' tactic and 'then' tactical 2013-11-21 17:29:06 -08:00
expr.cpp refactor(bindings/lua): move Lua bindings to the file associated with them 2013-11-26 19:15:56 -08:00
expr.h refactor(bindings/lua): move Lua bindings to the file associated with them 2013-11-26 19:15:56 -08:00
expr_eq.h fix(kernel/expr_eq): the cached type should ignored when comparing expressions 2013-11-21 17:29:06 -08:00
expr_maps.h feat(kernel/expr): add hash code based on allocation time 2013-11-14 02:43:11 -08:00
expr_sets.h feat(kernel/expr): add hash code based on allocation time 2013-11-14 02:43:11 -08:00
find_fn.h refactor(kernel): add find_fn, replace for_each_fn with find_fn when appropriate, remove unnecessary function has_cached_type 2013-11-19 13:03:46 -08:00
for_each_fn.h refactor(kernel): add find_fn, replace for_each_fn with find_fn when appropriate, remove unnecessary function has_cached_type 2013-11-19 13:03:46 -08:00
formatter.cpp refactor(kernel): move printer and formatter objects to the kernel 2013-10-22 08:15:36 -07:00
formatter.h feat(*): simplify interrupt propagation 2013-11-12 21:45:48 -08:00
free_vars.cpp feat(kernel): add (optional) field m_type to expr_const, this field is useful for implementing the tactic framework 2013-11-19 11:21:52 -08:00
free_vars.h Simplify metavariable context. Now, we have only 'lift' and 'inst' instead of 'subst', 'lift' and 'lower' 2013-09-16 19:32:28 -07:00
instantiate.cpp feat(kernel/expr): add new mk_app template for creating applications using a collection 2013-10-27 08:53:58 -07:00
instantiate.h refactor(beta_reduction): add function apply_beta 2013-10-23 16:03:52 -07:00
justification.cpp fix(kernel/metavar): add normalize assignment justification 2013-10-27 11:02:34 -07:00
justification.h fix(kernel/metavar): add normalize assignment justification 2013-10-27 11:02:34 -07:00
kernel_exception.cpp fix(kernel/type_checker): add missing test, and kernel_exception has_no_type_exception 2013-11-10 11:14:04 -08:00
kernel_exception.h fix(kernel/type_checker): add missing test, and kernel_exception has_no_type_exception 2013-11-10 11:14:04 -08:00
level.cpp chore(*): add LCOV_EXCL_LINE to lean_unreachable statements 2013-11-11 09:19:38 -08:00
level.h refactor(lua): cleanup Lua bindings 2013-11-13 13:55:05 -08:00
metavar.cpp refactor(kernel/metavar): remove unnecessary variable 2013-11-19 14:41:54 -08:00
metavar.h refactor(kernel/metavar): remove unnecessary variable 2013-11-19 14:41:54 -08:00
normalizer.cpp feat(kernel/expr): add hash code based on allocation time 2013-11-14 02:43:11 -08:00
normalizer.h feat(*): simplify interrupt propagation 2013-11-12 21:45:48 -08:00
object.cpp feat(kernel): add weight to kernel definitions 2013-10-15 14:50:08 -07:00
object.h chore(*): add LCOV_EXCL_LINE to lean_unreachable statements 2013-11-11 09:19:38 -08:00
occurs.cpp refactor(kernel): add find_fn, replace for_each_fn with find_fn when appropriate, remove unnecessary function has_cached_type 2013-11-19 13:03:46 -08:00
occurs.h fix(kernel/occurs): typos 2013-11-13 17:04:56 -08:00
pos_info_provider.cpp feat(pos_info_provider): add position information provider for expressions 2013-10-22 08:15:36 -07:00
pos_info_provider.h feat(pos_info_provider): add position information provider for expressions 2013-10-22 08:15:36 -07:00
printer.cpp refactor(kernel/metavar): avoid using unique names for default metavariable prefix 2013-11-07 10:16:25 -08:00
printer.h refactor(kernel): move printer and formatter objects to the kernel 2013-10-22 08:15:36 -07:00
replace.h fix(kernel/replace): make it more robust, and add clear method 2013-11-20 13:19:21 -08:00
replace_visitor.cpp feat(kernel): add (optional) field m_type to expr_const, this field is useful for implementing the tactic framework 2013-11-19 11:21:52 -08:00
replace_visitor.h feat(kernel/expr): add hash code based on allocation time 2013-11-14 02:43:11 -08:00
threadsafe_environment.h refactor(bindings/lua): move Lua bindings to the file associated with them 2013-11-26 19:15:56 -08:00
type_checker.cpp feat(kernel): add is_bool predicate 2013-11-26 11:34:50 -08:00
type_checker.h feat(*): simplify interrupt propagation 2013-11-12 21:45:48 -08:00
type_checker_justification.cpp refactor(kernel): rename trace to justification 2013-10-23 13:42:17 -07:00
type_checker_justification.h refactor(kernel): rename trace to justification 2013-10-23 13:42:17 -07:00
unification_constraint.cpp fix(kernel/unification_constraint): memory leak 2013-10-25 08:06:21 -07:00
unification_constraint.h fix(style): missing include 2013-10-25 08:10:28 -07:00
value.h Modify Doxygen file to extract all elements even the undocumented ones. Disable warnings for undocumented entities. Add extra comments. 2013-09-13 13:46:22 -07:00