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

optimization_solver_batch.h
1 /* file: optimization_solver_batch.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 Optimization solver interface interface.
19 //--
20 */
21 
22 #ifndef __OPTIMIZATION_SOLVER_BATCH_H__
23 #define __OPTIMIZATION_SOLVER_BATCH_H__
24 
25 #include "algorithms/algorithm.h"
26 #include "data_management/data/numeric_table.h"
27 #include "services/daal_defines.h"
28 
29 namespace daal
30 {
31 namespace algorithms
32 {
33 namespace optimization_solver
34 {
38 namespace interface1
39 {
48 class DAAL_EXPORT BatchIface : public daal::algorithms::Analysis<batch>
49 {
50 public:
51  BatchIface() {}
52  virtual ~BatchIface() {}
53 };
55 } // namespace interface1
56 using interface1::BatchIface;
57 
58 } // namespace optimization_solver
59 } // namespace algorithm
60 } // namespace daal
61 #endif
daal
Definition: algorithm_base_common.h:31
daal_defines.h
daal::algorithms::optimization_solver::interface1::BatchIface
Interface for computing the Optimization solver in the batch processing mode.
Definition: optimization_solver_batch.h:48
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.