Directory branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V/

Total Files:
5
Deleted Files:
0
Lines of Code:
17251

[root]/branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V

Lines of Code

branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
sbu062 15 (100.0%) 23 (100.0%) 1.5

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_read_genomes/HEDG2_06.G1V: 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_read_genomes/HEDG2_06.G1V: m_body.f90 (+2 -22)
sbu062 2021-06-08 07:00 Rev.: 11229

fix exponent as in r11226

2 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V: m_body.f90 (+2 -1)
sbu062 2021-06-03 09:47 Rev.: 11210

repeat r11209: need even longer record to fit all values

3 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V: 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_read_genomes/HEDG2_06.G1V: m_popul.f90 (new)
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_read_genomes/HEDG2_06.G1V: 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_read_genomes/HEDG2_06.G1V: m_body.f90 (+2 -2)
sbu062 2020-06-06 09:24 Rev.: 9553

white space only: fix if block indent for readability

0 lines of code changed in 2 files:

  • branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V: m_common.f90 (changed)
sbu062 2020-02-29 09:42 Rev.: 9495

fix bug, `generation_two` must be allocated that is done by tyhe (init) method, deleting it was error

3 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V: m_evolut.f90 (+3 -3)
sbu062 2020-02-28 12:21 Rev.: 9492

branch of **b.3** with genome data read from file `genomes_000.csv`

0 lines of code changed in 2 files:

  • branches/budaev/HEDG2_06.b3_read_genomes/HEDG2_06.G1V: m_evolut.f90 (changed)
Generated by StatSVN 0.7.0