Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/boundary.cpp

    re3cbf9 r24a5e0  
    44 */
    55
     6#include "World.hpp"
    67#include "atom.hpp"
    78#include "bond.hpp"
     
    800801{
    801802        Info FunctionInfo(__func__);
    802   molecule *Filling = new molecule(filler->elemente);
     803  molecule *Filling = World::get()->createMolecule();
    803804  Vector CurrentPosition;
    804805  int N[NDIM];
     
    887888            Walker = Walker->next;
    888889            // copy atom ...
    889             CopyAtoms[Walker->nr] = new atom(Walker);
     890            CopyAtoms[Walker->nr] = Walker->clone();
    890891
    891892            // create atomic random translation vector ...
     
    964965  bool freeLC = false;
    965966  bool status = false;
    966   CandidateForTesselation *baseline = NULL;
     967  CandidateForTesselation *baseline=0;
    967968  LineMap::iterator testline;
    968969  bool OneLoopWithoutSuccessFlag = true;  // marks whether we went once through all baselines without finding any without two triangles
Note: See TracChangeset for help on using the changeset viewer.