mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-11-14 18:13:40 +01:00
56 lines
1.1 KiB
OCaml
56 lines
1.1 KiB
OCaml
|
/* Parses basis sets in GAMESS format */
|
||
|
|
||
|
%{
|
||
|
exception InputError of string
|
||
|
%}
|
||
|
|
||
|
%token EOL
|
||
|
%token <string> SPACE
|
||
|
%token <string> WORD
|
||
|
%token <int> INTEGER
|
||
|
%token <float> FLOAT
|
||
|
%token EOF
|
||
|
|
||
|
%start input
|
||
|
%type <Nuclei.xyz_input> input
|
||
|
|
||
|
%% /* Grammar rules and actions follow */
|
||
|
|
||
|
input:
|
||
|
| integer title atoms {
|
||
|
let len = List.length $3 in
|
||
|
if len <> $1 then
|
||
|
let error_msg = Printf.sprintf "%d atoms entered, expected %d" len $1 in
|
||
|
raise (InputError error_msg)
|
||
|
else
|
||
|
($2,Array.of_list $3)
|
||
|
}
|
||
|
|
||
|
integer:
|
||
|
| INTEGER EOL { $1 }
|
||
|
| INTEGER SPACE EOL { $1 }
|
||
|
|
||
|
title:
|
||
|
| title_list EOL { $1 }
|
||
|
|
||
|
text:
|
||
|
| WORD {$1 }
|
||
|
| SPACE {$1 }
|
||
|
| FLOAT {(string_of_float $1)}
|
||
|
| INTEGER {(string_of_int $1)}
|
||
|
|
||
|
title_list:
|
||
|
| { "" }
|
||
|
| title_list text { $1 ^ $2 }
|
||
|
|
||
|
atoms:
|
||
|
| atoms_list EOL { List.rev $1 }
|
||
|
| atoms_list EOF { List.rev $1 }
|
||
|
|
||
|
atoms_list:
|
||
|
| { [] }
|
||
|
| atoms_list WORD SPACE FLOAT SPACE FLOAT SPACE FLOAT EOL { ($2, [| $4;$6;$8 |]) :: $1 }
|
||
|
| atoms_list WORD SPACE FLOAT SPACE FLOAT SPACE FLOAT SPACE EOL { ($2, [| $4;$6;$8 |]) :: $1 }
|
||
|
|
||
|
|