After finishing the implementation of multiple, parallel eclipse instances, i'm trying to increase the parallelism further. I have several points in my programm where i'm calling a goal on every element of a list. The calls are independent. It's just like: findall(X,(member(E,List),do(E,X)),Result) I figured, it shouldn't be very hard to parallise this by using par_member instead of member. But my small test programm: :- lib("par_util"). p(X) :- findall(Y,par_member(Y,[1,2,3,4,5,6,7,8,9]),X). is crashing eclipse ? (called via tkeclipse, Windows XP) best regards Christian WirthReceived on Wed Jun 30 2010 - 17:48:44 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET