[go: up one dir, main page]

Menu

[1b439f]: / rmol / Bucket.cpp  Maximize  Restore  History

Download this file

80 lines (65 with data), 3.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// //////////////////////////////////////////////////////////////////////
// Import section
// //////////////////////////////////////////////////////////////////////
#include "Bucket.hpp"
namespace RMOL {
// //////////////////////////////////////////////////////////////////////
Bucket::Bucket () : _yieldRange (), _demand (),
_protection (0.0), _cumulatedProtection (0.0),
_bookingLimit (0.0), _cumulatedBookingLimit (0.0) {
}
// //////////////////////////////////////////////////////////////////////
Bucket::Bucket (const Bucket& iBucket) :
_yieldRange (iBucket.getYieldRange()),
_demand (iBucket.getDemand()),
_protection (iBucket.getProtection()),
_cumulatedProtection (iBucket.getCumulatedProtection()),
_bookingLimit (iBucket.getBookingLimit()),
_cumulatedBookingLimit (iBucket.getCumulatedBookingLimit()) {
}
// //////////////////////////////////////////////////////////////////////
Bucket::Bucket (const FldYieldRange& iYieldRange) :
_yieldRange (iYieldRange), _demand (),
_protection (0.0), _cumulatedProtection (0.0),
_bookingLimit (0.0), _cumulatedBookingLimit (0.0) {
}
// //////////////////////////////////////////////////////////////////////
Bucket::Bucket (const FldYieldRange& iYieldRange, const Demand& iDemand) :
_yieldRange (iYieldRange), _demand (iDemand),
_protection (0.0), _cumulatedProtection (0.0),
_bookingLimit (0.0), _cumulatedBookingLimit (0.0) {
}
// //////////////////////////////////////////////////////////////////////
Bucket::Bucket (const Demand& iDemand) :
_yieldRange (iDemand.getYieldRange()), _demand (iDemand),
_protection (0.0), _cumulatedProtection (0.0),
_bookingLimit (0.0), _cumulatedBookingLimit (0.0) {
}
// //////////////////////////////////////////////////////////////////////
Bucket::~Bucket() {
}
// //////////////////////////////////////////////////////////////////////
const FldDistributionParameters& Bucket::getDistributionParameters() const {
return _demand.getDistributionParameters();
}
// //////////////////////////////////////////////////////////////////////
const double Bucket::getMean() const {
return _demand.getMean();
}
// //////////////////////////////////////////////////////////////////////
const double Bucket::getStandardDeviation() const {
return _demand.getStandardDeviation();
}
// //////////////////////////////////////////////////////////////////////
const double Bucket::getUpperYield() const {
return _yieldRange.getUpperYield();
}
// //////////////////////////////////////////////////////////////////////
const double Bucket::getAverageYield() const {
return _yieldRange.getAverageYield();
}
// //////////////////////////////////////////////////////////////////////
const double Bucket::getLowerYield() const {
return _yieldRange.getLowerYield();
}
}