[root]/branches/budaev/HEDG2_06_d_fit
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
sbu062 | 49 (100.0%) | 455 (100.0%) | 9.2 |
merged r11234 and previous fixes to build
25 lines of code changed in 1 file:
delete dependence of living cost on smr, very small effect and potentially slow down simulation
Note: this applies changes r11231:r11232
applied diff `svn diff -r 11226:11232 m_body.f90` for all branches
2 lines of code changed in 1 file:
fix exponent as in r11226
2 lines of code changed in 1 file:
repeat r11209: need even longer record to fit all values
3 lines of code changed in 1 file:
need extra length for the record to avoid writing data to non-existent space beyond last character, useful against huge history crashing
1 lines of code changed in 1 file:
apply patch from simulation, worked well, Limit maximum level of sex hormones to 10.0 to avoid huge growth of it and reproductive beyond limits
Patch here:
{{{
Index: m_body.f90
===================================================================
--- m_body.f90 (revision 10934)
+++ m_body.f90 (working copy)
@@ -1439,15 +1439,15 @@
if (length_increment > TOLERANCE_LOW_DEF_SRP) then
if (this%is_male()) then
!> - If the agent is **male**, **testosterone** is incremented.
- call this%testosterone_set( &
+ call this%testosterone_set( min( 10.0_SRP, &
this%testosterone_get() + &
- this%testosterone_get() * steroid_increment_factor )
+ this%testosterone_get() * steroid_increment_factor ) )
else
!> - If the agent is **female**, **estrogen** is incremented.
!! .
- call this%estrogen_set( &
+ call this%estrogen_set( min( 10.0_SRP, &
this%estrogen_get() + &
- this%estrogen_get() * steroid_increment_factor )
+ this%estrogen_get() * steroid_increment_factor ) )
end if
!> If there was no growth and the gonadal steroids are not incremented,
!! the current values are still saved in the history stack by calling
}}}
4 lines of code changed in 1 file:
fix power factor
2 lines of code changed in 2 files:
gamma2gene: merged tested r9487: merged changes in (allelescale) and (gamma2gene) backends from SIGMOID_tweak_new r9486
- see patch r9551
41 lines of code changed in 1 file:
Fixed build on Windows 10 with third-party GNU-compatible `echo` as in r9179
56 lines of code changed in 1 file:
merged r8486, save all agent data at each time step in (lifecycle_preevol)
- tests passed
52 lines of code changed in 2 files:
(population_ga_reproduce_max) include only alive
10 lines of code changed in 1 file:
merged latest changes in dev branch of HEDTOOLS
0 lines of code changed in 2 files:
(LOG_IEEE): force log if IS_DEBUG
6 lines of code changed in 1 file:
(log_ieee) logs possible IEEE signalling conditions with tag
- tests pass
70 lines of code changed in 2 files:
check IEEE signalling condition
- (ieee_error_reporting) logged after all important events
48 lines of code changed in 1 file:
fixed wrong commit, should have been folder scope
1 lines of code changed in 1 file:
deleted dev branch for HEDTOOLS 1.3
1 lines of code changed in 1 file:
shorter log message
1 lines of code changed in 1 file:
disable debug fixed steps
1 lines of code changed in 1 file:
added tags for ieee check call
3 lines of code changed in 1 file:
(ieee_error_reporting) added optional text parameter to easily locate IEEE errors
41 lines of code changed in 2 files:
normalise debug steps and fitness function
2 lines of code changed in 2 files:
select at minimum only growing agents for reproduction in GA, min proportion reproducing increased
3 lines of code changed in 2 files:
testing fixed life span
2 lines of code changed in 1 file:
debug increasing fitness: fixed (fitness_mass_incr_abs), in (fitness_energy_reprfact_mass) fixed MIN_FIT_ALIVE
- MIN_FIT_ALIVE was to start from -999, must -1001 due to reverse
14 lines of code changed in 2 files:
debugging increasing fitness function, debug fixed steps off
42 lines of code changed in 2 files:
debug version: fixed comments on reverse fitness, initial implementation for proportions fitness
22 lines of code changed in 6 files:
development branch for normal non-reverse fitness
- initial tests
0 lines of code changed in 8 files: