Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consolidate some using statements and make them explicit #1622

Closed
wants to merge 1 commit into from
Closed
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
7 changes: 2 additions & 5 deletions src/AbstractAlgebra.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"""
module AbstractAlgebra

using Random: SamplerTrivial, GLOBAL_RNG
using Random: Random, AbstractRNG, GLOBAL_RNG, SamplerTrivial
using RandomExtensions: RandomExtensions, make, Make, Make2, Make3, Make4

using InteractiveUtils
using InteractiveUtils: InteractiveUtils, subtypes

using Preferences

Expand Down Expand Up @@ -213,9 +213,6 @@ import Base: //
import Base: /
import Base: !=

using Random: Random, AbstractRNG, SamplerTrivial
using RandomExtensions: RandomExtensions, make, Make2

export AbsPowerSeriesRingElem
export add!
export addeq!
Expand Down
5 changes: 2 additions & 3 deletions src/Generic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ import LinearAlgebra: nullspace
import LinearAlgebra: rank
import LinearAlgebra: tr

using Random, InteractiveUtils

using Random: SamplerTrivial, GLOBAL_RNG
using Random: Random, AbstractRNG, GLOBAL_RNG, randperm!, SamplerTrivial
using RandomExtensions: RandomExtensions, make, Make, Make2, Make3, Make4
using SparseArrays: sparse, spzeros

import Base: abs
import Base: acos
Expand Down
2 changes: 0 additions & 2 deletions src/generic/YoungTabs.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using SparseArrays

##############################################################################
#
# Partition type, AbstractVector interface
Expand Down
Loading