We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
X..Y
I am not sure how often this is used for other places in the input file, but e.g. the LIST keyword of ISOLATED_ATOMS. takes a range of the form start..end with integers start and end. However, right now this is coded as integer in https://github.com/cp2k/cp2k-input-tools/blob/develop/cp2k_input_tools/cp2k_input.xml (line 429209). This errors out when parsing.
LIST
ISOLATED_ATOMS
start..end
start
end
integer
A temporary fix is to change it to string, though this does not give us structured data to work with.
string
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am not sure how often this is used for other places in the input file, but e.g. the
LIST
keyword ofISOLATED_ATOMS
.takes a range of the form
start..end
with integersstart
andend
.However, right now this is coded as
integer
in https://github.com/cp2k/cp2k-input-tools/blob/develop/cp2k_input_tools/cp2k_input.xml(line 429209). This errors out when parsing.
A temporary fix is to change it to
string
, though this does not give us structured data to work with.The text was updated successfully, but these errors were encountered: