Skip to content

Commit 9b46a54

Browse files
committed
change MeanMaxEst -> MeanMaxPPE
1 parent 80517c7 commit 9b46a54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/entities/DFGVariable.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,20 @@ abstract type AbstractPointParametricEst end
7070
7171
Data container to store Parameteric Point Estimate (PPE) for mean and max.
7272
"""
73-
struct MeanMaxEst <: AbstractPointParametricEst
73+
struct MeanMaxPPE <: AbstractPointParametricEst
7474
solverKey::Symbol #repeated because of Sam's request
7575
max::Vector{Float64}
7676
mean::Vector{Float64}
7777
lastUpdatedTimestamp::DateTime
7878
end
79-
MeanMaxEst(solverKey::Symbol,max::Vector{Float64},mean::Vector{Float64}) = MeanMaxEst(solverKey, max, mean, now())
79+
MeanMaxPPE(solverKey::Symbol,max::Vector{Float64},mean::Vector{Float64}) = MeanMaxPPE(solverKey, max, mean, now())
8080

8181
getMaxEstimate(est::AbstractPointParametricEst) = est.max
8282
getMeanEstimate(est::AbstractPointParametricEst) = est.mean
8383
getLastUpdatedTimestamp(est::AbstractPointParametricEst) = est.lastUpdatedTimestamp
8484

8585

86-
VariableEstimate(params...) = errror("VariableEstimate is depreciated, please use MeanMaxEst")
86+
VariableEstimate(params...) = errror("VariableEstimate is depreciated, please use MeanMaxPPE")
8787

8888

8989
"""

0 commit comments

Comments
 (0)