Skip to content

Commit

Permalink
Merge pull request #377 from JuliaReach/schillic/fix_doctest
Browse files Browse the repository at this point in the history
Fix doctests
  • Loading branch information
schillic authored Jul 9, 2018
2 parents 8c535ee + ae6a013 commit 43c808d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/MinkowskiSum.jl
Original file line number Diff line number Diff line change
Expand Up @@ -421,12 +421,10 @@ julia> push!(a1, x2); push!(a2, x2);
julia> σ(d, cms1);
# the support vector was computed for both sets
julia> idx1 = forget_sets!(cms1)
julia> idx1 = forget_sets!(cms1) # support vector was computed for both sets
2
# the support vector was only computed for the first set
julia> idx1 = forget_sets!(cms2)
julia> idx1 = forget_sets!(cms2) # support vector was only computed for first set
1
```
"""
Expand Down

0 comments on commit 43c808d

Please sign in to comment.