lean4-htt/library/init/category
Leonardo de Moura d34386fef7 perf(frontends/lean/tactic_notation): closes #1345
We can now elaborate
https://gist.github.com/gebner/439273deee592603190d4f8b4447295b
in 1.6 secs and using less than 500Kb of stack space.
It was takins 44 secs and 5Mb before this commit.

Two modifications:
1) Use pre_monad.seq instead of pre_monad.and_then.
They have the same implementation, but seq is not marked as [inline].

2) Modify how we concatenate the tactics in a begin...end block.
Before: (((a_1 ++ a_2) ++ a_3) ++ a_4)
After:  ((a_1 ++ a_2) ++ (a_3 ++ a_4))
2017-01-30 14:13:53 -08:00
..
alternative.lean refactor(library/init): create init.category folder 2016-12-02 15:52:49 -08:00
applicative.lean refactor(library/init): create init.category folder 2016-12-02 15:52:49 -08:00
combinators.lean feat(frontends/lean): (Type u) can't be a proposition 2017-01-30 11:54:00 -08:00
default.lean refactor(library/data/monad/transformers): move transformers to init 2016-12-31 11:37:13 -08:00
functor.lean feat(frontends/lean/definition_cmds): generate equational lemmas for regular definitions that were elaborated without using the equation compiler 2017-01-05 18:02:14 -08:00
monad.lean perf(frontends/lean/tactic_notation): closes #1345 2017-01-30 14:13:53 -08:00
state.lean feat(library/tools/super): add super prover 2016-12-16 18:18:13 -08:00
transformers.lean feat(library/init/category/transformers): disable instance has_monad_lift_t ==> has_coe 2017-01-01 09:15:25 -08:00