Skip to content

Commit 2a5d2b0

Browse files
committed
all exports in main package file
1 parent 0eb5c91 commit 2a5d2b0

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"julia.environmentPath": "/Users/selim/.julia/dev/AsynchronousIterativeAlgorithms.jl"
3+
}

src/AsynchronousIterativeAlgorithms.jl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,13 @@ module AsynchronousIterativeAlgorithms
1414
include("start.jl")
1515
include("algorithm_wrappers.jl")
1616

17+
export AbstractAlgorithm,
18+
stopnow,
19+
savenow,
20+
savevalues,
21+
report,
22+
progress,
23+
showvalues,
24+
start,
25+
start!
1726
end

src/abstract_algorithm.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
using Distributed
22
using ProgressMeter
33

4-
5-
6-
export AbstractAlgorithm, stopnow, savenow, savevalues, report, progress, showvalues
7-
84
"""
95
AbstractAlgorithm{Q,A}
106

src/start.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export start, start!
21

32
using Distributed
43
using DistributedObjects

0 commit comments

Comments
 (0)