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
max_time
Usually in Julia, the time() is a real number. Is there any specific reason why the max_time in NomadOption is fixed as an integer here, L.69?
time()
NomadOption
The text was updated successfully, but these errors were encountered:
Hey @tmigot . max_time is a parameter of the Nomad software given in seconds, which can be provided as a size_t type for the c++ interface (see https://nomad-4-user-guide.readthedocs.io/en/latest/Appendix.html MAX_TIME parameter).
size_t
MAX_TIME
Sorry, something went wrong.
Ok, thanks. I just got confused because in the NomadOptions it is specified:
NomadOptions
max_time::Union{Nothing, Int}
No branches or pull requests
Usually in Julia, the
time()
is a real number. Is there any specific reason why themax_time
inNomadOption
is fixed as an integer here, L.69?The text was updated successfully, but these errors were encountered: