-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrungp.m
157 lines (128 loc) · 4.87 KB
/
rungp.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
function gpout = rungp(configFile)
%RUNGP Runs GPTIPS 2 using the specified configuration file.
%
% GP = RUNGP(@CONFIGFILE) runs GPTIPS using the user parameters contained
% in the configuration file CONFIGFILE.M and returns the results in the
% GP data structure. Post run analysis commands may then be run on this
% structure, e.g. POPBROWSER(GP), SUMMARY(GP), RUNTREE(GP,'best') etc.
%
% Demos:
%
% Use GPDEMO1 at the commmand line for a demonstration of naive symbolic
% regression (not multigene).
%
% For demos involving multigene symbolic regression see GPDEMO2, GPDEMO3
% and GPDEMO4.
%
% Addionally, example config files for muligene regression on data
% generated by several non-linear mathematical functions are
% CUBIC_CONFIG, RIPPLE_CONFIG, UBALL_CONFIG and SALUSTOWICZ1D_CONFIG.
%
% Remarks:
%
% For further information see the GPTIPS websites at:
%
% https://sites.google.com/site/gptips4matlab/
%
% Also, see the following paper for a summary of GPTIPS 2 capabilities:
%
% Searson DP, GPTIPS 2: an open-source software platform for symbolic
% data mining, Chapter 22 in Gandomi, AH, Alavi, AH, Ryan, C (eds).
% Springer Handbook of Genetic Programming Applications, Springer, 2015.
% (author proof freely available at http://arxiv.org/abs/1412.4690)
%
% ----------------------------------------------------------------------
%
% 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 <http://www.gnu.org/licenses/>.
%
% ----------------------------------------------------------------------
%
% Copyright (c) 2009-2015 Dominic Searson
%
% GPTIPS 2
%
% See also GPDEMO1, GPDEMO2, GPDEMO3, GPDEMO4, CUBIC_CONFIG,
% UBALL_CONFIG, SALUSTOWICZ1D_CONFIG, RIPPLE_CONFIG
%if no config supplied then report error
if nargin < 1 || isempty(configFile)
disp('To run GPTIPS a configuration m file function handle must be specified');
disp('e.g. GP = RUNGP(@CUBIC_CONFIG)');
return;
end
%generate prepared data structure with some default run parameter values
gp = gpdefaults();
%setup random number generator
gp = gprandom(gp);
%run user configuration file
gp = feval(configFile,gp);
%multiple runs (are merged after each run)
for run=1:gp.runcontrol.runs;
gp.state.run = run;
%run user configuration file each time for subsequent runs, unless
%suppressed (default)
if run > 1 && ~gp.runcontrol.suppressConfig;
gp = feval(configFile,gp);
end
%attach name of config file for reference
gp.info.configFile = configFile;
%perform error checks
gp = gpcheck(gp);
%perform initialisation
gp = gpinit(gp);
%main generation loop
for count=1:gp.runcontrol.num_gen
%start gen timer
gp = gptic(gp);
if count == 1;
%generate the initial population
gp = initbuild(gp);
else
%use crossover, mutation etc. to generate a new population
gp = popbuild(gp);
end
%calculate fitnesses of population members
gp = evalfitness(gp);
%update run statistics
gp = updatestats(gp);
%call user defined function
gp = gp_userfcn(gp);
%display current stats on screen
displaystats(gp);
%end gen timer
gp = gptoc(gp);
%check termination criteria
gp = gpterminate(gp);
%save gp structure
if gp.runcontrol.savefreq && ...
~mod(gp.state.count-1,gp.runcontrol.savefreq)
save gptips_checkpoint gp
end
%break out of generation loop if termination required
if gp.state.terminate
if ~gp.runcontrol.quiet
disp(['Termination criterion met (' ...
gp.state.terminationReason '). Terminating run.']);
end
break;
end
end %end generation loop
%finalise the run
gp = gpfinalise(gp);
%merge independent runs
if gp.state.run > 1
gpout = mergegp(gpout,gp,true);
else
gpout = gp;
end
end %end independent run loop