edechter

Results 5 comments of edechter

I had the same problem. If you look at the bottom of the starcluster [home page](http://star.mit.edu/cluster/) it mentions the latest AMIs: Latest Stable AMI IDs (us-east-1): ami-7c5c3915 (i386) ami-765b3e1f (x86_64)...

On Thu, Oct 6, 2016 at 2:50 AM, Jan Wielemaker [email protected] wrote: > Notebooks open full screen. If I go to http://swish.swi-prolog.org/ and click on an example notebook from the...

As I mentioned in the email on the swipl mailing list, I have implemented this using attributed variables, as Jan suggested. The pack is [here](https://github.com/edechter/open_dicts). In addition, I've implemented some...

I changed the syntax last night. A dict with a + appended to it is an open dict. So the above code now looks like: ``` prolog ?- use_module(library(open_dicts)). ?-...

For completeness, here is your parsing example (I added the word "we"): ``` prolog :- use_module(library(open_dicts)). s(S) --> np(NP), vp(VP), { S.^head = VP.^head, S.^head.^subject = NP.^head }. np(NP) -->...