10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-20 04:02:16 +02:00

Merge pull request #135 from TApplencourt/master

QMCPACK correction
This commit is contained in:
Thomas Applencourt 2016-02-04 18:55:32 +01:00
commit 3e8e8ab0d4
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ let list_basis () =
)
in
List.sort basis_list ~cmp:String.ascending
|> String.concat ~sep:"\t"
|> String.concat ~sep:"\n"
(** Run the program *)

View File

@ -90,7 +90,7 @@ basis_raw, sym_raw, _= out.split("\n\n\n")
# |_) (_| _> | _> __) (/_ |_
#
basis_without_header = "\n".join(basis_raw.split("\n")[7:])
basis_without_header = "\n".join(basis_raw.split("\n")[11:])
import re
l_basis_raw = re.split('\n\s*\n', basis_without_header)