-
Notifications
You must be signed in to change notification settings - Fork 5
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
Port to SWI Prolog 6 #6
Comments
Engine seams to work
|
It might be worth taking another slightly-closer look. I've just tracked down a bug in the android version where patterns weren't being rotated correctly. The siteswap/14 predicate was returning both 42p11p and 2p11p4 (for example). It was because is_biggest compares the result of compare/3 with the atoms 'lt' and 'gt', but compare/3 actually produces the atoms '<' and '>'. Changing the test "Order = lt" to "Order = <" (and similarly for gt) got all the rotations to work correctly (I hope). |
just got this codebase to work here with swi-prolog 9.2.1 on ubuntu... or maybe it works... at least it seems to work on first sight |
Nice 🎉 |
yeah i found it too... just commented out the link haha... but i'll cleanup a bit and publish the updated codebase next week... only one patch in there... the dcg_whitespace didn't work properly |
Apparently, PrechacThis does not run on the current version 6 of SWI-Prolog. That means no installation the desktop, no cross compiling.
The text was updated successfully, but these errors were encountered: