ian@0
|
1 // Copyright 2011, Ian Hobson.
|
ian@0
|
2 //
|
ian@0
|
3 // This file is part of gpsynth.
|
ian@0
|
4 //
|
ian@0
|
5 // gpsynth is free software: you can redistribute it and/or modify
|
ian@0
|
6 // it under the terms of the GNU General Public License as published by
|
ian@0
|
7 // the Free Software Foundation, either version 3 of the License, or
|
ian@0
|
8 // (at your option) any later version.
|
ian@0
|
9 //
|
ian@0
|
10 // gpsynth is distributed in the hope that it will be useful,
|
ian@0
|
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
ian@0
|
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
ian@0
|
13 // GNU General Public License for more details.
|
ian@0
|
14 //
|
ian@0
|
15 // You should have received a copy of the GNU General Public License
|
ian@0
|
16 // along with gpsynth in the file COPYING.
|
ian@0
|
17 // If not, see http://www.gnu.org/licenses/.
|
ian@0
|
18
|
ian@0
|
19 // command line options handler
|
ian@0
|
20
|
ian@0
|
21 #pragma once
|
ian@0
|
22
|
ian@0
|
23 #include <string>
|
ian@0
|
24
|
ian@0
|
25 struct ProgramOptions {
|
ian@0
|
26 std::string target_path_;
|
ian@0
|
27 std::string grammar_path_;
|
ian@0
|
28 std::string sc_app_path_;
|
ian@0
|
29 std::string work_folder_;
|
ian@0
|
30 std::string fitness_features_;
|
ian@0
|
31 std::size_t population_size_;
|
ian@0
|
32 std::size_t generations_;
|
ian@0
|
33 std::size_t tournament_size_;
|
ian@0
|
34 double fitness_threshold_;
|
ian@0
|
35 double crossover_rate_;
|
ian@0
|
36 double mutation_rate_;
|
ian@0
|
37 bool reproduce_best_individual_;
|
ian@0
|
38 std::size_t analysis_window_size_;
|
ian@0
|
39 std::size_t analysis_hop_size_;
|
ian@0
|
40 std::size_t maximum_tree_depth_;
|
ian@0
|
41 bool keep_temp_folders_;
|
ian@0
|
42 std::size_t core_limit_;
|
ian@0
|
43 };
|
ian@0
|
44
|
ian@0
|
45 void ParseCommandLine(int argument_count,
|
ian@0
|
46 const char* arguments[],
|
ian@0
|
47 ProgramOptions* options);
|