File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
"""
6
6
LinearPath()
7
7
8
- Traverse a domain with `N ` elements in order `1:N `.
8
+ Traverse a domain with `n ` elements in order `1:n `.
9
9
"""
10
10
struct LinearPath <: Path end
11
11
Original file line number Diff line number Diff line change 5
5
"""
6
6
RandomPath()
7
7
8
- Traverse a domain with `N ` elements in a random
9
- permutation of `1:N `.
8
+ Traverse a domain with `n ` elements in a random
9
+ permutation of `1:n `.
10
10
"""
11
11
struct RandomPath{R<: AbstractRNG } <: Path
12
12
rng:: R
Original file line number Diff line number Diff line change 5
5
"""
6
6
ShiftedPath(path, offset)
7
7
8
- Traverse a domain with the `path` shifted by an `offset`
9
- that can be positive or negative.
8
+ Traverse a domain with the `path` shifted by an integer
9
+ `offset` that can be positive or negative.
10
10
"""
11
11
struct ShiftedPath{P<: Path } <: Path
12
12
path:: P
You can’t perform that action at this time.
0 commit comments