Skip to content

Commit d807ea2

Browse files
committed
2 parents 55b90db + 3541fa3 commit d807ea2

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Project.toml

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

66
[deps]
77
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
88
DistributedObjects = "00fc1a24-2ccf-42b7-af30-c6381044c15f"
99
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1010
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
11-
UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228"
1211

1312
[compat]
1413
DistributedObjects = "0.1.5"

src/abstract_algorithm.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ function stopnow(ra::RecordedAlgorithm)
220220
(haskey(ra.stopat, :time) && ra.time ra.stopat.time) #||
221221
end
222222

223-
using UnicodePlots
224223
"""
225224
showvalues(::AbstractAlgorithm) = Tuple{Symbol, Any}[]
226225
@@ -249,4 +248,4 @@ report(::AbstractAlgorithm) = NamedTuple()
249248
# Compile the results to be outputted
250249
function report(ra::RecordedAlgorithm)
251250
merge((queries=ra.queries, answers=ra.answers, iterations=ra.iterations, epochs=ra.epochs, timestamps=ra.timestamps, answers_origin=ra.answers_origin, answer_count=ra.answer_count), report(ra.algorithm))
252-
end
251+
end

0 commit comments

Comments
 (0)