mirror of
https://gitlab.com/scemama/qmcchem.git
synced 2024-12-21 20:03:31 +01:00
Tail recursion
This commit is contained in:
parent
9fede1e06c
commit
21a3b36f79
@ -122,10 +122,15 @@ let update_raw_data ?(locked=true) () =
|
||||
|
||||
let result =
|
||||
let rec aux ic accu =
|
||||
let l =
|
||||
try
|
||||
aux ic ( (input_line ic)::accu )
|
||||
Some (input_line ic)
|
||||
with
|
||||
| End_of_file -> List.rev accu
|
||||
| End_of_file -> None
|
||||
in
|
||||
match l with
|
||||
| None -> List.rev accu
|
||||
| Some l -> (aux [@tailcall]) ic (l::accu)
|
||||
in
|
||||
List.concat_map (fun filename ->
|
||||
let ic = open_in filename in
|
||||
|
Loading…
Reference in New Issue
Block a user