From b0ec241970ecb00d2991a41844ce8220687fb8f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BAlio=20Hoffimann?= Date: Fri, 11 Oct 2024 08:58:13 -0300 Subject: [PATCH] Refactor files --- src/GeoStatsFunctions.jl | 5 +---- src/empirical.jl | 3 ++- src/{ => empirical}/matrices.jl | 0 3 files changed, 3 insertions(+), 5 deletions(-) rename src/{ => empirical}/matrices.jl (100%) diff --git a/src/GeoStatsFunctions.jl b/src/GeoStatsFunctions.jl index ed70633..7d6c84f 100644 --- a/src/GeoStatsFunctions.jl +++ b/src/GeoStatsFunctions.jl @@ -36,10 +36,7 @@ import LinearAlgebra: ⋅ # utilities include("utils.jl") -# relevant matrices -include("matrices.jl") - -# empirical models +# empirical estimates include("empirical.jl") # theoretical models diff --git a/src/empirical.jl b/src/empirical.jl index 8737152..cd34d86 100644 --- a/src/empirical.jl +++ b/src/empirical.jl @@ -2,9 +2,10 @@ # Licensed under the MIT License. See LICENSE in the project root. # ------------------------------------------------------------------ +include("empirical/matrices.jl") include("empirical/estimators.jl") include("empirical/algorithms.jl") include("empirical/variogram.jl") -include("empirical/varioplane.jl") include("empirical/partition.jl") +include("empirical/varioplane.jl") diff --git a/src/matrices.jl b/src/empirical/matrices.jl similarity index 100% rename from src/matrices.jl rename to src/empirical/matrices.jl