Skip to content
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
4 changes: 2 additions & 2 deletions docs/src/submodules/Bridges/implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ arguments: the type of the bridge, the input model as a string, and the output
model as a string.

Here is an example:
```jldoctest; filter=r"[0-9.]+s"
```jldoctest; filter=[r"[0-9.]+s", r"\s+Time"]
julia> MOI.Bridges.runtests(
MOI.Bridges.Constraint.GreaterToLessBridge,
"""
Expand Down Expand Up @@ -100,7 +100,7 @@ There are a number of other useful keyword arguments.

Here is an example:

```jldoctest; filter=r"[0-9.]+s"
```jldoctest; filter=[r"[0-9.]+s", r"\s+Time"]
julia> MOI.Bridges.runtests(
MOI.Bridges.Constraint.GreaterToLessBridge,
"""
Expand Down
4 changes: 2 additions & 2 deletions src/Bridges/Bridges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ and [`MOI.ConstraintPrimalStart`](@ref) to throw [`MOI.GetAttributeNotAllowed`](

## Example

```jldoctest; filter=r"[0-9.]+s"
```jldoctest; filter=[r"[0-9.]+s", r"\\s+Time"]
julia> MOI.Bridges.runtests(
MOI.Bridges.Constraint.ZeroOneBridge,
model -> MOI.add_constrained_variable(model, MOI.ZeroOne()),
Expand Down Expand Up @@ -423,7 +423,7 @@ Run a series of tests that check the correctness of `Bridge`.

## Example

```jldoctest; filter=r"[0-9.]+s"
```jldoctest; filter=[r"[0-9.]+s", r"\\s+Time"]
julia> MOI.Bridges.runtests(
MOI.Bridges.Constraint.ZeroOneBridge,
\"\"\"
Expand Down
Loading