Skip to content

Commit af0b8f0

Browse files
committed
update formulation
1 parent a0fb551 commit af0b8f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ The `solve` routines takes the following options:
384384
then no further paths are tracked and the computation is finished. This is only called
385385
for successfull paths. This is for example useful if you only want to compute one solution
386386
of a polynomial system. For this `stop_early_cb = _ -> true` would be sufficient.
387-
* `threading = true`: Enable multi-threading for the computation. The number of available threads is controlled by the environment variable `JULIA_NUM_THREADS`. You can run `Julia` using `n` threads using the command `julia -t n`; e.g., `julia -t 8` for `n=8`. (Some CPUs hang when using multiple threads. To avoid this run Julia with 1 interactive thread for the REPL; e.g., `julia -t 8,1` for `n=8`. Note that some CPUs seem to let `Julia` crash when using that option.)
387+
* `threading = true`: Enable multi-threading for the computation. The number of available threads is controlled by the environment variable `JULIA_NUM_THREADS`. You can run `Julia` with `n` threads using the command `julia -t n`; e.g., `julia -t 8` for `n=8`. (Some CPUs hang when using multiple threads. To avoid this run Julia with 1 interactive thread for the REPL; e.g., `julia -t 8,1` for `n=8`. Note that some CPUs seem to let `Julia` crash when using that option.)
388388
* `tracker_options`: The options and parameters for the path tracker.
389389
See [`TrackerOptions`](@ref).
390390

0 commit comments

Comments
 (0)