C++ API Reference for Intel® Data Analytics Acceleration Library 2018 Update 3

algorithm.h
1 /* file: algorithm.h */
2 /*******************************************************************************
3 * Copyright 2014-2018 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 base classes defining algorithm interface.
19 //--
20 */
21 
22 #ifndef __ALGORITHM_H__
23 #define __ALGORITHM_H__
24 
25 
26 #include "services/base.h"
27 #include "services/daal_memory.h"
28 #include "services/daal_defines.h"
29 #include "services/error_handling.h"
30 #include "data_management/data/numeric_table.h"
31 #include "services/env_detect.h"
32 #include "algorithms/algorithm_types.h"
33 #include "algorithms/algorithm_base.h"
34 #include "algorithms/analysis.h"
35 #include "algorithms/training.h"
36 #include "algorithms/prediction.h"
37 #include "algorithms/algorithm_quality_metric_batch.h"
38 
39 #include "algorithms/model.h"
40 
41 #endif
daal_defines.h

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