10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-11-07 14:43:41 +01:00

Fixing CI

This commit is contained in:
Anthony Scemama 2024-09-05 16:08:45 +02:00
parent 01cb05e5cd
commit cf10825862

View File

@ -22,7 +22,7 @@ let make
(* Create guess vectors u, with unknown vectors initialized to unity. *)
let init_vectors m =
let result = Matrix.make n m 0. in
for i=0 to m-1 do
for i=1 to m do
Matrix.set result i i 1.;
done;
result