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

mt19937_types.h
1 /* file: mt19937_types.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 mt19937 engine.
19 //--
20 */
21 
22 #ifndef __MT19937_TYPES_H__
23 #define __MT19937_TYPES_H__
24 
25 #include "algorithms/algorithm.h"
26 #include "services/daal_defines.h"
27 #include "data_management/data/numeric_table.h"
28 #include "data_management/data/homogen_numeric_table.h"
29 
30 namespace daal
31 {
32 namespace algorithms
33 {
34 namespace engines
35 {
45 namespace mt19937
46 {
51 enum Method
52 {
53  defaultDense = 0
54 };
55 
56 } // namespace mt19937
58 } // namespace engines
59 } // namespace algorithms
60 } // namespace daal
61 
62 #endif
daal
Definition: algorithm_base_common.h:31
daal::algorithms::engines::mt19937::Method
Method
Definition: mt19937_types.h:51
daal_defines.h
daal::algorithms::engines::mt19937::defaultDense
Definition: mt19937_types.h:53

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