[root]/branches/budaev/HEDG2_06.b3_len/HEDG2_06.P1H
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
sbu062 | 14 (100.0%) | 20 (100.0%) | 1.4 |
`O2` and higher optimization does not work on Windows Intel Fortran, propagate fix r11234
6 lines of code changed in 2 files:
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 2 files:
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:
white space only: fix if block indent for readability
0 lines of code changed in 2 files:
fitness function added body additive length increment term in (fitness_energy_reprfact_masslen)
0 lines of code changed in 2 files: