-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add RULES for Data.IntMap.alterF #467
Open
m-renaud
wants to merge
18
commits into
haskell:master
Choose a base branch
from
m-renaud:alterf-rules
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
f437af1
Initial implementation of alterF RULES.
m-renaud 091a82d
Add unit tests for alterF inline RULES.
m-renaud b70c8a1
Fix imports in IntMap/Internal.hs
m-renaud 75961b5
Add property test for alterF rules.
m-renaud c1bedde
Add benchmarks for alterF rewrite rules.
m-renaud 85dafee
Remove uses of Applicative and pure.
m-renaud f3f7a27
Use coerce and newtype for TestIdentity and TestConst.
m-renaud 4ffbc19
Used Const . getConst in alterF rewrite.
m-renaud 2ea64a8
Remove INLINE or NOINLINE todo.
m-renaud cfc3730
Use coerce to define TestIdentity functor instance.
m-renaud 08e1b1f
Organize benchmarks into NoRewrite and Rewrite.
m-renaud 2564074
Make alterF to INLINEABLE.
m-renaud 482dfc8
Merge branch 'master' into alterf-rules
m-renaud d400df5
make prop_alterF_IdentityRules a property.
m-renaud fd5d2dc
Undo unintentional change to stack.yaml.
m-renaud e19a556
INLINABLE, not INLINEABLE.
m-renaud 8fd1b25
Remove Const rewrite RULES for alterF.
m-renaud 164ef90
Add more granular benchmarks.
m-renaud File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Waait a minute. You're only testing one way of using
alterF
! Please copy over the relevantData.Map
benchmarks and test properly! Also,pure . id
is the same aspure
.....