Directory branches/budaev/HEDG2_06.b3/HEDG2_06.P1H/

Total Files:
4
Deleted Files:
0
Lines of Code:
15513

[root]/branches/budaev/HEDG2_06.b3/HEDG2_06.P1H

Lines of Code

branches/budaev/HEDG2_06.b3/HEDG2_06.P1H/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
sbu062 13 (100.0%) 21 (100.0%) 1.6

Most Recent Commits

sbu062 2021-06-08 12:38 Rev.: 11235

`O2` and higher optimization does not work on Windows Intel Fortran, propagate fix r11234

6 lines of code changed in 2 files:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: Makefile (+6 -2)
sbu062 2021-06-08 09:28 Rev.: 11233

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:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_body.f90 (+2 -22)
sbu062 2021-06-08 06:51 Rev.: 11228

fix exponent as in r11226

2 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_body.f90 (+2 -1)
sbu062 2021-06-03 09:32 Rev.: 11209

need even longer record to fit all values
This avoids crashes in simulations with very long history

3 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_popul.f90 (+3 -3)
sbu062 2021-06-02 13:18 Rev.: 11208

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:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_popul.f90 (+1 -1)
sbu062 2021-05-28 14:30 Rev.: 11200

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:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_body.f90 (+4 -4)
sbu062 2021-05-28 14:22 Rev.: 11199

fix power factor

2 lines of code changed in 2 files:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_body.f90 (+2 -2)
sbu062 2020-06-06 07:26 Rev.: 9552

white space only: fix if block indent for readability

1 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_common.f90 (+1 -1)
sbu062 2020-02-23 10:38 Rev.: 9487

merged changes in (allelescale) and (gamma2gene) backends from SIGMOID_tweak_new r9486

0 lines of code changed in 2 files:

  • branches/budaev/HEDG2_06.b3/HEDG2_06.P1H: m_common.f90 (changed)
Generated by StatSVN 0.7.0