Skip to content

Commit

Permalink
Fix broken link in tutorial (#1080)
Browse files Browse the repository at this point in the history
* Fix broken link in tutorial

* Update tutorial.jl

* Update Project.toml
  • Loading branch information
Tortar authored Oct 6, 2024
1 parent 17190f2 commit 6bb230d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6bb230d

Please sign in to comment.