Turi Create  4.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
evaluation_constants.hpp
1 /* Copyright © 2017 Apple Inc. All rights reserved.
2  *
3  * Use of this source code is governed by a BSD-3-clause license that can
4  * be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
5  */
6 #ifndef TURI_UNITY_EVALUATION_CONSTANTS_HPP
7 #define TURI_UNITY_EVALUATION_CONSTANTS_HPP
8 #include <cstddef>
9 namespace turi {
10 namespace evaluation {
11 /**
12  */
13 static const size_t USER_COLUMN_INDEX = 0;
14 
15 /**
16  */
17 static const size_t ITEM_COLUMN_INDEX = 1;
18 
19 } // namespace evaluation
20 } // namespace turi
21 #endif