-
Notifications
You must be signed in to change notification settings - Fork 208
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
Enhance type error understanding by displaying incompatible constraints #2402
Merged
julienhenry
merged 17 commits into
souffle-lang:master
from
Gueckmooh:Enhancement-error_understanding
Mar 3, 2023
Merged
Enhance type error understanding by displaying incompatible constraints #2402
julienhenry
merged 17 commits into
souffle-lang:master
from
Gueckmooh:Enhancement-error_understanding
Mar 3, 2023
Conversation
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
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #2402 +/- ##
==========================================
+ Coverage 77.56% 77.75% +0.19%
==========================================
Files 467 474 +7
Lines 30785 31164 +379
==========================================
+ Hits 23877 24232 +355
- Misses 6908 6932 +24
|
Gueckmooh
changed the title
Enhancement error understanding
Enhance error understanding by displaying incompatible constraints
Feb 25, 2023
Gueckmooh
changed the title
Enhance error understanding by displaying incompatible constraints
Enhance type error understanding by displaying incompatible constraints
Feb 25, 2023
quentin
reviewed
Feb 27, 2023
quentin
reviewed
Feb 27, 2023
quentin
reviewed
Feb 27, 2023
quentin
reviewed
Feb 28, 2023
julienhenry
approved these changes
Mar 3, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Sometimes it is complicated to understand errors such as
Unable to deduce type for variable a
. I tried to add more information on the cause of the error.For now it is still a work in progress, but I have a few results.
Example
Before
After
How
I added an
ErrorAnalyzer
class that collects the minimal set of incompatible constraints on a problem, similarly to the unsat core of a SAT problem. It is injected into the type analysis to gather those information.Then when emitting errors, it is used to "explain" why the error occurs.
To do
Make deduplication less uglyit's ugly but only when an error occursLet me know if the change looks too intrusive.