[Chicken-users] Parallel map

2019-03-31 Thread Francesco Montanari
Hi, I'm trying to implement a simple parallel map. (I'm aware about the MPI egg, it actually works fine for me, but I'd like to have something more lightweight. I managed to write a parallel map with the hardwood egg, but since it uses green threads it is not convenient for my use cases. I had

Re: [Chicken-users] Gnuplot pipe

2019-02-08 Thread Francesco Montanari
Hi Mario, On 2/6/19 7:46 PM, Mario Domenech Goulart wrote: Thanks a lot. Your egg has been added to the coop. Thanks! I also added tests. However, if they fail because gnuplot is not installed maybe I should just rename tests/run.scm? I'd say it's ok to assume that gnuplot is installed,

Re: [Chicken-users] Gnuplot pipe

2019-02-04 Thread Francesco Montanari
Hi, On 1/21/19 7:08 AM, Mario Domenech Goulart wrote: If you have a chance, please consider porting it to CHICKEN 5 too. I ported the egg to CHICKEN 5 and added a new release file: https://gitlab.com/montanari/gnuplot-pipe/raw/master/gnuplot-pipe.c5.release-info I also added tests. However,

Re: [Chicken-users] Gnuplot pipe

2019-01-21 Thread Francesco Montanari
Hi Andy, On 1/20/19 10:23 PM, Andy Bennett wrote: This is great! I installed it and worked through the examples in the README. I've been thinking for a while about how I might easily draw charts with CHICKEN and this seems to be it. Great! It would be nice to have a more complete plotting

Re: [Chicken-users] Gnuplot pipe

2019-01-21 Thread Francesco Montanari
Hi Mario, On 1/21/19 7:08 AM, Mario Domenech Goulart wrote: Thanks a lot. Your egg has been added to the coop. Thanks! If you have a chance, please consider porting it to CHICKEN 5 too. Yes, I'll add wiki documentation and also port it to CHICKEN 5 asap. Best, Francesco

[Chicken-users] Gnuplot pipe

2019-01-18 Thread Francesco Montanari
Hi, I put together a simple interface to Gnuplot, basically popen() with a couple of procedures to plot lists. The motivation is mainly to draw exploratory plots from the interpreter. If you think this may be useful as an egg I'm happy to add wiki documentation. Comments welcome.