NEURON
newton_struct.h
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Copyright (c) 2016 - 2022 Blue Brain Project/EPFL
4 #
5 # See top-level LICENSE file for details.
6 # =============================================================================
7 */
8 #pragma once
10 
11 namespace coreneuron {
12 
13 /* avoid incessant alloc/free memory */
14 struct NewtonSpace {
15  int n;
17  double* delta_x;
18  double** jacobian;
19  int* perm;
20  double* high_value;
21  double* low_value;
22  double* rowmax;
23 };
24 
27 
28 } // namespace coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
void nrn_newtonspace_delete_from_device(NewtonSpace *ns)
void nrn_newtonspace_copyto_device(NewtonSpace *ns)