00001 00002 // 00003 // NFsim: The Network Free Stochastic Simulator 00004 // A software platform for efficient simulation of biochemical reaction 00005 // systems with a large or infinite state space. 00006 // 00007 // Copyright (C) 2009,2010 00008 // Michael W. Sneddon, James R. Faeder, Thierry Emonet 00009 // 00010 // This program is free software: you can redistribute it and/or modify 00011 // it under the terms of the GNU General Public License as published by 00012 // the Free Software Foundation, either version 3 of the License, or 00013 // (at your option) any later version. 00014 // 00015 // This program is distributed in the hope that it will be useful, 00016 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 // GNU General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU General Public License 00021 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00022 // 00023 // 00024 // For more information on NFsim, see http://emonet.biology.yale.edu/nfsim 00025 // 00027 00028 00029 00030 #ifndef NFSIM_HH_ 00031 #define NFSIM_HH_ 00032 00033 //Include "mpi.h" in Scheduler.h first 00034 #include "NFscheduler/Scheduler.h" 00035 00036 //Include the core files needed to run the simulation 00037 #include "NFcore/NFcore.hh" 00038 #include "NFutil/NFutil.hh" 00039 #include "NFinput/NFinput.hh" 00040 #include "NFreactions/NFreactions.hh" 00041 00042 //Include the specific tests 00043 #include "NFfunction/NFfunction.hh" 00044 //#include "NFtest/compare/compare.hh" 00045 //#include "NFtest/transformations/transformations.hh" 00046 #include "NFtest/simple_system/simple_system.hh" 00047 #include "NFtest/transcription/transcription.hh" 00048 #include "NFtest/tlbr/tlbr.hh" 00049 #include "NFtest/agentcell/agentcell.hh" 00050 00051 00052 00054 00057 bool runFromArgs(System *s, map<string,string> argMap, bool verbose); 00058 00059 00061 00064 System *initSystemFromFlags(map<string,string> argMap, bool verbose); 00065 00066 00067 00068 00069 00070 00071 00072 00073 #endif /*NFSIM_HH_*/