File: gengraph_degree_sequence.h

package info (click to toggle)
r-cran-igraph 1.0.1-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 18,232 kB
  • sloc: ansic: 173,538; cpp: 19,365; fortran: 4,550; yacc: 1,164; tcl: 931; lex: 484; makefile: 149; sh: 9
file content (88 lines) | stat: -rw-r--r-- 2,283 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 *
 * gengraph - generation of random simple connected graphs with prescribed
 *            degree sequence
 *
 * Copyright (C) 2006  Fabien Viger
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef DEGREE_SEQUENCE_H
#define DEGREE_SEQUENCE_H

#include "igraph_types.h"
#include "igraph_datatype.h"

namespace gengraph {

class degree_sequence {

private:
  int n; 
  int * deg;
  int total;

public :
  // #vertices
  inline int size() { return n; };
  inline int sum() { return total; };
  inline int operator[](int i) { return deg[i]; };
  inline int *seq() { return deg; };
  inline void assign(int n0, int* d0) { n=n0; deg=d0; };
  inline int dmax() {
    int dm = deg[0];
    for(int i=1; i<n; i++) if(deg[i]>dm) dm=deg[i];
    return dm;
  }

  void make_even(int mini=-1, int maxi=-1);
  void sort();
  void shuffle();
  
  // raw constructor
  degree_sequence(int n, int *degs);

  // read-from-file constrictor
  degree_sequence(FILE *f, bool DISTRIB=true);

  // simple power-law constructor : Pk = int((x+k0)^(-exp),x=k..k+1), with k0 so that avg(X)=z
  degree_sequence(int n, double exp, int degmin, int degmax, double avg_degree=-1.0);

  // igraph constructor
  degree_sequence(const igraph_vector_t *out_seq);

  // destructor
  ~degree_sequence();

  // unbind the deg[] vector (so that it doesn't get deleted when the class is destroyed)
  void detach();

  // compute total number of arcs
  void compute_total();
  
  // raw print (vertex by vertex)
  void print();

  // distribution print (degree frequency)
  void print_cumul();

  // is degree sequence realizable ?
  bool havelhakimi();

};

} // namespace gengraph

#endif //DEGREE_SEQUENCE_H