Skip to content
Snippets Groups Projects
Commit 13febbcc authored by Aliaksei Mazheika's avatar Aliaksei Mazheika
Browse files

adding new acrolein test, and fixing its failure

parent d2ec7d43
No related branches found
No related tags found
No related merge requests found
...@@ -313,8 +313,7 @@ def build_TurbomoleMainFileSimpleMatcher(): ...@@ -313,8 +313,7 @@ def build_TurbomoleMainFileSimpleMatcher():
EigenvaluesSubMatcher = SM(name = 'Eigenvalues', EigenvaluesSubMatcher = SM(name = 'Eigenvalues',
repeats = False, repeats = False,
sections = ["section_eigenvalues"], sections = ["section_eigenvalues"],
startReStr = r"\s*(?:alpha:|(?: irrep)\s*(?P<x_turbomole_irreducible_representation_state_str>[0-9a-z\s]+))\s*", startReStr = r"\s*orbitals .* will be written to file.*",
forwardMatch = True,
subMatchers = [ subMatchers = [
SM(r"\s*(?:alpha:)\s*"), SM(r"\s*(?:alpha:)\s*"),
SM(r"\s*(?: irrep)\s*(?P<x_turbomole_irreducible_representation_state_str>[0-9a-z\s]+)", SM(r"\s*(?: irrep)\s*(?P<x_turbomole_irreducible_representation_state_str>[0-9a-z\s]+)",
...@@ -530,10 +529,10 @@ def build_TurbomoleMainFileSimpleMatcher(): ...@@ -530,10 +529,10 @@ def build_TurbomoleMainFileSimpleMatcher():
SM (name = 'NewRun', SM (name = 'NewRun',
startReStr = r"\s*Copyright \(C\) ", startReStr = r"\s*Copyright \(C\) ",
endReStr = r"\s*\*\*\*\*\s", endReStr = r"\s*\*\*\*\*\s",
repeats = True, repeats = False,
required = True, required = True,
forwardMatch = True, forwardMatch = True,
fixedStartValues={'program_name': 'x_turbomole', 'program_basis_set_type': 'GTOs' }, fixedStartValues={'program_name': 'turbomole', 'program_basis_set_type': 'GTOs' },
#sections = ['section_single_configuration_calculation'], #sections = ['section_single_configuration_calculation'],
subMatchers = [ subMatchers = [
#controlInOutSubMatcher, #controlInOutSubMatcher,
......
...@@ -21,7 +21,7 @@ object TurbomoleParser extends SimpleExternalParserGenerator( ...@@ -21,7 +21,7 @@ object TurbomoleParser extends SimpleExternalParserGenerator(
)) :: Nil )) :: Nil
), ),
mainFileTypes = Seq("text/.*"), mainFileTypes = Seq("text/.*"),
mainFileRe = """\s*(?<progr>[a-zA-z0-9_]+)(?:\([^()]+\)) : TURBOMOLE\s*(?<version>.*) mainFileRe = """\s*(?<progr>[a-zA-z0-9_]+)\s*(?:\([^()]+\))\s*:\s*TURBOMOLE\s*(?<version>.*)
\s*Copyright \(C\) [0-9]+ TURBOMOLE GmbH, Karlsruhe \s*Copyright \(C\) [0-9]+ TURBOMOLE GmbH, Karlsruhe
""".r, """.r,
cmd = Seq(DefaultPythonInterpreter.pythonExe(), "${envDir}/parsers/turbomole/parser/parser-turbomole/TurbomoleParser.py", cmd = Seq(DefaultPythonInterpreter.pythonExe(), "${envDir}/parsers/turbomole/parser/parser-turbomole/TurbomoleParser.py",
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment