Skip to content
Snippets Groups Projects
Commit 4d53b1d2 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fixed #545

parent f0100349
No related branches found
No related tags found
No related merge requests found
...@@ -244,5 +244,6 @@ For users: ...@@ -244,5 +244,6 @@ For users:
- More robust backup for output files when running over multiple processes - More robust backup for output files when running over multiple processes
- Fixed a regression in the performances of GEOMETRY based flexible hills in \ref METAD and \ref PBMETAD - Fixed a regression in the performances of GEOMETRY based flexible hills in \ref METAD and \ref PBMETAD
- Fixed \issue{538}. - Fixed \issue{538}.
- Fixed potential issue with VMD plugins from 1.9.4 (\issue{545}, thanks to Lixin Sun).
...@@ -386,6 +386,7 @@ int Driver<real>::main(FILE* in,FILE*out,Communicator& pc) { ...@@ -386,6 +386,7 @@ int Driver<real>::main(FILE* in,FILE*out,Communicator& pc) {
void *h_in=NULL; void *h_in=NULL;
molfile_timestep_t ts_in; // this is the structure that has the timestep molfile_timestep_t ts_in; // this is the structure that has the timestep
ts_in.coords=NULL; ts_in.coords=NULL;
ts_in.velocities=NULL;
ts_in.A=-1; // we use this to check whether cell is provided or not ts_in.A=-1; // we use this to check whether cell is provided or not
#endif #endif
......
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