Instructions for recompiling TINKER to use amoebabio18-hfc23 -- JMD/SV (09/08/2023) Set larger values for static array limits, as described below, and then recompile TINKER For TINKER versions prior to 8.10.2, two sets of changes need to be made: 1) In file 'ktorsn.f' CHANGE parameter (maxnt=2000) TO parameter (maxnt=2500) 2) In file 'merck.f' CHANGE real*8 t1_1(2,0:2000) real*8 t2_1(2,0:2000) real*8 t3_1(2,0:2000) real*8 t1_2(2,0:2000) real*8 t2_2(2,0:2000) real*8 t3_2(2,0:2000) character*16 kt_1(0:2000) character*16 kt_2(0:2000) TO real*8 t1_1(2,0:maxnt) real*8 t2_1(2,0:maxnt) real*8 t3_1(2,0:maxnt) real*8 t1_2(2,0:maxnt) real*8 t2_2(2,0:maxnt) real*8 t3_2(2,0:maxnt) character*16 kt_1(0:maxnt) character*16 kt_2(0:maxnt) For TINKER versions 8.10.2 and beyond (Ponder commit 4/18/2022) as well as TINKER 9, only one set of change needs to be made 1) In file 'merck.f' CHANGE real*8 t1_1(2,0:2000) real*8 t2_1(2,0:2000) real*8 t3_1(2,0:2000) real*8 t1_2(2,0:2000) real*8 t2_2(2,0:2000) real*8 t3_2(2,0:2000) character*16 kt_1(0:2000) character*16 kt_2(0:2000) TO real*8 t1_1(2,0:2500) real*8 t2_1(2,0:2500) real*8 t3_1(2,0:2500) real*8 t1_2(2,0:2500) real*8 t2_2(2,0:2500) real*8 t3_2(2,0:2500) character*16 kt_1(0:2500) character*16 kt_2(0:2500)