C++ API Reference for Intel® Data Analytics Acceleration Library 2019 Update 5

distribution.h
1 /* file: distribution.h */
2 /*******************************************************************************
3 * Copyright 2014-2019 Intel Corporation.
4 *
5 * This software and the related documents are Intel copyrighted materials, and
6 * your use of them is governed by the express license under which they were
7 * provided to you (License). Unless the License provides otherwise, you may not
8 * use, modify, copy, publish, distribute, disclose or transmit this software or
9 * the related documents without Intel's prior written permission.
10 *
11 * This software and the related documents are provided as is, with no express
12 * or implied warranties, other than those that are expressly stated in the
13 * License.
14 *******************************************************************************/
15 
16 /*
17 //++
18 // Implementation of distributions
19 //--
20 */
21 
22 #ifndef __DISTRIBUTIONS_H__
23 #define __DISTRIBUTIONS_H__
24 
25 #include "algorithms/distributions/distribution_types.h"
26 
27 namespace daal
28 {
29 namespace algorithms
30 {
31 namespace distributions
32 {
37 namespace interface1
38 {
43 class DAAL_EXPORT BatchBase : public daal::algorithms::Analysis<batch>
44 {
45 public:
46  typedef algorithms::distributions::Input InputType;
47  typedef algorithms::distributions::ParameterBase ParameterType;
48  typedef algorithms::distributions::Result ResultType;
49 
50  InputType input;
51  virtual ~BatchBase() {}
52 };
53 
54 } // namespace interface1
55 using interface1::BatchBase;
57 } // namespace distributions
58 } // namespace algorithms
59 } // namespace daal
60 #endif
daal
Definition: algorithm_base_common.h:31
daal::algorithms::distributions::interface1::BatchBase::input
InputType input
Definition: distribution.h:50
daal::algorithms::distributions::interface1::BatchBase
Class representing distributions.
Definition: distribution.h:43
daal::algorithms::Analysis
Provides methods for execution of operations over data, such as computation of Summary Statistics est...
Definition: analysis.h:68

For more complete information about compiler optimizations, see our Optimization Notice.