-
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
Auto traits #54
Merged
Merged
Auto traits #54
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d0ab9ac
First try for negative impls and auto traits
scalexm 7796360
Add documentation and tests
scalexm 779ae25
Add coherence rules
scalexm 12baae7
Merge branch 'master' into cologic
scalexm 2216603
Fix tests and wf for negative bounds
scalexm 3c66e1d
Change strategy for coinductive semantics
scalexm 70f70f5
Add documentation
scalexm a555776
Disable negative trait bounds
scalexm 7f34963
Change syntax for auto traits
scalexm d76c379
Add newline at end of solve/test.rs
scalexm 82ed96b
Merge branch 'master' into cologic
scalexm 6863ff1
Add missing last element of a coinductive cycle
scalexm 4844044
Change a test and some other minor things
scalexm 72e6553
Do not expand where clauses for default impls
scalexm 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
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.
Heh. =) Funny oversight. Maybe add a test for this? Maybe not worth it.
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.
Actually I realised that from a correctness point of view, that's the same thing because we already know that there is a cycle starting at index
index
, so the very first element of our iterator is also our current goal already. Anyway, let's keep it that way :)