Removes NamedGraph(path_graph(3); vertices=["a", "b", "c"]) in favor of NamedGraph(path_graph(3), ["a", "b", "c"]), and NamedGraph(grid((2, 2)); vertices=(2, 2)) in favor of NamedGraph(grid((2, 2)), Tuple.(CartesianIndices((2, 2)))), which may be simplified to cartesian_graph(grid((2, 2)), (2, 2)) in the future (#42).
Removes
NamedGraph(path_graph(3); vertices=["a", "b", "c"])
in favor ofNamedGraph(path_graph(3), ["a", "b", "c"])
, andNamedGraph(grid((2, 2)); vertices=(2, 2))
in favor ofNamedGraph(grid((2, 2)), Tuple.(CartesianIndices((2, 2))))
, which may be simplified tocartesian_graph(grid((2, 2)), (2, 2))
in the future (#42).