CXXGraph
0.4.0
CXXGraph is a header only, that manages the Graphs and it's algorithm in C++
Main Page
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
i
k
p
r
s
w
Functions
a
b
c
d
e
f
g
i
k
p
r
s
w
Files
File List
•
All
Classes
Functions
include
Partitioning
PartitionAlgorithm.hpp
1
/***********************************************************/
2
/*** ______ ____ ______ _ ***/
3
/*** / ___\ \/ /\ \/ / ___|_ __ __ _ _ __ | |__ ***/
4
/*** | | \ / \ / | _| '__/ _` | '_ \| '_ \ ***/
5
/*** | |___ / \ / \ |_| | | | (_| | |_) | | | | ***/
6
/*** \____/_/\_\/_/\_\____|_| \__,_| .__/|_| |_| ***/
7
/*** |_| ***/
8
/***********************************************************/
9
/*** Header-Only C++ Library for Graph ***/
10
/*** Representation and Algorithms ***/
11
/***********************************************************/
12
/*** Author: ZigRazor ***/
13
/*** E-Mail: zigrazor@gmail.com ***/
14
/***********************************************************/
15
/*** Collaboration: ----------- ***/
16
/***********************************************************/
17
/*** License: MPL v2.0 ***/
18
/***********************************************************/
19
20
#ifndef __CXXGRAPH_PARTITIONING_PARTITIONALGORITHM_H__
21
#define __CXXGRAPH_PARTITIONING_PARTITIONALGORITHM_H__
22
23
#pragma once
24
25
namespace
CXXGRAPH
26
{
27
namespace
PARTITIONING
28
{
30
enum
E_PartitionAlgorithm
31
{
32
EDGEBALANCED_VC_ALG,
33
GREEDY_VC_ALG,
34
HDRF_ALG,
35
EBV_ALG,
36
ALG_2
37
};
38
typedef
E_PartitionAlgorithm PartitionAlgorithm;
39
}
40
}
41
42
#endif
// __CXXGRAPH_PARTITIONING_PARTITIONALGORITHM_H__
Generated by
1.9.1