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
|
/*
* This file is part of MAMMULT: Metrics And Models for Multilayer Networks
*
* 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 __UTILS_H__
#define __UTILS_H__
#include "iltree.h"
iltree_t init_tree(iltree_t t, void *fileout);
int read_deg_distr(FILE *filein, unsigned int **degs, unsigned int **Nk, double **p);
int read_deg_seq(FILE *filein, unsigned int **nodes);
int read_stubs(FILE *filein, unsigned int **S);
int read_ij(FILE *filein, unsigned int **i, unsigned int **j);
/*funzione pesata di moreno*/
int read_ij_w(FILE *filein, unsigned int **i, unsigned int **j, double **w);
void read_slap(FILE *filein, unsigned int *K, unsigned int *N,
unsigned int **J_slap, unsigned int **r_slap);
/*funzione pesata di moreno*/
void read_slap_w(FILE *filein, unsigned int *K, unsigned int *N,
unsigned int **J_slap, unsigned int **r_slap, double **w_slap);
int convert_ij2slap(unsigned int *I, unsigned int *J, unsigned int K,
unsigned int ** r_slap, unsigned int **J_slap);
/*funzione pesata di moreno*/
int convert_ij2slap_w(unsigned int *I, unsigned int *J, double *W, unsigned int K,
unsigned int ** r_slap, unsigned int **J_slap,double **w_slap);
int convert_ij2slap_N(unsigned int *I, unsigned int *J, unsigned int K,
unsigned int N, unsigned int ** r_slap,
unsigned int **J_slap);
void write_edges(FILE *fileout, unsigned int *J_slap,
unsigned int *r_slap, unsigned int N);
void dump_deg_distr(unsigned int *degs, double *p, int n);
void dump_deg_seq(unsigned int *nodes, int N);
void dump_edges(iltree_t t);
FILE* openfile_or_exit(char *filename, char *mode, int exitcode);
int compare_int(const void *x1, const void *x2);
unsigned int find_max(unsigned int *, unsigned int);
int is_neigh(unsigned int *J_slap, unsigned int *r_slap, unsigned int N,
unsigned int i, unsigned int j);
#endif /*__UTILS_H__*/
|