Open szabo137 opened 5 months ago
As far as I can see there's only one import
left, which is import Base: *
and I would keep that where it's needed to be less confusing. Directly overloading Base.*()
sadly doesn't work, so it has to be imported.
There are also no using
s left in src/
outside of QEDcore.jl
During the restructuring of
QED.jl
, some little cosmetic issues were introduced (or copied):deps
andextras
)Suppressors
in the tests and useTestImpl
instead.algebraic_objects
import Pack
andPack.func(...) = ...
instead ofusing Pack: func
andfunc(...) = ...
for implementing an interface.import
statements tosrc/QEDcore.jl
SimpleTraits.jl
(maybe after https://github.com/QEDjl-project/QEDbase.jl/issues/59)src/particles/spinors.jl
(will be done in a separate issue)base_state
(?)mul
because it is redundant ifBase.*
is implemented anyway.