forked from kythe/kythe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(verifier): avoid the arity ceiling in outputs (kythe#5939)
* feat(verifier): avoid the arity ceiling in outputs The new solver/Souffle has a hard limit on the arity of relations. This is tunable but requires a change to the library. Before this PR, that limit (20 as I write this) was easy to reach through inspections, especially when `--annotated_graphviz` is on (which adds an inspection to *every* evar). Luckily, this limit does not apply to records. This PR changes lowering to use a unary output relation when inspections are on. The single element is a record containing the values of the inspected evars.
- Loading branch information
Showing
3 changed files
with
71 additions
and
9 deletions.
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