Re: Algorithms Library - Asking for Pointers

2011-09-03 Thread Travis Parks
On Sep 3, 12:35 am, Chris Torek nos...@torek.net wrote: In article 18fe4afd-569b-4580-a629-50f6c7482...@c29g2000yqd.googlegroups.com Travis Parks  jehugalea...@gmail.com wrote: [Someone] commented that the itertools algorithms will perform faster than the hand-written ones. Are these

Algorithms Library - Asking for Pointers

2011-09-02 Thread Travis Parks
Hello: I am working on an algorithms library. It provides LINQ like functionality to Python iterators. Eventually, I plan on having feaures that work against sequences and mappings. I have the code up at http://code.google.com/p/py-compass. This is my first project in Python, so I'd like some

Re: Algorithms Library - Asking for Pointers

2011-09-02 Thread Ian Kelly
On Fri, Sep 2, 2011 at 10:59 AM, Travis Parks jehugalea...@gmail.com wrote: Hello: I am working on an algorithms library. It provides LINQ like functionality to Python iterators. Eventually, I plan on having feaures that work against sequences and mappings. I have the code up at

Re: Algorithms Library - Asking for Pointers

2011-09-02 Thread Travis Parks
On Sep 2, 4:09 pm, Ian Kelly ian.g.ke...@gmail.com wrote: On Fri, Sep 2, 2011 at 10:59 AM, Travis Parks jehugalea...@gmail.com wrote: Hello: I am working on an algorithms library. It provides LINQ like functionality to Python iterators. Eventually, I plan on having feaures that work

Re: Algorithms Library - Asking for Pointers

2011-09-02 Thread Travis Parks
On Sep 2, 6:49 pm, Travis Parks jehugalea...@gmail.com wrote: On Sep 2, 4:09 pm, Ian Kelly ian.g.ke...@gmail.com wrote: On Fri, Sep 2, 2011 at 10:59 AM, Travis Parks jehugalea...@gmail.com wrote: Hello: I am working on an algorithms library. It provides LINQ like functionality

Re: Algorithms Library - Asking for Pointers

2011-09-02 Thread Chris Rebert
On Fri, Sep 2, 2011 at 6:39 PM, Travis Parks jehugalea...@gmail.com wrote: snip You commented that the itertools algorithms will perform faster than the hand-written ones. Are these algorithms optimized internally? For one thing, they are written in C. Cheers, Chris --

Re: Algorithms Library - Asking for Pointers

2011-09-02 Thread Chris Torek
In article 18fe4afd-569b-4580-a629-50f6c7482...@c29g2000yqd.googlegroups.com Travis Parks jehugalea...@gmail.com wrote: [Someone] commented that the itertools algorithms will perform faster than the hand-written ones. Are these algorithms optimized internally? They are written in C, so avoid a