OldGraphs.jl icon indicating copy to clipboard operation
OldGraphs.jl copied to clipboard

Working with graphs in Julia

Results 50 OldGraphs.jl issues
Sort by recently updated
recently updated
newest added

If anyone could point me to some references on how to do testing for Julia packages, I'll include the tests in another PR. Also, should we give users a choice...

I know I'm probably missing something here, but it appears there is currently nosupport in any of the graph APIs to allow edge/vertex removal? Is this intentional or not implemented...

I'd like to try and implement the very neat [k-clique communities algorithm](http://networkx.github.io/documentation/latest/_modules/networkx/algorithms/community/kclique.html) used in NetworkX. But that relies on a general clique-finding algorithm. The first pass at that might as...

It looks like most (all?) of the built-in graph constructors and convenient type aliases (like IncidenceList) assume an `Edge` type instead of `ExEdge`, and `add_edge!` and related methods don't accept...

I'm looking for something like this: http://networkx.github.io/documentation/latest/reference/generated/networkx.algorithms.simple_paths.all_simple_paths.html

This may finally address #40. Or modify `test_cyclic_by_dfs` to make it handle undirected graphs.

I was going to implement reading and writing graphML and gexf files. Before I created a dependency on an external package I wanted to see what people thought of XML.jl...

I've started working on attribute support. My goal is to support all the graph attributes you can serialize into a dot file, which means - [ ] attributes for the...

I keep forgetting to put a semicolon after creating a GenericAdjacencyList object and some of them I am working with have hundreds of thousands of edges. Could you rework the...

There is a discussion on graph data structure and algorithm design that started out at: https://github.com/JuliaLang/METADATA.jl/pull/91 I am opening this issue to bring that discussion here. Cc: @daviddelaat @lindahua