mirror of
https://gitlab.rlp.net/mobitar/ReCo.jl.git
synced 2024-09-17 18:51:17 +00:00
35 lines
539 B
Julia
35 lines
539 B
Julia
module ReCo
|
|
|
|
export init_sim,
|
|
run_sim,
|
|
run_rl,
|
|
LocalCOMWithAdditionalShapeRewardEnv,
|
|
LocalCOMWithAdditionalShapeRewardEnv2,
|
|
OriginEnv,
|
|
NearestNeighborEnv,
|
|
LocalCOMEnv,
|
|
OriginCompassEnv,
|
|
COMCompassEnv
|
|
|
|
include("Error.jl")
|
|
using .Error
|
|
|
|
include("PreVectors.jl")
|
|
using .PreVectors
|
|
|
|
include("Geometry.jl")
|
|
using .Geometry
|
|
|
|
include("Particle.jl")
|
|
include("data.jl")
|
|
include("setup.jl")
|
|
|
|
include("Shape.jl")
|
|
using .Shape
|
|
|
|
include("RL/RL.jl")
|
|
using .RL
|
|
|
|
include("simulation.jl")
|
|
include("run.jl")
|
|
end # module
|