| version 1.13 | version 1.14 |
|---|
| |
| // -*- c++ -*- | // -*- c++ -*- |
| | |
| | // This file is part of the Collective Variables module (Colvars). |
| | // The original version of Colvars and its updates are located at: |
| | // https://github.com/colvars/colvars |
| | // Please update all Colvars source files before making any changes. |
| | // If you wish to distribute your changes, please submit them to the |
| | // Colvars repository at GitHub. |
| | |
| #ifndef COLVARBIAS_ABF_H | #ifndef COLVARBIAS_ABF_H |
| #define COLVARBIAS_ABF_H | #define COLVARBIAS_ABF_H |
| | |
| |
| /// Read human-readable FE gradients and sample count (if not using restart) | /// Read human-readable FE gradients and sample count (if not using restart) |
| void read_gradients_samples(); | void read_gradients_samples(); |
| | |
| std::istream& read_restart(std::istream&); | std::istream& read_state_data(std::istream&); |
| std::ostream& write_restart(std::ostream&); | std::ostream& write_state_data(std::ostream&); |
| }; | }; |
| | |
| #endif | #endif |