From 0e7d4a277a5a51de1e24fcddfdee59e44aa3d402 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Fri, 18 Aug 2023 20:44:11 +0200 Subject: [PATCH] Remove commented out code. --- .../callbacks/nrncore_callbacks.cpp | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/src/nrniv/nrncore_write/callbacks/nrncore_callbacks.cpp b/src/nrniv/nrncore_write/callbacks/nrncore_callbacks.cpp index 1da8d53aea..0419b282db 100644 --- a/src/nrniv/nrncore_write/callbacks/nrncore_callbacks.cpp +++ b/src/nrniv/nrncore_write/callbacks/nrncore_callbacks.cpp @@ -352,8 +352,8 @@ int nrnthread_dat2_mech(int tid, int sz = nrn_prop_param_size_[type]; // As the NEURON data is now transposed then for now always create a new - // copy in the format expected by CoreNEURON -- TODO make sure this is - // freed, then later TODO remove the need for this entirely + // copy in the format expected by CoreNEURON. + // TODO remove the need for this entirely if (!copy) { data = new double[n * sz]; } @@ -363,13 +363,10 @@ int nrnthread_dat2_mech(int tid, } } - // double* data1; if (isart) { // data may not be contiguous - // data1 = contiguous_art_data(ml, n, sz); // delete after use nodeindices = NULL; } else { nodeindices = ml->nodeindices; // allocated below if copy - // data1 = ml->_data[0]; // do not delete after use } if (copy) { if (!isart) { @@ -378,15 +375,6 @@ int nrnthread_dat2_mech(int tid, nodeindices[i] = ml->nodeindices[i]; } } - // int nn = n * sz; - // for (int i = 0; i < nn; ++i) { - // data[i] = data1[i]; - // } - // if (isart) { - // delete[] data1; - // } - // } else { - // data = data1; } sz = bbcore_dparam_size[type]; // nrn_prop_dparam_size off by 1 if cvode_ieq.