Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] add arxiv.org to linkcheck_ignore because it is flakey #2297

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ write(joinpath(@__DIR__, "src", "MathOptInterface.pdf"), "")
# Ignore issue and pull request links, because there are many of them,
# and they sometimes time-out the linkcheck.
r"https://github.com/jump-dev/MathOptInterface.jl/issues/([0-9]+)",
"https://arxiv.org/abs/2002.03447",
],
modules = [MathOptInterface],
checkdocs = :exports,
Expand Down
5 changes: 2 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ you know where to look for certain things.

## Citing MathOptInterface

A [paper describing the design and features of MathOptInterface](https://arxiv.org/abs/2002.03447)
is available on [arXiv](https://arxiv.org).

If you find MathOptInterface useful in your work, we kindly request that you
cite the following paper:
```bibtex
Expand All @@ -58,3 +55,5 @@ cite the following paper:
publisher={INFORMS}
}
```
A preprint of this paper is [freely available](https://arxiv.org/abs/2002.03447).

2 changes: 1 addition & 1 deletion docs/src/manual/standard_form.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ where:
[`AbstractSet`](@ref) objects

!!! tip
For more information on this standard form, read [our paper](https://arxiv.org/pdf/2002.03447.pdf).
For more information on this standard form, read [our paper](https://arxiv.org/abs/2002.03447).

MOI defines some commonly used functions and sets, but the interface is
extensible to other sets recognized by the solver.
Expand Down
Loading