CoreNEURON
errcodes.h
Go to the documentation of this file.
1 /*
2 # =============================================================================
3 # Originally errcodes.h from SCoP library, Copyright (c) 1984-90 Duke University
4 # =============================================================================
5 # Subsequent extensive prototype and memory layout changes for CoreNEURON
6 #
7 # Copyright (c) 2016 - 2022 Blue Brain Project/EPFL
8 #
9 # See top-level LICENSE file for details.
10 # =============================================================================.
11 */
12 #pragma once
13 namespace coreneuron {
14 extern int abort_run(int);
15 namespace scopmath {
16 /** @brief Flag to disable some code sections at compile time.
17  *
18  * Some methods, such as coreneuron::scopmath::sparse::getelm(...), decide at
19  * runtime whether they are simply accessors, or if they dynamically modify the
20  * matrix in question, possibly allocating new memory. Typically the second
21  * mode will be used during model initialisation, while the first will be used
22  * during computation/simulation. Compiling the more complicated code for the
23  * second mode can be problematic for targets such as GPU, where dynamic
24  * allocation and global state are complex. This enum is intended to be used as
25  * a template parameter to flag (at compile time) when this code can be
26  * omitted.
27  */
28 enum struct enabled_code { all, compute_only };
29 } // namespace scopmath
30 } // namespace coreneuron
31 #define ROUNDOFF 1.e-20
32 #define ZERO 1.e-8
33 #define STEP 1.e-6
34 #define CONVERGE 1.e-6
35 #define MAXCHANGE 0.05
36 #define INITSIMPLEX 0.25
37 #define MAXITERS 50
38 #define MAXSMPLXITERS 100
39 #define MAXSTEPS 20
40 #define MAXHALVE 15
41 #define MAXORDER 6
42 #define MAXTERMS 3
43 #define MAXFAIL 10
44 #define MAX_JAC_ITERS 20
45 #define MAX_GOOD_ORDER 2
46 #define MAX_GOOD_STEPS 3
47 
48 #define SUCCESS 0
49 #define EXCEED_ITERS 1
50 #define SINGULAR 2
51 #define PRECISION 3
52 #define CORR_FAIL 4
53 #define INCONSISTENT 5
54 #define BAD_START 6
55 #define NODATA 7
56 #define NO_SOLN 8
57 #define LOWMEM 9
58 #define DIVCHECK 10
59 #define NOFORCE 11
60 #define DIVERGED 12
61 #define NEG_ARG 13
62 #define RANGE 14
coreneuron::scopmath::enabled_code
enabled_code
Flag to disable some code sections at compile time.
Definition: errcodes.h:28
coreneuron
THIS FILE IS AUTO GENERATED DONT MODIFY IT.
Definition: corenrn_parameters.cpp:12
coreneuron::abort_run
int abort_run(int code)
Definition: abort.cpp:40
coreneuron::scopmath::enabled_code::all
@ all
coreneuron::scopmath::enabled_code::compute_only
@ compute_only