From 3aee2fd43e3059a699af2b63c6f2395e5a55e515 Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Wed, 27 Sep 2017 15:06:31 +0100 Subject: First commit on github -- NetBunch 1.0 --- src/ba/ba.c | 185 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 185 insertions(+) create mode 100644 src/ba/ba.c (limited to 'src/ba/ba.c') diff --git a/src/ba/ba.c b/src/ba/ba.c new file mode 100644 index 0000000..e395d6d --- /dev/null +++ b/src/ba/ba.c @@ -0,0 +1,185 @@ +/** + * 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 + * . + * + * (c) Vincenzo Nicosia 2009-2017 -- + * + * This file is part of NetBunch, a package for complex network + * analysis and modelling. For more information please visit: + * + * http://www.complex-networks.net/ + * + * If you use this software, please add a reference to + * + * V. Latora, V. Nicosia, G. Russo + * "Complex Networks: Principles, Methods and Applications" + * Cambridge University Press (2017) + * ISBN: 9781107103184 + * + *********************************************************************** + * + * + * This program grows a network with N nodes using the linear + * preferential attachment model proposed by Barabasi and + * Albert. Each new node creates m links, and the initial (seed) + * network is a ring of n0>=m nodes. + * + * + * References: + * + * [1] A.-L. Barabasi, R. Albert, "Emergence of scaling in random + * networks", Science 286, 509-512 (1999). + * + */ + +#include +#include +#include +#include + +void usage(char *argv[]){ + printf("********************************************************************\n" + "** **\n" + "** -*- ba -*- **\n" + "** **\n" + "** Grow a scale-free network of 'N' nodes using the linear **\n" + "** preferential attachment model (Barabasi-Albert). **\n" + "** The initial network is a ring of 'n0' nodes, and each new **\n" + "** node creates 'm' edges. **\n" + "** **\n" + "** The program prints on STDOUT the edge-list of the final **\n" + "** graph. **\n" + "** **\n" + "********************************************************************\n" + " This is Free Software - You can use and distribute it under \n" + " the terms of the GNU General Public License, version 3 or later\n\n" + " (c) Vincenzo Nicosia 2010-2017 (v.nicosia@qmul.ac.uk)\n\n" + "********************************************************************\n\n" + ); + printf("Usage: %s \n", argv[0]); + +} + + + +int init_network(unsigned int **S, unsigned int n0){ + + int n; + + for(n=0; n n0){ + fprintf(stderr, "n0 cannot be smaller than m\n"); + exit(1); + + } + if (n0<1){ + fprintf(stderr, "n0 must be positive\n"); + exit(1); + } + + if (m < 1){ + fprintf(stderr, "m must be positive\n"); + exit(1); + } + + S = malloc(2 * sizeof(unsigned int*)); + S[0] = malloc(S_size * sizeof(unsigned int)); + S[1] = malloc(S_size * sizeof(unsigned int)); + + S_num = init_network(S, n0); + S_num = grow_ba_network(S, N, m, n0, S_num); + for(i=0; i