From 6a7f0ab19075d05d279692ecfcc23b4f0e5e613d Mon Sep 17 00:00:00 2001 From: a5vzener Date: Tue, 22 Sep 2020 08:44:52 -0400 Subject: [PATCH] removed eta --- README.md | 2 +- docs/src/api.md | 1 - src/SequencerJ.jl | 2 +- src/sequencer.jl | 9 --------- test/runtests.jl | 2 +- 5 files changed, 3 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 29c93ea..49116f6 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You may get **WARN**INGs upon compilation. You can safely ignore them for most p [...] ``` -The Sequencer also calculates a fitness coefficient `η` (`\eta`+`TAB` at the REPL) that can be used to compare quality of solutions using various metrics and scales against the same data. Bigger is better. η is also called `elongation` in SequencerJ. The accessor is `elong`. +The Sequencer also calculates a fitness coefficient `η` that can be used to compare quality of solutions using various metrics and scales against the same data. Bigger is better. η is returned by the `elong` function. ```julia julia> eta = elong(seqres) 6.2345 diff --git a/docs/src/api.md b/docs/src/api.md index 97bd71c..bfe9049 100644 --- a/docs/src/api.md +++ b/docs/src/api.md @@ -26,7 +26,6 @@ elong order mst D -η EMD() EMD(u::AbstractVector{T}, v::AbstractVector{T}) where {T <: Real} diff --git a/src/SequencerJ.jl b/src/SequencerJ.jl index 770cc71..e6f9cf0 100644 --- a/src/SequencerJ.jl +++ b/src/SequencerJ.jl @@ -21,7 +21,7 @@ include("distancemetrics.jl") include("sequencer.jl") # functions -export sequence, autoscale, D, mst, elong, η, elongation, order, prettyp, loss, ensuregrid! +export sequence, autoscale, D, mst, elong, elongation, order, prettyp, loss, ensuregrid! export emd, energy # types diff --git a/src/sequencer.jl b/src/sequencer.jl index 49abf0b..f195012 100644 --- a/src/sequencer.jl +++ b/src/sequencer.jl @@ -19,15 +19,6 @@ struct SequencerResult order::AbstractVector #final ordering from bfs end -""" - - η(r::SequencerResult) - -Alias for `elong`, returns the final graph elongation of a Sequencer run. (Greek letter `eta`) - -""" -η(r::SequencerResult) = elong(r) - """ D(r::SequencerResult) diff --git a/test/runtests.jl b/test/runtests.jl index dbf8a51..4cc646f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -187,7 +187,7 @@ using Images @testset "Accessor functions" begin seqres = sequence(SMALL; scales=(2,), metrics=(L2,)) - for f in (:elong, :order, :D, :mst, :η) + for f in (:elong, :order, :D, :mst) @testset "$f" begin @eval @test $f($seqres) !==nothing end