[Lemon-user] Multithreaded usage examples

2016-09-18 Thread Ruby Spring
Hi: First time user here. Are there examples of multi-threaded usage. I just see some references to the whole package being thread safe. If I want to implement a threaded bfs, I have to reimplement bfs? Thanks. ___ Lemon-user mailing list Lemon-user@lem

Re: [Lemon-user] Multithreaded usage examples

2016-09-18 Thread Alpar Juttner
Hi, LEMON is thread safe in the common (weak) sense, i.e. each data structure can safely be accessed in parallel assuming that they do not modify it (*), and more than one instance of the same algorithms can be run in parallel, assuming again that they do not alter their input. Currently, LEMON do