Turi Create  4.0
include.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 UNITY_GRAPH_ANALYTICS_INCLUDE_HPP
7 #define UNITY_GRAPH_ANALYTICS_INCLUDE_HPP
8 
9 #include "pagerank.hpp"
10 #include "connected_component.hpp"
11 #include "kcore.hpp"
12 #include "triangle_counting.hpp"
13 #include "sssp.hpp"
14 #include "graph_coloring.hpp"
15 #include "degree_count.hpp"
16 #include "label_propagation.hpp"
17 
18 #endif