From 3862e2bbb69a275494f35dac15488d44045ae5ad Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc kop@karlpinc.com" Date: Sun, 12 Oct 2025 17:06:07 +0000 Subject: [PATCH] Adjust female adolescent age limits MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This resolves conversion problems #47 and #49. Per email: On Oct 9, 2025, at 7:05 PM, Ian Gilby wrote: > In follow_arrival, the youngest legitimate "U" swelling is 5.1 (FN), > and the oldest is 14.4 (VAN) And subsequent discussion about using integral units. --- include/limits.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/limits.m4 b/include/limits.m4 index c683091..e2b8b6e 100644 --- a/include/limits.m4 +++ b/include/limits.m4 @@ -42,10 +42,10 @@ dnl The minimum age at which a female can give birth. define(`sdb_min_f_birth', `10') define(`sdb_min_f_birth_units', `years') -dnl Ages of adolescents -define(`sdb_min_adolescent_age', `6') +dnl Ages of (female is the only use) adolescents +define(`sdb_min_adolescent_age', `5') define(`sdb_min_adolescent_age_units', `years') -define(`sdb_max_adolescent_age', `9') +define(`sdb_max_adolescent_age', `14') define(`sdb_max_adolescent_age_units', `years') dnl The minimum age of a male at the birth of their first offspring -- 2.34.1