File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ to its `k` closest `points`.
68
68
- `dir`: The direction of the edges. If `dir=:in` edges go from the `k`
69
69
neighbors to the central node. If `dir=:out` we have the opposite
70
70
direction.
71
- - `kws`: Further keyword arguments will be passed to the [`GNNGraph ](@ref) constructor.
71
+ - `kws`: Further keyword arguments will be passed to the [`GNNGraph` ](@ref) constructor.
72
72
73
73
# Examples
74
74
@@ -130,11 +130,11 @@ end
130
130
131
131
"""
132
132
radius_graph(points::AbstractMatrix,
133
- r::AbstractFloat;
134
- graph_indicator = nothing,
135
- self_loops = false,
136
- dir = :in,
137
- kws...)
133
+ r::AbstractFloat;
134
+ graph_indicator = nothing,
135
+ self_loops = false,
136
+ dir = :in,
137
+ kws...)
138
138
139
139
Create a graph where each node is linked
140
140
to its neighbors within a given distance `r`.
@@ -150,7 +150,7 @@ to its neighbors within a given distance `r`.
150
150
- `dir`: The direction of the edges. If `dir=:in` edges go from the
151
151
neighbors to the central node. If `dir=:out` we have the opposite
152
152
direction.
153
- - `kws`: Further keyword arguments will be passed to the [`GNNGraph ](@ref) constructor.
153
+ - `kws`: Further keyword arguments will be passed to the [`GNNGraph` ](@ref) constructor.
154
154
155
155
# Examples
156
156
You can’t perform that action at this time.
0 commit comments