Re: [racket-users] Using the graph library

2016-10-31 Thread Stephen Chang
Hi Lawrence, Can you provide some more context? Are you looking to learn about graphs in general, or specifically about the graph library API. For the former, any well known algorithms textbook should have a decent introduction. I used CLRS [1] as a guide when developing the library. For the la

Re: [racket-users] Using the graph library

2016-10-29 Thread Daniel Prager
Starting at the very beginning, you could pick up some material on graph theory, and work through it, while making use of the graph library. E.g. Here's an introduction to the absolute basics of Graph Theory: https://www.youtube.com/watch?v=HmQR8Xy9DeM And here I've followed along in Racket, fi

Re: [racket-users] Using the graph library

2016-10-29 Thread Lawrence Bottorff
On Saturday, October 29, 2016 at 3:06:18 PM UTC-4, jhemann wrote: > Stephen's talk at 4th Racketcon (https://www.youtube.com/watch?v=SvYJF5HC19w) > gave me a good tutorial-ish introduction.  > > > JBH > > > On Sat, Oct 29, 2016 at 8:59 PM, Lawrence Bottorff wrote: > I see the Racket Generic G

Re: [racket-users] Using the graph library

2016-10-29 Thread Jason Hemann
Stephen's talk at 4th Racketcon (https://www.youtube.com/watch?v=SvYJF5HC19w) gave me a good tutorial-ish introduction. JBH On Sat, Oct 29, 2016 at 8:59 PM, Lawrence Bottorff wrote: > I see the Racket Generic Graph Library, but I don't know how to use it. > Where would one go to learn, tutorial

[racket-users] Using the graph library

2016-10-29 Thread Lawrence Bottorff
I see the Racket Generic Graph Library, but I don't know how to use it. Where would one go to learn, tutorial-style" the ins and outs of using this library? I take it this library allows you to "roll your own" graph database? I did notice the HTDP has a section on graph things. Would this help?