src/AlgTools.jl

Mon, 06 Dec 2021 11:52:10 +0200

author
Tuomo Valkonen <tuomov@iki.fi>
date
Mon, 06 Dec 2021 11:52:10 +0200
changeset 33
a60d2f12ef93
parent 21
3b7fcc651585
child 34
22a64e826ee7
permissions
-rw-r--r--

Split FunctionalProgramming.jl, VectorMath.jl, and ThreadUtil.jl out of Util.jl.


__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")

end

mercurial