![]() |
NEURON
|
#include "nvector.h"#include "sundialstypes.h"Go to the source code of this file.
Classes | |
| struct | _N_VectorContent_NrnSerialLD |
Macros | |
| #define | NV_CONTENT_S_LD(v) ( (N_VectorContent_NrnSerialLD)(v->content) ) |
| #define | NV_LENGTH_S_LD(v) ( NV_CONTENT_S_LD(v)->length ) |
| #define | NV_OWN_DATA_S_LD(v) ( NV_CONTENT_S_LD(v)->own_data ) |
| #define | NV_DATA_S_LD(v) ( NV_CONTENT_S_LD(v)->data ) |
| #define | NV_Ith_S_LD(v, i) ( NV_DATA_S_LD(v)[i] ) |
Typedefs | |
| typedef struct _N_VectorContent_NrnSerialLD * | N_VectorContent_NrnSerialLD |
Functions | |
| N_Vector | N_VNew_NrnSerialLD (long int vec_length) |
| N_Vector | N_VNewEmpty_NrnSerialLD (long int vec_length) |
| N_Vector | N_VCloneEmpty_NrnSerialLD (N_Vector w) |
| N_Vector | N_VMake_NrnSerialLD (long int vec_length, realtype *v_data) |
| N_Vector * | N_VNewVectorArray_NrnSerialLD (int count, long int vec_length) |
| N_Vector * | N_VNewVectorArrayEmpty_NrnSerialLD (int count, long int vec_length) |
| void | N_VDestroyVectorArray_NrnSerialLD (N_Vector *vs, int count) |
| void | N_VPrint_NrnSerialLD (N_Vector v) |
| N_Vector | N_VClone_NrnSerialLD (N_Vector w) |
| void | N_VDestroy_NrnSerialLD (N_Vector v) |
| void | N_VSpace_NrnSerialLD (N_Vector v, long int *lrw, long int *liw) |
| realtype * | N_VGetArrayPointer_NrnSerialLD (N_Vector v) |
| void | N_VSetArrayPointer_NrnSerialLD (realtype *v_data, N_Vector v) |
| void | N_VLinearSum_NrnSerialLD (realtype a, N_Vector x, realtype b, N_Vector y, N_Vector z) |
| void | N_VConst_NrnSerialLD (realtype c, N_Vector z) |
| void | N_VProd_NrnSerialLD (N_Vector x, N_Vector y, N_Vector z) |
| void | N_VDiv_NrnSerialLD (N_Vector x, N_Vector y, N_Vector z) |
| void | N_VScale_NrnSerialLD (realtype c, N_Vector x, N_Vector z) |
| void | N_VAbs_NrnSerialLD (N_Vector x, N_Vector z) |
| void | N_VInv_NrnSerialLD (N_Vector x, N_Vector z) |
| void | N_VAddConst_NrnSerialLD (N_Vector x, realtype b, N_Vector z) |
| realtype | N_VDotProd_NrnSerialLD (N_Vector x, N_Vector y) |
| realtype | N_VMaxNorm_NrnSerialLD (N_Vector x) |
| realtype | N_VWrmsNorm_NrnSerialLD (N_Vector x, N_Vector w) |
| realtype | N_VWrmsNormMask_NrnSerialLD (N_Vector x, N_Vector w, N_Vector id) |
| realtype | N_VMin_NrnSerialLD (N_Vector x) |
| realtype | N_VWL2Norm_NrnSerialLD (N_Vector x, N_Vector w) |
| realtype | N_VL1Norm_NrnSerialLD (N_Vector x) |
| void | N_VCompare_NrnSerialLD (realtype c, N_Vector x, N_Vector z) |
| booleantype | N_VInvTest_NrnSerialLD (N_Vector x, N_Vector z) |
| booleantype | N_VConstrMask_NrnSerialLD (N_Vector c, N_Vector x, N_Vector m) |
| realtype | N_VMinQuotient_NrnSerialLD (N_Vector num, N_Vector denom) |
| #define NV_CONTENT_S_LD | ( | v | ) | ( (N_VectorContent_NrnSerialLD)(v->content) ) |
Definition at line 138 of file nvector_nrnserial_ld.h.
| #define NV_DATA_S_LD | ( | v | ) | ( NV_CONTENT_S_LD(v)->data ) |
Definition at line 144 of file nvector_nrnserial_ld.h.
| #define NV_Ith_S_LD | ( | v, | |
| i | |||
| ) | ( NV_DATA_S_LD(v)[i] ) |
Definition at line 146 of file nvector_nrnserial_ld.h.
| #define NV_LENGTH_S_LD | ( | v | ) | ( NV_CONTENT_S_LD(v)->length ) |
Definition at line 140 of file nvector_nrnserial_ld.h.
| #define NV_OWN_DATA_S_LD | ( | v | ) | ( NV_CONTENT_S_LD(v)->own_data ) |
Definition at line 142 of file nvector_nrnserial_ld.h.
| typedef struct _N_VectorContent_NrnSerialLD* N_VectorContent_NrnSerialLD |
Definition at line 87 of file nvector_nrnserial_ld.h.
| void N_VAbs_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | z | ||
| ) |
Definition at line 547 of file nvector_nrnserial_ld.cpp.
| void N_VAddConst_NrnSerialLD | ( | N_Vector | x, |
| realtype | b, | ||
| N_Vector | z | ||
| ) |
Definition at line 573 of file nvector_nrnserial_ld.cpp.
| N_Vector N_VClone_NrnSerialLD | ( | N_Vector | w | ) |
Definition at line 341 of file nvector_nrnserial_ld.cpp.
| N_Vector N_VCloneEmpty_NrnSerialLD | ( | N_Vector | w | ) |
Definition at line 172 of file nvector_nrnserial_ld.cpp.
| void N_VCompare_NrnSerialLD | ( | realtype | c, |
| N_Vector | x, | ||
| N_Vector | z | ||
| ) |
Definition at line 719 of file nvector_nrnserial_ld.cpp.
| void N_VConst_NrnSerialLD | ( | realtype | c, |
| N_Vector | z | ||
| ) |
Definition at line 484 of file nvector_nrnserial_ld.cpp.
| booleantype N_VConstrMask_NrnSerialLD | ( | N_Vector | c, |
| N_Vector | x, | ||
| N_Vector | m | ||
| ) |
Definition at line 750 of file nvector_nrnserial_ld.cpp.
| void N_VDestroy_NrnSerialLD | ( | N_Vector | v | ) |
Definition at line 372 of file nvector_nrnserial_ld.cpp.
Definition at line 302 of file nvector_nrnserial_ld.cpp.
| void N_VDiv_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | y, | ||
| N_Vector | z | ||
| ) |
Definition at line 510 of file nvector_nrnserial_ld.cpp.
| realtype N_VDotProd_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | y | ||
| ) |
Definition at line 586 of file nvector_nrnserial_ld.cpp.
| realtype* N_VGetArrayPointer_NrnSerialLD | ( | N_Vector | v | ) |
Definition at line 387 of file nvector_nrnserial_ld.cpp.
| void N_VInv_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | z | ||
| ) |
Definition at line 560 of file nvector_nrnserial_ld.cpp.
| booleantype N_VInvTest_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | z | ||
| ) |
Definition at line 733 of file nvector_nrnserial_ld.cpp.
| realtype N_VL1Norm_NrnSerialLD | ( | N_Vector | x | ) |
Definition at line 691 of file nvector_nrnserial_ld.cpp.
| void N_VLinearSum_NrnSerialLD | ( | realtype | a, |
| N_Vector | x, | ||
| realtype | b, | ||
| N_Vector | y, | ||
| N_Vector | z | ||
| ) |
Definition at line 401 of file nvector_nrnserial_ld.cpp.
Definition at line 232 of file nvector_nrnserial_ld.cpp.
| realtype N_VMaxNorm_NrnSerialLD | ( | N_Vector | x | ) |
Definition at line 601 of file nvector_nrnserial_ld.cpp.
| realtype N_VMin_NrnSerialLD | ( | N_Vector | x | ) |
Definition at line 655 of file nvector_nrnserial_ld.cpp.
| realtype N_VMinQuotient_NrnSerialLD | ( | N_Vector | num, |
| N_Vector | denom | ||
| ) |
Definition at line 777 of file nvector_nrnserial_ld.cpp.
Definition at line 140 of file nvector_nrnserial_ld.cpp.
Definition at line 82 of file nvector_nrnserial_ld.cpp.
Definition at line 252 of file nvector_nrnserial_ld.cpp.
Definition at line 277 of file nvector_nrnserial_ld.cpp.
| void N_VPrint_NrnSerialLD | ( | N_Vector | v | ) |
Definition at line 315 of file nvector_nrnserial_ld.cpp.
| void N_VProd_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | y, | ||
| N_Vector | z | ||
| ) |
Definition at line 496 of file nvector_nrnserial_ld.cpp.
| void N_VScale_NrnSerialLD | ( | realtype | c, |
| N_Vector | x, | ||
| N_Vector | z | ||
| ) |
Definition at line 524 of file nvector_nrnserial_ld.cpp.
| void N_VSetArrayPointer_NrnSerialLD | ( | realtype * | v_data, |
| N_Vector | v | ||
| ) |
Definition at line 396 of file nvector_nrnserial_ld.cpp.
Definition at line 381 of file nvector_nrnserial_ld.cpp.
| realtype N_VWL2Norm_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | w | ||
| ) |
Definition at line 673 of file nvector_nrnserial_ld.cpp.
| realtype N_VWrmsNorm_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | w | ||
| ) |
Definition at line 616 of file nvector_nrnserial_ld.cpp.
| realtype N_VWrmsNormMask_NrnSerialLD | ( | N_Vector | x, |
| N_Vector | w, | ||
| N_Vector | id | ||
| ) |
Definition at line 634 of file nvector_nrnserial_ld.cpp.