You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The IO_System_From_Config API function should be improved by either logging cases that are not supported or by adding support for them:
if (chain->images[i]->nos != system->nos) return 0; should change the geometry for the chain or log that it cannot be changed for a single system
if (chain->images[i]->hamiltonian->Name() != system->hamiltonian->Name()) return 0; should change the Hamiltonian of the chain or log that it cannot be changed for an individual image
Note: the chain should probably not be changed by IO_System_From_Config. Instead, one could add IO_Chain_From_Config.
The text was updated successfully, but these errors were encountered:
The
IO_System_From_Config
API function should be improved by either logging cases that are not supported or by adding support for them:if (chain->images[i]->nos != system->nos) return 0;
should change the geometry for the chain or log that it cannot be changed for a single systemif (chain->images[i]->hamiltonian->Name() != system->hamiltonian->Name()) return 0;
should change the Hamiltonian of the chain or log that it cannot be changed for an individual imageNote: the chain should probably not be changed by
IO_System_From_Config
. Instead, one could addIO_Chain_From_Config
.The text was updated successfully, but these errors were encountered: