Blame view

Modif/epsilon-master/apps/probability/calculation/left_integral_calculation.h 612 Bytes
6663b6c9   adorian   projet complet av...
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
  #ifndef PROBABILITE_LEFT_INTEGRAL_CALCULATION_H
  #define PROBABILITE_LEFT_INTEGRAL_CALCULATION_H
  
  #include "calculation.h"
  
  namespace Probability {
  
  class LeftIntegralCalculation : public Calculation {
  public:
    LeftIntegralCalculation();
    Type type() override;
    int numberOfParameters() override;
    I18n::Message legendForParameterAtIndex(int index) override;
    void setParameterAtIndex(double f, int index) override;
    double parameterAtIndex(int index) override;
    double upperBound() override;
  private:
    void compute(int indexKnownElement) override;
    double m_upperBound;
    double m_result;
  };
  
  }
  
  #endif