00001 /*=========================================================================== 00002 NetEvo Foundation Library 00003 Copyright (C) 2009, 2010 Thomas E. Gorochowski <tgorochowski@me.com> 00004 Bristol Centre for Complexity Sciences, University of Bristol, Bristol, UK 00005 ---------------------------------------------------------------------------- 00006 NetEvo is a computing framework designed to allow researchers to investigate 00007 evolutionary aspects of dynamical complex networks. By providing tools to 00008 easily integrate each of these factors in a coherent way, it is hoped a 00009 greater understanding can be gained of key attributes and features displayed 00010 by complex systems. 00011 00012 NetEvo is open-source software released under the Open Source Initiative 00013 (OSI) approved Non-Profit Open Software License ("Non-Profit OSL") 3.0. 00014 Detailed information about this licence can be found in the COPYING file 00015 included as part of the source distribution. 00016 00017 This library is distributed in the hope that it will be useful, but 00018 WITHOUT ANY WARRANTY; without even the implied warranty of 00019 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00020 ============================================================================*/ 00046 #ifndef NETEVO_H 00047 #define NETEVO_H 00048 00049 00050 /* Version of this release */ 00051 #define NETEVO_VERSION_MAJOR 0 00052 #define NETEVO_VERSION_MINOR 2 00053 #define NETEVO_VERSION_REVISION 0 00054 00055 /* Include all headers for the library */ 00056 #include "ne_std.h" 00057 #include "ne_sys.h" 00058 #include "ne_dyn.h" 00059 #include "ne_dyn_vec.h" 00060 #include "ne_mut.h" 00061 #include "ne_per.h" 00062 #include "ne_sim.h" 00063 #include "ne_sim_map.h" 00064 #include "ne_sim_gslode.h" 00065 #include "ne_sup_sa.h" 00066 00067 /* Include headers for the library functions */ 00068 #include "ne_dyn_node_ode_lib.h" 00069 #include "ne_dyn_edge_ode_lib.h" 00070 #include "ne_mut_lib.h" 00071 #include "ne_per_lib.h" 00072 00073 00074 #endif /* NETEVO_H */