Conversation
Splitting this off from #6120, hopefully for faster review. I would like to upstream this file to Std, as it it used by `exact?`. Co-authored-by: Scott Morrison <scott.morrison@gmail.com>
Splitting this off from #6120, hopefully for faster review. I would like to upstream this file to Std, as it it used by `exact?`. Co-authored-by: Scott Morrison <scott.morrison@gmail.com>
Vierkantor
left a comment
There was a problem hiding this comment.
Nice work! I'll have to delegate the MetaM part to someone else but the normal functional program looks good.
robertylewis
left a comment
There was a problem hiding this comment.
This has been held up long enough. @semorrison if you're happy with the current state, let's merge and see how it does in practice.
bors d+
|
✌️ semorrison can now approve this pull request. To approve and merge a pull request, simply reply with |
Co-authored-by: Alex J Best <alex.j.best@gmail.com> Co-authored-by: Rob Lewis <Rob.y.lewis@gmail.com>
|
bors merge |
|
@semorrison just to confirm, you saw the build failure in your last commit before you accepted the suggestions and merged, right? |
Yes. There was a build failure after I merged master, which I've fixed (changes to |
Example usage: ``` example (xs ys : List α) : (xs ++ ys ++ ys).length = 2 * ys.length + xs.length := by rw_search -- Try this: rw [@List.length_append, @List.length_append, @add_rotate, Nat.two_mul] ``` Co-authored-by: Scott Morrison <scott.morrison@gmail.com> Co-authored-by: Mario Carneiro <di.gama@gmail.com>
|
Pull request successfully merged into master. Build succeeded! The publicly hosted instance of bors-ng is deprecated and will go away soon. If you want to self-host your own instance, instructions are here. If you want to switch to GitHub's built-in merge queue, visit their help page. |
rw_search tacticrw_search tactic
Example usage: ``` example (xs ys : List α) : (xs ++ ys ++ ys).length = 2 * ys.length + xs.length := by rw_search -- Try this: rw [@List.length_append, @List.length_append, @add_rotate, Nat.two_mul] ``` Co-authored-by: Scott Morrison <scott.morrison@gmail.com> Co-authored-by: Mario Carneiro <di.gama@gmail.com>
Example usage: