Skip to content

Commit 672d9a0

Browse files
authored
Merge pull request #47 from axsk/patch-1
stress: Update docstring defaults
2 parents dcd16d0 + 31f6d47 commit 672d9a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/stress.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ representation of a network and returns coordinates of the nodes.
1616
## Keyword Arguments
1717
- `dim=2`, `Ptype=Float64`: Determines dimension and output type `Point{dim,Ptype}`.
1818
- `iterations=:auto`: maximum number of iterations (`:auto` means `400*N^2` where `N` are the number of vertices)
19-
- `abstols=(√(eps(Float64)))`
19+
- `abstols=0`
2020
2121
Absolute tolerance for convergence of stress. The iterations terminate if the
2222
difference between two successive stresses is less than abstol.
2323
24-
- `reltols=(√(eps(Float64)))`
24+
- `reltols=10e-6`
2525
2626
Relative tolerance for convergence of stress. The iterations terminate if the
2727
difference between two successive stresses relative to the current stress is
2828
less than reltol.
2929
30-
- `abstolx=(√(eps(Float64)))`
30+
- `abstolx=10e-6`
3131
3232
Absolute tolerance for convergence of layout. The iterations terminate if the
3333
Frobenius norm of two successive layouts is less than abstolx.

0 commit comments

Comments
 (0)