Skip to content

Commit

Permalink
Remove JULIA_PKGRESOLVE_ACCURACY env var from the docs (#34628)
Browse files Browse the repository at this point in the history
There is no need to have this in the docs. It is not tested and it is part of the internals of the resolver.
  • Loading branch information
KristofferC authored Feb 3, 2020
1 parent cced577 commit 3720edf
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions doc/src/manual/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,20 +146,6 @@ The absolute path `REPL.find_hist_file()` of the REPL's history file. If
$(DEPOT_PATH[1])/logs/repl_history.jl
```

### `JULIA_PKGRESOLVE_ACCURACY`

A positive `Int` that determines how much time the package dependency resolver's max-sum
subroutine `MaxSum.maxsum()` will devote to attempting to satisfy constraints before giving
up. This value's default is `1`, with higher values corresponding to longer amounts of
time.

Suppose the value of `$JULIA_PKGRESOLVE_ACCURACY` is `n`. Then

* the number of pre-decimation iterations is `20*n`,
* the number of iterations between decimation steps is `10*n`, and
* at decimation steps, at most one in every `20*n` packages is decimated.


## External applications

### `JULIA_SHELL`
Expand Down

4 comments on commit 3720edf

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here. cc @maleadt

Please sign in to comment.