Skip to content

Commit 6e31ac4

Browse files
committed
0.1.5
1 parent d2c0c20 commit 6e31ac4

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "AsynchronousIterativeAlgorithms"
22
uuid = "329f2bf2-1773-4f40-9abf-1830ae341a86"
33
authors = ["selim-chraibi"]
4-
version = "0.1.4"
4+
version = "0.1.5"
55

66
[deps]
77
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[build-img]: https://github.com/Selim78/AsynchronousIterativeAlgorithms.jl/actions/workflows/CI.yml/badge.svg?branch=main
1010
[build-url]: https://github.com/Selim78/AsynchronousIterativeAlgorithms.jl/actions/workflows/CI.yml?query=branch%3Amain
1111

12-
🧮`AsynchronousIterativeAlgorithms.jl` handles the distributed asynchronous communication, so you can focus on designing your algorithm.
12+
🧮 `AsynchronousIterativeAlgorithms.jl` handles the distributed asynchronous communication, so you can focus on designing your algorithm.
1313

1414
💽 It also offers a convenient way to manage the distribution of your problem's data across multiple processes or remote machines.
1515

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CurrentModule = AsynchronousIterativeAlgorithms
44
# [AsynchronousIterativeAlgorithms.jl](https://github.com/Selim78/AsynchronousIterativeAlgorithms.jl)
55

66

7-
🧮`AsynchronousIterativeAlgorithms.jl` handles the distributed asynchronous communications, so you can focus on designing your algorithm.
7+
🧮 `AsynchronousIterativeAlgorithms.jl` handles the distributed asynchronous communications, so you can focus on designing your algorithm.
88

99
💽 It also offers a convenient way to manage the distribution of your problem's data across multiple processes or remote machines.
1010

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1+
"""
2+
🧮 AsynchronousIterativeAlgorithms.jl handles the distributed asynchronous communication, so you can focus on
3+
designing your algorithm.
4+
5+
💽 It also offers a convenient way to manage the distribution of your problem's data across multiple processes or
6+
remote machines.
7+
8+
📚 Full manual available at https://selim78.github.io/AsynchronousIterativeAlgorithms.jl/dev/
9+
"""
110
module AsynchronousIterativeAlgorithms
211

312
include("network.jl")
413
include("abstract_algorithm.jl")
514
include("start.jl")
615
include("algorithm_templates.jl")
716

8-
end
17+
end

0 commit comments

Comments
 (0)