You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, both here and in ODINN.jl we include submodules without declaring these as submodules. For example, SphereUDE.jl includes code with
include("types.jl")
include("utils.jl")
but none of these is a submodule by itself (that is, these scripts just have code, without the module declaration). I am not sure if this is desired or not, or if this may have impact in performance for example.
The text was updated successfully, but these errors were encountered:
Right now, both here and in
ODINN.jl
we include submodules without declaring these as submodules. For example, SphereUDE.jl includes code withbut none of these is a submodule by itself (that is, these scripts just have code, without the
module
declaration). I am not sure if this is desired or not, or if this may have impact in performance for example.The text was updated successfully, but these errors were encountered: