1 /*
2  *  core/Definitions.cc
3  *  avida-core
4  *
5  *  Created by David on 4/17/11.
6  *  Copyright 2011 Michigan State University. All rights reserved.
7  *  http://avida.devosoft.org/
8  *
9  *
10  *  This file is part of Avida.
11  *
12  *  Avida is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License
13  *  as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
14  *
15  *  Avida is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
17  *
18  *  You should have received a copy of the GNU Lesser General Public License along with Avida.
19  *  If not, see <http://www.gnu.org/licenses/>.
20  *
21  *  Authors: David M. Bryson <david@programerror.com>
22  *
23  */
24 
25 #include "avida/core/Definitions.h"
26 
27 namespace Avida {
28 
29   const char* const BioUnitSourceMap[] = {
30     "deme:compete", // SRC_DEME_COMPETE
31     "deme:copy", // SRC_DEME_COPY
32     "deme:germline", // SRC_DEME_GERMLINE
33     "deme:random", // SRC_DEME_RANDOM
34     "deme:replicate", // SRC_DEME_REPLICATE
35     "deme:spawn", // SRC_DEME_SPAWN
36     "org:compete", // SRC_ORGANISM_COMPETE
37     "org:divide", // SRC_ORGANISM_DIVIDE
38     "org:file_load", // SRC_ORGANISM_FILE_LOAD
39     "org:random", // SRC_ORGANISM_RANDOM
40     "para:file_load", // SRC_PARASITE_FILE_LOAD
41     "para:inject", // SRC_PARASITE_INJECT
42     "testcpu", // SRC_TEST_CPU
43   };
44 };
45