Fixed typo

This commit is contained in:
Anthony Scemama 2019-02-28 22:37:09 +01:00
parent 4e65d70a52
commit 61a237c444
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ let create_matrix_spin f det_space =
(** Update function when ki and kj are connected *)
let update i j ki kj =
let x = f ki kj in
if abs_float x < Constants.epsilon then
if abs_float x > Constants.epsilon then
result.(i) <- (j, x) :: result.(i) ;
in