diff -r 186b0a286431 -r a60d2f12ef93 src/AlgTools.jl --- a/src/AlgTools.jl Wed Dec 15 10:35:57 2021 +0200 +++ b/src/AlgTools.jl Mon Dec 06 11:52:10 2021 +0200 @@ -1,12 +1,31 @@ __precompile__() +""" + +`module AlgTools` + +This module has the submodules: +- `FunctionalProgramming` +- `StructTools` +- `LinkedLists` +- `Logger` +- `Iterate` +- `VectorMath` +- `Util` +- `ThreadUtil` +- `Comms` +- `LinOps` +- `DifferentiableFN` +""" module AlgTools include("StructTools.jl") include("LinkedLists.jl") include("Iterate.jl") +include("VectorMath.jl") include("Util.jl") +include("ThreadUtil.jl") include("Comms.jl") include("LinOps.jl") include("DifferentiableFN.jl")