From 6bb230dfed12f1bdca2885967a7f52155401f000 Mon Sep 17 00:00:00 2001 From: Adriano Meligrana <68152031+Tortar@users.noreply.github.com> Date: Sun, 6 Oct 2024 13:00:44 +0200 Subject: [PATCH] Fix broken link in tutorial (#1080) * Fix broken link in tutorial * Update tutorial.jl * Update Project.toml --- Project.toml | 2 +- docs/src/tutorial.jl | 2 +- docs/src/tutorial.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 6664d13887..5f61f908e8 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Agents" uuid = "46ada45e-f475-11e8-01d0-f70cc89e6671" authors = ["George Datseris", "Tim DuBois", "Aayush Sabharwal", "Ali Vahdati", "Adriano Meligrana"] -version = "6.1.7" +version = "6.1.8" [deps] CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" diff --git a/docs/src/tutorial.jl b/docs/src/tutorial.jl index 6df5db7308..38418f7953 100644 --- a/docs/src/tutorial.jl +++ b/docs/src/tutorial.jl @@ -684,7 +684,7 @@ adf # command. # This approach is recommended as default, because in many cases it will have performance advantages # over the `Union` approach without having tangible disadvantages. However, we strongly recommend you -# to read through the [comparison of the two approaches](@ref sum_vs_union). +# to read through the [comparison of the two approaches](https://juliadynamics.github.io/Agents.jl/stable/performance_tips/#multi_vs_union). # _Note that using multiple agent types is a possibility entirely orthogonal to # the type of `AgentBasedModel` or the type of space. Everything we describe here diff --git a/docs/src/tutorial.md b/docs/src/tutorial.md index aaadc68636..ef1dd995fe 100644 --- a/docs/src/tutorial.md +++ b/docs/src/tutorial.md @@ -711,7 +711,7 @@ of different types of agents. Agents.jl supports two approaches for multi-agent The first uses the `Union` type (this subsection), and the second uses the [`@multiagent`](@ref) This approach is recommended as default, because in many cases it will have performance advantages over the `Union` approach without having tangible disadvantages. However, we strongly recommend you -to read through the [comparison of the two approaches](@ref sum_vs_union). +to read through the [comparison of the two approaches](https://juliadynamics.github.io/Agents.jl/stable/performance_tips/#multi_vs_union). _Note that using multiple agent types is a possibility entirely orthogonal to the type of `AgentBasedModel` or the type of space. Everything we describe here