10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-20 04:02:07 +02:00
QCaml/Basis/GamessReader.ml

17 lines
320 B
OCaml
Raw Normal View History

2018-03-06 18:25:48 +01:00
let read_basis filename =
2018-02-23 18:44:31 +01:00
let lexbuf =
let ic = open_in filename in
Lexing.from_channel ic
in
let rec aux accu =
try
let key, basis =
GamessParser.input BasisLexer.read_all lexbuf
in
aux ((key, basis)::accu)
with
| Parsing.Parse_error -> List.rev accu
in
aux []