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
1 change: 0 additions & 1 deletion src/LazySets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export ×, normalize, subtypes
using LinearAlgebra, RecipesBase, Requires, SparseArrays
import GLPK, JuMP, Random, ReachabilityBase
import IntervalArithmetic as IA
using IntervalArithmetic: mince
using LinearAlgebra: checksquare
using Random: AbstractRNG, GLOBAL_RNG, SamplerType, shuffle, randperm

Expand Down
2 changes: 1 addition & 1 deletion src/Sets/Interval.jl
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ end

function split(x::Interval, k::Int)
@assert k > 0 "can only split into a positive number of intervals"
return [Interval(x2) for x2 in mince(x.dat, k)]
return [Interval(x2) for x2 in IA.mince(x.dat, k)]
end

"""
Expand Down