lean2/src/kernel
2014-01-07 13:43:22 -08:00
..
abstract.cpp feat(kernel/replace_fn): add template replace that captures commonly used pattern 2013-12-17 18:31:59 -08:00
abstract.h refactor(kernel/expr): remove 'null' expression, and operator bool for expression 2013-12-07 23:21:10 -08:00
builtin.cpp feat(*): change name conventions for Lean builtin libraries 2014-01-05 19:21:44 -08:00
builtin.h fix(kernel): remove ios hack 2014-01-02 13:03:25 -08:00
CMakeLists.txt feat(kernel/universe_constraints): add new class for managing universe constraints 2014-01-06 15:01:28 -08:00
context.cpp refactor(library/elaborator): remove hackish rule 2014-01-01 10:55:39 -08:00
context.h refactor(library/elaborator): remove hackish rule 2014-01-01 10:55:39 -08:00
decl_macros.h refactor(kernel/builtin): move helper decl macros to a separate file 2013-12-30 11:51:30 -08:00
environment.cpp fix(kernel/environment): we should not add an universe contraint object to the set of object when an integer overflow occurs 2014-01-07 13:43:22 -08:00
environment.h feat(kernel): add get_universe_distance method 2014-01-06 17:13:13 -08:00
expr.cpp feat(kernel/expr): maximize sharing before serializing 2014-01-02 20:03:42 -08:00
expr.h chore(*): cleanup builtin registration 2013-12-30 12:19:00 -08:00
expr_eq.h refactor(kernel/expr): remove 'null' expression, and operator bool for expression 2013-12-07 23:21:10 -08:00
expr_maps.h refactor(*): uses aliases for unordered_map and unordered_set 2013-12-18 12:30:45 -08:00
expr_sets.h refactor(*): uses aliases for unordered_map and unordered_set 2013-12-18 12:30:45 -08:00
find_fn.h feat(kernel/expr): add some_expr and none_expr for building values of type optional<expr> 2013-12-08 10:34:38 -08:00
for_each_fn.h refactor(kernel/expr): remove 'null' expression, and operator bool for expression 2013-12-07 23:21:10 -08:00
formatter.cpp refactor(kernel): move printer to library, cleanup io_state interface 2014-01-02 13:37:50 -08:00
formatter.h refactor(kernel): move printer to library, cleanup io_state interface 2014-01-02 13:37:50 -08:00
free_vars.cpp fix(library/elaborator): bug at method process_metavar_inst, add new test that exposed the bug 2014-01-01 03:02:41 -08:00
free_vars.h fix(library/elaborator): bug at method process_metavar_inst, add new test that exposed the bug 2014-01-01 03:02:41 -08:00
instantiate.cpp refactor(kernel/instantiate): remove hackish (dead) function 2013-12-20 14:37:05 -08:00
instantiate.h refactor(kernel/instantiate): remove hackish (dead) function 2013-12-20 14:37:05 -08:00
io_state.cpp refactor(kernel): move printer to library, cleanup io_state interface 2014-01-02 13:37:50 -08:00
io_state.h refactor(kernel): move printer to library, cleanup io_state interface 2014-01-02 13:37:50 -08:00
justification.cpp feat(kernel, library/elaborator, frontends/lean): improve how elaborator_exceptions are displayed in the Lean frontend 2014-01-03 17:18:23 -08:00
justification.h feat(kernel, library/elaborator, frontends/lean): improve how elaborator_exceptions are displayed in the Lean frontend 2014-01-03 17:18:23 -08:00
kernel_exception.cpp fix(kernel/kernel_exception): incorrect pp method 2013-12-19 14:46:22 -08:00
kernel_exception.h feat(kernel): export/import (.olean) binary files 2013-12-28 17:31:35 -08:00
level.cpp feat(deserializer): protect against corrupted binary files 2013-12-30 18:05:38 -08:00
level.h feat(kernel/level): serializer for level objects 2013-12-27 23:30:13 -08:00
max_sharing.cpp feat(kernel/expr): maximize sharing before serializing 2014-01-02 20:03:42 -08:00
max_sharing.h feat(kernel/expr): maximize sharing before serializing 2014-01-02 20:03:42 -08:00
metavar.cpp feat(kernel, library/elaborator, frontends/lean): improve how elaborator_exceptions are displayed in the Lean frontend 2014-01-03 17:18:23 -08:00
metavar.h feat(kernel, library/elaborator, frontends/lean): improve how elaborator_exceptions are displayed in the Lean frontend 2014-01-03 17:18:23 -08:00
normalizer.cpp fix(kernel/normalizer): metavariable reification was incorrect, add tst11 at tests/kernel/normalizer.cpp to expose the bug 2013-12-31 16:24:36 -08:00
normalizer.h refactor(kernel): add unfold_opaque flag to normalizer, modify how type checker uses the opaque flag, remove hidden_defs, and mark most builtin definitions as opaque 2013-12-20 12:47:47 -08:00
object.cpp feat(kernel): use new universe contraints in the environment, allow new constraints to be added 2014-01-06 16:46:11 -08:00
object.h feat(kernel): use new universe contraints in the environment, allow new constraints to be added 2014-01-06 16:46:11 -08:00
occurs.cpp chore(*): use 'explicit operator bool' everywhere. 2013-12-02 23:02:45 -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
replace_fn.h fix(kernel/replace_fn): ignore the cached type in constants 2013-12-24 21:11:25 -08:00
replace_visitor.cpp fix(kernel): incorrect use of scoped_map 2013-12-16 15:11:39 -08:00
replace_visitor.h refactor(*): uses aliases for unordered_map and unordered_set 2013-12-18 12:30:45 -08:00
threadsafe_environment.h refactor(kernel/environment): add ro_environment 2013-12-12 16:48:34 -08:00
type_checker.cpp fix(library/tactic/apply_tactic): bug in apply_tac 2013-12-24 15:54:56 -08:00
type_checker.h fix(library/tactic/apply_tactic): bug in apply_tac 2013-12-24 15:54:56 -08:00
type_checker_justification.cpp feat(kernel, library/elaborator, frontends/lean): improve how elaborator_exceptions are displayed in the Lean frontend 2014-01-03 17:18:23 -08:00
type_checker_justification.h feat(kernel, library/elaborator, frontends/lean): improve how elaborator_exceptions are displayed in the Lean frontend 2014-01-03 17:18:23 -08:00
unification_constraint.cpp fix(library/elaborator): remove_detail procedure was keeping a lot of details when typeof_mvar_justification was being used 2014-01-07 13:24:46 -08:00
unification_constraint.h fix(library/elaborator): remove_detail procedure was keeping a lot of details when typeof_mvar_justification was being used 2014-01-07 13:24:46 -08:00
universe_constraints.cpp fix(kernel/environment): we should not add an universe contraint object to the set of object when an integer overflow occurs 2014-01-07 13:43:22 -08:00
universe_constraints.h fix(kernel/environment): we should not add an universe contraint object to the set of object when an integer overflow occurs 2014-01-07 13:43:22 -08:00
update_expr.cpp feat(kernel/replace_fn): non-recursive replace_fn 2013-12-17 16:35:39 -08:00
update_expr.h feat(kernel/replace_fn): non-recursive replace_fn 2013-12-17 16:35:39 -08:00
value.h refactor(kernel/expr): value deserializer 2013-12-29 20:47:14 -08:00