Skip to content

Commit

Permalink
Merge pull request #878 from JuliaReach/schillic/71
Browse files Browse the repository at this point in the history
Use strict doctests again
  • Loading branch information
schillic authored Nov 4, 2018
2 parents 7e25157 + 415d323 commit 1b1bc5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ENV["GKSwstype"] = "100" # set 'GR environment' to 'no output' (for Travis CI)
using Documenter, LazySets, Polyhedra

makedocs(
doctest = true, # use this flag to skip doctests (saves time!)
doctest = false,
modules = [LazySets, Approximations],
format = :html,
assets = ["assets/juliareach.css"],
Expand Down
2 changes: 1 addition & 1 deletion docs/make_doctests_only.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ makedocs(
doctest = true,
modules = Module[LazySets, Approximations],
source = "src/lib",
strict = false
strict = true
)
1 change: 1 addition & 0 deletions docs/src/lib/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ isempty_known(::Intersection)
set_isempty!(::Intersection, ::Bool)
swap(::Intersection)
use_precise_ρ
_line_search
_projection
```

Expand Down
2 changes: 1 addition & 1 deletion src/LazySet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ julia> subtypes(LazySet)
ExponentialMap
ExponentialProjectionMap
HPolyhedron
HalfSpace
Hyperplane
Intersection
IntersectionArray
HalfSpace
Line
LinearMap
MinkowskiSum
Expand Down

0 comments on commit 1b1bc5e

Please sign in to comment.