sdboyer / gogl

A graph library in Go
MIT License
77 stars 13 forks source link

Move adjacency lists into subpackage #31

Closed sdboyer closed 10 years ago

sdboyer commented 10 years ago

adjacency lists should be in a subpackage, not polluting the main package. the expectation should be that client code will import subpackage(s) with the datastructure(s) they want.

one big benefit there - adjacency lists can then safely import gogl/rand, which is the foundation for proper benchmarking.

sdboyer commented 10 years ago

ugh, but doesn't this just annoyingly kill test coverage numbers :(