Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Box.hpp

    r528b3e r025048  
    122122
    123123private:
     124  /** Internal explode function that works on the staticly present internal_list
     125   *
     126   * \todo Note that is not thread-safe!
     127   *
     128   * Most of the time of explode is consumed by memory allocation if it is called
     129   * repeatedly.
     130   *
     131   * @param point point to explode
     132   * @param n neighbour shells to explode
     133   */
     134  void internal_explode(const Vector &point,int n) const;
     135
     136  //!> Internal vector list for exploding vectors and checking.
     137  static VECTORSET(std::list) internal_list;
     138
    124139  Conditions_t conditions;
    125140  RealSpaceMatrix *M;    //!< Defines the layout of the box
Note: See TracChangeset for help on using the changeset viewer.