Skip to content

Commit

Permalink
Remove superfluous using QEDbase statements
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonReinhard committed Jul 5, 2024
1 parent 5fb47cd commit e451cd1
Show file tree
Hide file tree
Showing 12 changed files with 2 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/phase_spaces/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Representation of a particle with a state. It has four fields:
Overloads for `is_fermion`, `is_boson`, `is_particle`, `is_anti_particle`, `is_incoming`, `is_outgoing`, `mass`, and `charge` are provided, delegating the call to the correct field and thus implementing the `AbstractParticle` interface.
```jldoctest
julia> using QEDcore; using QEDbase
julia> using QEDcore
julia> ParticleStateful(Incoming(), Electron(), SFourMomentum(1, 0, 0, 0))
ParticleStateful: incoming electron
Expand Down Expand Up @@ -76,7 +76,7 @@ Representation of a point in the phase space of a process. Contains the process
The legality of the combination of the given process and the incoming and outgoing particles is checked on construction. If the numbers of particles mismatch, the types of particles mismatch (note that order is important), or incoming particles have an `Outgoing` direction, an error is thrown.
```jldoctest
julia> using QEDcore; using QEDbase; using QEDprocesses
julia> using QEDcore; using QEDprocesses
julia> PhaseSpacePoint(
Compton(),
Expand Down
1 change: 0 additions & 1 deletion test/algebraic_objects/dirac_tensor.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using QEDcore
using QEDbase
using StaticArrays

unary_methods = [-, +]
Expand Down
1 change: 0 additions & 1 deletion test/algebraic_objects/four_momentum.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using QEDcore
using QEDbase
using Random

const ATOL = 1e-15
Expand Down
1 change: 0 additions & 1 deletion test/algebraic_objects/gamma_matrices.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using QEDcore
using QEDbase
using LinearAlgebra
using Random
using SparseArrays
Expand Down
1 change: 0 additions & 1 deletion test/algebraic_objects/lorentz_vector.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using QEDcore
using QEDbase
using StaticArrays

unary_methods = [-, +]
Expand Down
1 change: 0 additions & 1 deletion test/interfaces/process.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Random
using QEDbase
using QEDcore

RNG = MersenneTwister(137137)
Expand Down
1 change: 0 additions & 1 deletion test/particles/propagators.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using Random
using QEDbase
using QEDcore

RNG = MersenneTwister(137137)
Expand Down
1 change: 0 additions & 1 deletion test/particles/spinors.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using QEDbase
using QEDcore
using Random

Expand Down
1 change: 0 additions & 1 deletion test/particles/states.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using QEDbase
using QEDcore
using StaticArrays
using Random
Expand Down
1 change: 0 additions & 1 deletion test/particles/types.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using QEDbase
using QEDcore
using StaticArrays
using Random
Expand Down
1 change: 0 additions & 1 deletion test/phase_spaces.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Random
using StaticArrays
using QEDbase
using QEDcore

include("test_implementation/TestImplementation.jl")
Expand Down
1 change: 0 additions & 1 deletion test/test_implementation/TestImplementation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export TestProcess, TestProcess_FAIL
export TestPhasespaceDef, TestPhasespaceDef_FAIL

using Random
using QEDbase
using QEDcore
using StaticArrays

Expand Down

0 comments on commit e451cd1

Please sign in to comment.