We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Vampire's FiniteModelBuilder relies on the following idiom
TermList srtT = SortHelper::getResultSort(left->term()); unsigned srt = srtT.term()->functor();
to turn TermList sorts into unsigneds. This will potentially break for compound sorts, most notably, array sorts.
TermList
unsigned
(E.g. the sort of arrays from a to b will get confused with the sort of arrays from b to c.)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Vampire's FiniteModelBuilder relies on the following idiom
to turn
TermList
sorts intounsigned
s. This will potentially break for compound sorts, most notably, array sorts.(E.g. the sort of arrays from a to b will get confused with the sort of arrays from b to c.)
The text was updated successfully, but these errors were encountered: