10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 03:15:19 +02:00

Better guess

This commit is contained in:
Anthony Scemama 2019-03-05 01:12:13 +01:00
parent c9c039c2fe
commit aec8128889

View File

@ -39,7 +39,7 @@ let huckel_guess ao_basis =
| nocc ->
Mat.init_cols ao_num ao_num (fun i j ->
if (i<>j) then
if (diag.{i} +. diag.{j}) < 5. then
if (diag.{i} +. diag.{j}) < 0. then
c *. overlap.{i,j} *. (diag.{i} +. diag.{j}) +. m_F.{i,j} (*TODO Pseudo *)
else
m_F.{i,j} (*TODO Pseudo *)