Skip to content

Commit c31b4d3

Browse files
authored
Merge pull request #375 from sathvikbhagavan/sb/remove_treeview
Remove TreeViews
2 parents 3fd02b0 + 627a42b commit c31b4d3

File tree

5 files changed

+1
-7
lines changed

5 files changed

+1
-7
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
1919
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
2020
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
2121
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
22-
TreeViews = "a2a6695c-b41b-5b7d-aed9-dbfdeacea5d7"
2322
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
2423

2524
[weakdeps]
@@ -41,7 +40,6 @@ RecursiveArrayTools = "2"
4140
Reexport = "0.2, 1.0"
4241
SciMLBase = "1.51, 2"
4342
StaticArrays = "0.10, 0.11, 0.12, 1.0"
44-
TreeViews = "0.3"
4543
UnPack = "1.0.2"
4644
julia = "1.6"
4745

src/JumpProcesses.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module JumpProcesses
33
using Reexport
44
@reexport using DiffEqBase
55

6-
using RandomNumbers, TreeViews, LinearAlgebra, Markdown, DocStringExtensions
6+
using RandomNumbers, LinearAlgebra, Markdown, DocStringExtensions
77
using DataStructures, PoissonRandom, Random, ArrayInterface
88
using FunctionWrappers, UnPack
99
using Graphs

src/coupled_array.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,5 @@ add_idxs2(::Type{T}, expr) where {T <: CoupledArray} = :($(expr).u_control)
5757
end
5858

5959
Base.show(io::IO, A::CoupledArray) = show(io, A.u)
60-
TreeViews.hastreeview(x::CoupledArray) = true
6160
plot_indices(A::CoupledArray) = eachindex(A)
6261
flip_u!(A::CoupledArray) = (A.order = !A.order)

src/extended_jump_array.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ function recursivecopy!(dest::T, src::T) where {T <: ExtendedJumpArray}
114114
recursivecopy!(dest.jump_u, src.jump_u)
115115
end
116116
Base.show(io::IO, A::ExtendedJumpArray) = show(io, A.u)
117-
TreeViews.hastreeview(x::ExtendedJumpArray) = true
118117
plot_indices(A::ExtendedJumpArray) = eachindex(A.u)
119118

120119
## broadcasting

src/problem.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,5 +459,3 @@ function Base.show(io::IO, mime::MIME"text/plain", A::JumpProblem)
459459
println(io, "Have a regular jump")
460460
end
461461
end
462-
463-
TreeViews.hastreeview(x::JumpProblem) = true

0 commit comments

Comments
 (0)