git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@254 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
/* ----------------------------------------------------------------------
|
||||
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
||||
www.cs.sandia.gov/~sjplimp/lammps.html
|
||||
Steve Plimpton, sjplimp@sandia.gov, Sandia National Laboratories
|
||||
http://lammps.sandia.gov, Sandia National Laboratories
|
||||
Steve Plimpton, sjplimp@sandia.gov
|
||||
|
||||
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
||||
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
||||
@ -16,12 +16,15 @@
|
||||
#include "memory.h"
|
||||
#include "error.h"
|
||||
|
||||
using namespace LAMMPS_NS;
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
FixMinimize::FixMinimize(int narg, char **arg) : Fix(narg, arg)
|
||||
FixMinimize::FixMinimize(LAMMPS *lmp, int narg, char **arg) :
|
||||
Fix(lmp, narg, arg)
|
||||
{
|
||||
// perform initial allocation of atom-based arrays
|
||||
// register with atom class
|
||||
// register with Atom class
|
||||
|
||||
gradient = NULL;
|
||||
searchdir = NULL;
|
||||
@ -33,10 +36,9 @@ FixMinimize::FixMinimize(int narg, char **arg) : Fix(narg, arg)
|
||||
|
||||
FixMinimize::~FixMinimize()
|
||||
{
|
||||
// if atom class still exists:
|
||||
// unregister this fix so atom class doesn't invoke it any more
|
||||
// unregister callbacks to this fix from Atom class
|
||||
|
||||
if (atom) atom->delete_callback(id,0);
|
||||
atom->delete_callback(id,0);
|
||||
|
||||
// delete locally stored arrays
|
||||
|
||||
|
||||
Reference in New Issue
Block a user