CXXGraph
0.1.6
CXXGraph is a header only, that manages the Graphs and it's algorithm in C++
include
Partitioning
Record.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: AGPL v3.0 ***/
18
/***********************************************************/
19
20
#ifndef __CXXGRAPH_PARTITIONING_RECORD_H__
21
#define __CXXGRAPH_PARTITIONING_RECORD_H__
22
23
#pragma once
24
25
namespace
CXXGRAPH {
26
namespace
PARTITIONING {
27
template
<
typename
T>
28
class
Record
29
{
30
public
:
31
virtual
PartitionMap<T> &getPartitions() = 0;
32
virtual
void
addPartition(
int
m) = 0;
33
virtual
bool
hasReplicaInPartition(
int
m) = 0;
34
virtual
bool
getLock() = 0;
35
virtual
bool
releaseLock() = 0;
36
virtual
int
getReplicas() = 0;
37
virtual
int
getDegree() = 0;
38
virtual
void
incrementDegree() = 0;
39
};
40
}
41
}
42
43
#endif
// __CXXGRAPH_PARTITIONING_RECORD_H__
CXXGRAPH::PARTITIONING::Record
Definition:
Record.hpp:29
Generated by
1.9.1