summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2018-01-19 15:07:06 -0800
committerJarrod Millman <jarrod.millman@gmail.com>2018-01-20 01:27:28 -0800
commitea3a8826385f543775e2c6b147cbffcd289527da (patch)
treef0978401d2c4bb9cee18bc3620d92e255f8b31ae /examples
parent59d294f7ab3f5e894951c1e1a8a8943acaf6710b (diff)
downloadnetworkx-ea3a8826385f543775e2c6b147cbffcd289527da.tar.gz
Update copyright
Diffstat (limited to 'examples')
-rw-r--r--examples/advanced/plot_heavy_metal_umlaut.py2
-rw-r--r--examples/algorithms/beam_search.py2
-rw-r--r--examples/algorithms/plot_krackhardt_centrality.py2
-rw-r--r--examples/algorithms/rcm.py2
-rw-r--r--examples/basic/plot_properties.py2
-rw-r--r--examples/basic/plot_read_write.py2
-rw-r--r--examples/drawing/plot_atlas.py2
-rw-r--r--examples/drawing/plot_chess_masters.py2
-rw-r--r--examples/drawing/plot_four_grids.py2
-rw-r--r--examples/drawing/plot_giant_component.py2
-rw-r--r--examples/drawing/plot_knuth_miles.py2
-rw-r--r--examples/drawing/plot_lanl_routes.py2
-rw-r--r--examples/drawing/plot_sampson.py2
-rw-r--r--examples/drawing/plot_unix_email.py2
-rw-r--r--examples/graph/atlas2.py2
-rw-r--r--examples/graph/expected_degree_sequence.py2
-rw-r--r--examples/graph/plot_degree_sequence.py2
-rw-r--r--examples/graph/plot_erdos_renyi.py2
-rw-r--r--examples/graph/plot_football.py2
-rw-r--r--examples/graph/plot_napoleon_russian_campaign.py2
-rw-r--r--examples/graph/plot_roget.py2
-rw-r--r--examples/graph/words.py2
-rw-r--r--examples/javascript/force.py2
-rw-r--r--examples/pygraphviz/pygraphviz_attributes.py2
-rw-r--r--examples/pygraphviz/pygraphviz_draw.py2
-rw-r--r--examples/pygraphviz/pygraphviz_simple.py2
-rw-r--r--examples/pygraphviz/write_dotfile.py2
-rw-r--r--examples/subclass/plot_antigraph.py2
-rw-r--r--examples/subclass/plot_printgraph.py2
29 files changed, 29 insertions, 29 deletions
diff --git a/examples/advanced/plot_heavy_metal_umlaut.py b/examples/advanced/plot_heavy_metal_umlaut.py
index 43ab3c59..70c66b6a 100644
--- a/examples/advanced/plot_heavy_metal_umlaut.py
+++ b/examples/advanced/plot_heavy_metal_umlaut.py
@@ -12,7 +12,7 @@ https://en.wikipedia.org/wiki/Heavy_metal_umlaut
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/algorithms/beam_search.py b/examples/algorithms/beam_search.py
index 8fe420db..211002b6 100644
--- a/examples/algorithms/beam_search.py
+++ b/examples/algorithms/beam_search.py
@@ -1,6 +1,6 @@
# beam_search.py - progressive widening beam search
#
-# Copyright 2016-2017 NetworkX developers.
+# Copyright 2016-2018 NetworkX developers.
"""
===========
Beam Search
diff --git a/examples/algorithms/plot_krackhardt_centrality.py b/examples/algorithms/plot_krackhardt_centrality.py
index 392e48d5..ff64373d 100644
--- a/examples/algorithms/plot_krackhardt_centrality.py
+++ b/examples/algorithms/plot_krackhardt_centrality.py
@@ -10,7 +10,7 @@ Centrality measures of Krackhardt social network.
# Date: 2005-05-12 14:33:11 -0600 (Thu, 12 May 2005)
# Revision: 998
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/algorithms/rcm.py b/examples/algorithms/rcm.py
index 8c174a0e..30b2be02 100644
--- a/examples/algorithms/rcm.py
+++ b/examples/algorithms/rcm.py
@@ -9,7 +9,7 @@ The reverse Cuthill-McKee algorithm gives a sparse matrix ordering that
reduces the matrix bandwidth.
"""
-# Copyright (C) 2011-2017 by
+# Copyright (C) 2011-2018 by
# Author: Aric Hagberg <aric.hagberg@gmail.com>
# BSD License
import networkx as nx
diff --git a/examples/basic/plot_properties.py b/examples/basic/plot_properties.py
index 30e055df..7ee1d5c4 100644
--- a/examples/basic/plot_properties.py
+++ b/examples/basic/plot_properties.py
@@ -6,7 +6,7 @@ Properties
Compute some network properties for the lollipop graph.
"""
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/basic/plot_read_write.py b/examples/basic/plot_read_write.py
index b8d8e1a4..2b2d3c84 100644
--- a/examples/basic/plot_read_write.py
+++ b/examples/basic/plot_read_write.py
@@ -8,7 +8,7 @@ Read and write graphs.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_atlas.py b/examples/drawing/plot_atlas.py
index ddcc3791..3de3ce05 100644
--- a/examples/drawing/plot_atlas.py
+++ b/examples/drawing/plot_atlas.py
@@ -9,7 +9,7 @@ Atlas of all graphs of 6 nodes or less.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_chess_masters.py b/examples/drawing/plot_chess_masters.py
index d5daa950..278b4b15 100644
--- a/examples/drawing/plot_chess_masters.py
+++ b/examples/drawing/plot_chess_masters.py
@@ -26,7 +26,7 @@ The key statement in `chess_pgn_graph` below is::
where `game_info` is a `dict` describing each game.
"""
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_four_grids.py b/examples/drawing/plot_four_grids.py
index a97d97c8..9123bb27 100644
--- a/examples/drawing/plot_four_grids.py
+++ b/examples/drawing/plot_four_grids.py
@@ -9,7 +9,7 @@ You must have matplotlib for this to work.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017
+# Copyright (C) 2004-2018
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_giant_component.py b/examples/drawing/plot_giant_component.py
index c2f2a0a5..82d05bf3 100644
--- a/examples/drawing/plot_giant_component.py
+++ b/examples/drawing/plot_giant_component.py
@@ -7,7 +7,7 @@ Giant Component
This example illustrates the sudden appearance of a
giant connected component in a binomial random graph.
"""
-# Copyright (C) 2006-2017
+# Copyright (C) 2006-2018
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_knuth_miles.py b/examples/drawing/plot_knuth_miles.py
index d49a0c1f..bd749f2c 100644
--- a/examples/drawing/plot_knuth_miles.py
+++ b/examples/drawing/plot_knuth_miles.py
@@ -22,7 +22,7 @@ References.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_lanl_routes.py b/examples/drawing/plot_lanl_routes.py
index 0c23fd07..a3266753 100644
--- a/examples/drawing/plot_lanl_routes.py
+++ b/examples/drawing/plot_lanl_routes.py
@@ -11,7 +11,7 @@ This uses Graphviz for layout so you need PyGraphviz or pydot.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017
+# Copyright (C) 2004-2018
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_sampson.py b/examples/drawing/plot_sampson.py
index da9f8e05..9cef98ad 100644
--- a/examples/drawing/plot_sampson.py
+++ b/examples/drawing/plot_sampson.py
@@ -11,7 +11,7 @@ Shows how to read data from a zip file and plot multiple frames.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2010-2017 by
+# Copyright (C) 2010-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/drawing/plot_unix_email.py b/examples/drawing/plot_unix_email.py
index ac7e3b75..fc0af8d6 100644
--- a/examples/drawing/plot_unix_email.py
+++ b/examples/drawing/plot_unix_email.py
@@ -19,7 +19,7 @@ https://raw.githubusercontent.com/networkx/networkx/master/examples/drawing/unix
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2005-2017 by
+# Copyright (C) 2005-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/atlas2.py b/examples/graph/atlas2.py
index 0ee0f479..1c284cb5 100644
--- a/examples/graph/atlas2.py
+++ b/examples/graph/atlas2.py
@@ -10,7 +10,7 @@ Gn.dot where n=0,19.
# Author: Aric Hagberg (hagberg@lanl.gov)
# Date: 2005-05-19 14:23:02 -0600 (Thu, 19 May 2005)
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/expected_degree_sequence.py b/examples/graph/expected_degree_sequence.py
index b6297460..c7e5d5e0 100644
--- a/examples/graph/expected_degree_sequence.py
+++ b/examples/graph/expected_degree_sequence.py
@@ -8,7 +8,7 @@ Random graph from given degree sequence.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/plot_degree_sequence.py b/examples/graph/plot_degree_sequence.py
index 8bba2c74..72910a4e 100644
--- a/examples/graph/plot_degree_sequence.py
+++ b/examples/graph/plot_degree_sequence.py
@@ -10,7 +10,7 @@ Random graph from given degree sequence.
# Date: 2004-11-03 08:11:09 -0700 (Wed, 03 Nov 2004)
# Revision: 503
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/plot_erdos_renyi.py b/examples/graph/plot_erdos_renyi.py
index cedd66e0..03ee435c 100644
--- a/examples/graph/plot_erdos_renyi.py
+++ b/examples/graph/plot_erdos_renyi.py
@@ -14,7 +14,7 @@ sometimes called the Erdős-Rényi graph.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/plot_football.py b/examples/graph/plot_football.py
index c0d184b5..94baca08 100644
--- a/examples/graph/plot_football.py
+++ b/examples/graph/plot_football.py
@@ -14,7 +14,7 @@ http://www-personal.umich.edu/~mejn/netdata/football.zip
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2007-2017 by
+# Copyright (C) 2007-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/plot_napoleon_russian_campaign.py b/examples/graph/plot_napoleon_russian_campaign.py
index 631c60c7..0e48610c 100644
--- a/examples/graph/plot_napoleon_russian_campaign.py
+++ b/examples/graph/plot_napoleon_russian_campaign.py
@@ -10,7 +10,7 @@ http://www.math.yorku.ca/SCS/Gallery/minard/minard.txt
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/plot_roget.py b/examples/graph/plot_roget.py
index bc898675..de66f53f 100644
--- a/examples/graph/plot_roget.py
+++ b/examples/graph/plot_roget.py
@@ -28,7 +28,7 @@ from __future__ import print_function
# Authors: Brendt Wohlberg, Aric Hagberg (hagberg@lanl.gov)
# Date: 2005-04-01 07:56:22 -0700 (Fri, 01 Apr 2005)
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/graph/words.py b/examples/graph/words.py
index 065a9667..f3ff2573 100644
--- a/examples/graph/words.py
+++ b/examples/graph/words.py
@@ -21,7 +21,7 @@ References
# Brendt Wohlberg,
# hughdbrown@yahoo.com
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/javascript/force.py b/examples/javascript/force.py
index 16d86a17..abd572a9 100644
--- a/examples/javascript/force.py
+++ b/examples/javascript/force.py
@@ -7,7 +7,7 @@ Example of writing JSON format graph data and using the D3 Javascript library to
"""
# Author: Aric Hagberg <aric.hagberg@gmail.com>
-# Copyright (C) 2011-2017 by
+# Copyright (C) 2011-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/pygraphviz/pygraphviz_attributes.py b/examples/pygraphviz/pygraphviz_attributes.py
index bb267f18..4735c378 100644
--- a/examples/pygraphviz/pygraphviz_attributes.py
+++ b/examples/pygraphviz/pygraphviz_attributes.py
@@ -12,7 +12,7 @@ http://pygraphviz.github.io/
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/pygraphviz/pygraphviz_draw.py b/examples/pygraphviz/pygraphviz_draw.py
index 1a6c429f..349a58de 100644
--- a/examples/pygraphviz/pygraphviz_draw.py
+++ b/examples/pygraphviz/pygraphviz_draw.py
@@ -12,7 +12,7 @@ http://pygraphviz.github.io/
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/pygraphviz/pygraphviz_simple.py b/examples/pygraphviz/pygraphviz_simple.py
index 93ba6780..0d6e9f29 100644
--- a/examples/pygraphviz/pygraphviz_simple.py
+++ b/examples/pygraphviz/pygraphviz_simple.py
@@ -12,7 +12,7 @@ http://pygraphviz.github.io/
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2006-2017 by
+# Copyright (C) 2006-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/pygraphviz/write_dotfile.py b/examples/pygraphviz/write_dotfile.py
index 7b681e61..5f848a43 100644
--- a/examples/pygraphviz/write_dotfile.py
+++ b/examples/pygraphviz/write_dotfile.py
@@ -15,7 +15,7 @@ for more info.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>
diff --git a/examples/subclass/plot_antigraph.py b/examples/subclass/plot_antigraph.py
index 4588256c..4d94fac2 100644
--- a/examples/subclass/plot_antigraph.py
+++ b/examples/subclass/plot_antigraph.py
@@ -17,7 +17,7 @@ algorithms.
"""
# Author: Jordi Torrents <jtorrents@milnou.net>
-# Copyright (C) 2015-2017 by
+# Copyright (C) 2015-2018 by
# Jordi Torrents <jtorrents@milnou.net>
# All rights reserved.
# BSD license.
diff --git a/examples/subclass/plot_printgraph.py b/examples/subclass/plot_printgraph.py
index 436420e1..e3ff098a 100644
--- a/examples/subclass/plot_printgraph.py
+++ b/examples/subclass/plot_printgraph.py
@@ -7,7 +7,7 @@ Example subclass of the Graph class.
"""
# Author: Aric Hagberg (hagberg@lanl.gov)
-# Copyright (C) 2004-2017 by
+# Copyright (C) 2004-2018 by
# Aric Hagberg <hagberg@lanl.gov>
# Dan Schult <dschult@colgate.edu>
# Pieter Swart <swart@lanl.gov>