about summary refs log tree commit diff
path: root/src/librustc_data_structures/graph/vec_graph/test.rs
AgeCommit message (Collapse)AuthorLines
2019-08-02librustc_data_structures: Unconfigure tests during normal buildVadim Petrochenkov-51/+0
2019-07-02address nits by mattewjasperNiko Matsakis-2/+0
2019-07-02add a `depth_first_search` helper functionNiko Matsakis-0/+7
2019-07-02introduce a `VecGraph` abstraction that cheaply stores graphsNiko Matsakis-0/+46
This is perhaps better than the linked list approach I was using before. Lower memory overhead, Theta(N+E) storage. Does require a sort. =)