From 45a68207e384b69228f44e91c6f2fcd5a34ac743 Mon Sep 17 00:00:00 2001 From: Daniel Vedder <daniel.vedder@idiv.de> Date: Thu, 23 May 2024 12:53:55 +0200 Subject: [PATCH] Updated exported variables --- src/Persefone.jl | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/src/Persefone.jl b/src/Persefone.jl index 15a33b6..4e1c38e 100644 --- a/src/Persefone.jl +++ b/src/Persefone.jl @@ -52,27 +52,37 @@ export Farmer, DataOutput, SimulationModel, + AgricultureModel, #macros @param, + @rand, + @shuffle!, @species, - @initialise, + @populate, + @create, @phase, - @trait, + @animal, + @isalive, + @here, @setphase, @respond, - @here, @kill, + @killother, @reproduce, - @neighbours, + @migrate, @habitat, @landcover, - @cropheight, @cropname, + @cropheight, + @directionto, @distanceto, @distancetoedge, - @countanimals, - @rand, - @shuffle!, + @randompixel, + @randomdirection, + @neighbours, + @move, + @walk, + @follow, #functions simulate, simulate!, @@ -133,7 +143,7 @@ include("nature/species/wyvern.jl") include("core/simulation.jl") #this must be last -# precompile important functions +# precompile important functions - XXX use PrecompileTools.jl precompile(initialise, (String,Int)) precompile(stepsimulation!, (SimulationModel,)) -- GitLab