The subroutine MaxEnt_T in Libraries/Modules/maxent_mod.F90 seems to have a consistency:
this line prints alpha:
WRITE(44,2006) ALPHA, XQ,XENT,CHISQ
But this line labels it as "1/Alpha".
2006 FORMAT('Res: 1/Alpha, XQ,S,CHI: ', E25.17E3,2x,E25.17E3,2x,E25.17E3,2x,E25.17E3)
Similarly, there is also this line:
WRITE(44,*) '========= 1/Alpha: ', ALPHA
Notably, Conversely, Subroutine MaxEnt_T_Bryan in the same file is consistent: It writes alpha, labeled as alpha.
The subroutine
MaxEnt_TinLibraries/Modules/maxent_mod.F90seems to have a consistency:this line prints
alpha:But this line labels it as "1/Alpha".
Similarly, there is also this line:
Notably, Conversely,
Subroutine MaxEnt_T_Bryanin the same file is consistent: It writes alpha, labeled as alpha.