Skip to content

Commit

Permalink
Remove a using in the middle of nowhere.
Browse files Browse the repository at this point in the history
  • Loading branch information
dourouc05 committed Oct 1, 2020
1 parent b4a3f66 commit 2449055
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ authors = ["Thibaut Cuvelier <cuvelier.thibaut@gmail.com> and contributors"]
version = "0.1.0"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

[compat]
DataStructures = "^0.16, ^0.17, ^0.18"
JuMP = "^0.21, ^0.22"
LightGraphs = "^1.0"
julia = "1"
Expand Down
1 change: 1 addition & 0 deletions src/Kombinator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module Kombinator
# TODO: add a link to other packages like LightGraph for the corresponding algorithms, so that they seamlessly integrate with the others?
# TODO: how to add a link to functions like budgeted_msets_lp_select, budgeted_msets_lp_all? They can be quite useful (but do not bring much in terms of performance)

using DataStructures
using LinearAlgebra
using LightGraphs
using JuMP
Expand Down
3 changes: 0 additions & 3 deletions src/SpanningTree/st.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
using LightGraphs
using DataStructures

struct SpanningTreeInstance{T} <: CombinatorialInstance
graph::AbstractGraph{T}
rewards::Dict{Edge{T}, Float64}
Expand Down

2 comments on commit 2449055

@dourouc05
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/22152

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 2449055c7586e4066bc0210c654d51a5134e9127
git push origin v0.1.0

Please sign in to comment.