Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ The current design avoids populating your environment with unnecessary dependenc
[GML]: https://en.wikipedia.org/wiki/Graph_Modelling_Language
[Graph6]: https://users.cecs.anu.edu.au/~bdm/data/formats.html
[GraphML]: https://en.wikipedia.org/wiki/GraphML
[Pajek NET]: https://gephi.org/users/supported-graph-formats/pajek-net-format/
[GEXF]: https://gephi.org/gexf/format/
[Pajek NET]: https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format
[GEXF]: https://docs.gephi.org/desktop/User_Manual/Import/GEXF_File_Format
[DOT]: https://en.wikipedia.org/wiki/DOT_(graph_description_language)
4 changes: 2 additions & 2 deletions src/NET/Net.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct NETFormat <: AbstractGraphFormat end
"""
savenet(io, g, gname="g")

Write a graph `g` to an IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/)
Write a graph `g` to an IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format)
format. Return 1 (number of graphs written).
"""
function savenet(io::IO, g::Graphs.AbstractGraph, gname::String="g")
Expand All @@ -32,7 +32,7 @@ end
"""
loadnet(io::IO, gname="graph")

Read a graph from IO stream `io` in the [Pajek NET](http://gephi.github.io/users/supported-graph-formats/pajek-net-format/)
Read a graph from IO stream `io` in the [Pajek NET](https://docs.gephi.org/desktop/User_Manual/Import/Pajek_NET_Format)
format. Return the graph.
"""
function loadnet(io::IO, gname::String="graph")
Expand Down
Loading