Skip to content
Snippets Groups Projects
  1. Jan 08, 2014
  2. Jan 07, 2014
  3. Dec 20, 2013
  4. Dec 19, 2013
  5. Dec 16, 2013
    • Toni G's avatar
      Fix in backup output files · fe97fbb9
      Toni G authored
      (thanks to Toni Giorgino)
      
      I fixed a missing include.
      
      Original comment:
      Fixes in backup output files - cant rename open file under windows - print reason for failure - remove leak of FILE*s
      
      (cherry picked from commit 448e84fc)
      fe97fbb9
  6. Dec 13, 2013
    • Toni G's avatar
      Fix in backup output files · 448e84fc
      Toni G authored
      (thanks to Toni Giorgino)
      
      I fixed a missing include.
      
      Original comment:
      Fixes in backup output files - cant rename open file under windows - print reason for failure - remove leak of FILE*s
      448e84fc
  7. Dec 10, 2013
  8. Dec 09, 2013
  9. Nov 07, 2013
  10. Nov 06, 2013
    • Giovanni Bussi's avatar
      Added missing conversion from PLMD::Matrix · 08cf179a
      Giovanni Bussi authored
      When adding objects to Communicator class so that they can be used in MPI
      operations one should add the conversion operator to both Data and
      ConstData. Otherwise it is not possible to e.g. Isend() an object
      08cf179a
  11. Nov 01, 2013
  12. Oct 31, 2013
  13. Oct 30, 2013
    • Giovanni Bussi's avatar
      Fix · f9fb696e
      Giovanni Bussi authored
      The fix to #39 was incorrect since adding an int to a string
      does not print it.
      
      I also removed the redundant check that index is positive (it is unsigned)
      f9fb696e
  14. Oct 25, 2013
  15. Oct 16, 2013
  16. Oct 15, 2013
  17. Oct 09, 2013
  18. Oct 05, 2013
    • Giovanni Bussi's avatar
      Slighlty optimized MSD · 7dd78124
      Giovanni Bussi authored
      Reference coordinates are saved already shifted to their average.
      Weights are stored already normalized.
      
      A regtest has been fixed (it contains numerical derivatives which
      slighlty changed with this commit)
      7dd78124
  19. Oct 02, 2013
    • Giovanni Bussi's avatar
      Clean up · 1288ef5f
      Giovanni Bussi authored
      class OptimalAlignment is not used anymore in RMSD
      1288ef5f
    • Giovanni Bussi's avatar
      Improved RMSD with align!=displace · 3273a188
      Giovanni Bussi authored
      I did it in the boring way - full derivatives of rotation matrix.
      It seems to work now, but still breaks some test. It is probably
      some numerical issue, I will investigate before merging.
      
      It is slower than the align==displace version (~ a factor 1.5),
      but I think it is more than acceptable.
      3273a188
  20. Sep 13, 2013
  21. Sep 12, 2013
  22. Sep 09, 2013
    • Gareth Tribello's avatar
      Simplification of storage of data in multicolvar · 878be3b9
      Gareth Tribello authored
      For a number of complex multicolvars eg. Local_q4 it is useful
      to store the quantities calculated in one multicolvar and to use them later.
      I had written functionality for this in a somewhat ad hoc manner intially and
      as such there was much duplication of code and non uniformity in implications.
      This resolves these issues.  Data is now stored more consistently and it is possible
      to use a low memory version of this functionality at all times.
      878be3b9
  23. Aug 31, 2013
  24. Aug 30, 2013
    • Giovanni Bussi's avatar
      Optimized OFile · 43374a25
      Giovanni Bussi authored
      Removed many scans of the output buffer by keeping trace of buffer length.
      Time needed to write a long line with a sequence of file.printf() is
      now linear with line length. Before it was quatradic, causing problems
      especially when logging huge atom lists at startup.
      43374a25
  25. Aug 26, 2013
  26. Aug 25, 2013
    • Giovanni Bussi's avatar
      Replacements with enhanced Communicator class · 32de30f7
      Giovanni Bussi authored
      I replaced everywhere it made sense the new Communicator class
      syntax. This commit is not strictly necessary, but provides
      examples of the simpler syntax so I think should be merged
      32de30f7
    • Giovanni Bussi's avatar
      Improved Communicator class · ce5bdf7e
      Giovanni Bussi authored
      Now all the MPI wrappers come in two flavors. They can be used
      with a pointer as usual, e.g.
      
      double*data;
      comm.Sum(&data[0],n);
      
      or they can be used with a reference to a single number
      
      double x;
      comm.Sum(x);
      // same as comm.Sum(&x,1);
      
      Notably, the second version also works with std::vector and std::string
      and automatically detect the size, e.g.
      
      std::vector<double> v;
      comm.Sum(v);
      // same as comm.Sum(&v[0],v.size());
      
      Furthermore, everything works transparently with Vector and Tensor
      either as single objects or elements
      of vectors or of C arrays:
      
      std::vector<Vector> v;
      comm.Sum(v);
      // same as comm.Sum(&v[0],v.size());
      // same as comm.Sum(&v[0][0],3*v.size());
      
      All the regtests are satisfied
      ce5bdf7e
  27. Aug 24, 2013
  28. Aug 21, 2013
    • Giovanni Bussi's avatar
      Fixed bug · ec4119b8
      Giovanni Bussi authored
      There was a potential bug when stripping blanks from short strings (1 char)
      ec4119b8
  29. Aug 08, 2013
  30. Aug 04, 2013
Loading