Skip to content

Commit ba2c3e8

Browse files
authored
Merge branch 'JuliaReach:master' into jks16
2 parents efec1ba + 40d9bf4 commit ba2c3e8

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ RecipesBase = "1"
3838
StaticArrays = "1"
3939
SymEngine = "0.7 - 0.12"
4040
Symbolics = "6.1"
41-
TaylorModels = "0.6 - 0.7"
41+
TaylorModels = "0.6 - 0.8"

src/Plotting/plot_recipes.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,14 +373,12 @@ julia> plot(B, 1e-2) # faster but less accurate than the previous call
373373
else
374374
x, y = res
375375
if length(x) == 1 ||
376-
(length(x) == 2 && norm([x[1], y[1]] - [x[2], y[2]]) 0)
376+
(length(x) == 2 && isapproxzero(norm([x[1], y[1]] - [x[2], y[2]])))
377377
# single point
378378
seriestype := :scatter
379379
elseif length(x) == 2
380380
# flat line segment
381381
linecolor --> DEFAULT_COLOR
382-
markercolor --> DEFAULT_COLOR
383-
markershape --> :circle
384382
seriestype := :path
385383
else
386384
seriestype := :shape

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ SetProg = "0.3 - 0.4"
5555
StaticArrays = "0.12, 1"
5656
SymEngine = "0.7 - 0.12"
5757
Symbolics = "1 - 5.30, 6.1"
58-
TaylorModels = "0.0.1, 0.1 - 0.7"
58+
TaylorModels = "0.0.1, 0.1 - 0.8"
5959
WriteVTK = "1"

0 commit comments

Comments
 (0)