You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- GIT repository on [github](https://github.com/ICB-DCM/AMICI)
9
9
10
-
### Obtaining AMICI via the GIT versioning system
10
+
If AMICI was downloaded as a zip, it needs to be unpacked in a convenient directory. If AMICI was obtained via cloning of the git repository, no further unpacking is necessary.
11
+
12
+
### Obtaining AMICI via the GIT version control system
11
13
In order to always stay up-to-date with the latest AMICI versions, simply pull it from our GIT repository and
12
14
recompile it when a new release is available. For more information about GIT checkout their [website](http://git-scm.com/)
13
15
14
16
The GIT repository can currently be found at https://github.com/ICB-DCM/AMICI and a direct clone is possible via
If AMICI was downloaded as a zip, it needs to be unpacked in a convenient directory. If AMICI was obtained via cloning of the git repository, no further unpacking is necessary.
21
-
22
20
### Dependencies
23
21
24
22
The MATLAB interface only depends on the symbolic toolbox, which is needed for model compilation, but not simulation.
@@ -82,7 +80,7 @@ For the compilation of .mex files, MATLAB needs to be configured with a working
82
80
For a list of supported compilers we refer to the mathworks documentation: [mathworks.com](http://mathworks.com/support/compilers/R2018b/index.html)
83
81
Note that Microsoft Visual Studio compilers are currently not supported.
84
82
85
-
### python
83
+
### Python
86
84
87
85
To use AMICI from python, install the module and all other requirements using pip:
88
86
@@ -167,14 +165,24 @@ To use AMICI from C++, run the
167
165
./scripts/buildSuitesparse.sh
168
166
./scripts/buildAmici.sh
169
167
170
-
script to compile amici libary. The static library file can then be linked from
168
+
script to compile amici library.
169
+
170
+
The static library file can then be linked from
171
171
172
172
./build/libamici.a
173
173
174
174
In CMake-based packages, amici can be linked via
175
175
176
176
find_package(Amici)
177
177
178
+
*Optional*: To build AMICI with SuperLU_MT support, run
179
+
180
+
./scripts/buildSuperLUMT.sh
181
+
./scripts/buildSundials.sh
182
+
cd build/
183
+
cmake -DSUNDIALS_SUPERLUMT_ENABLE=ON ..
184
+
make
185
+
178
186
## Dependencies
179
187
180
188
The MATLAB interface requires the Mathworks Symbolic Toolbox for model generation via `amiwrap(...)`, but not for execution of precompiled models. Currently MATLAB R2018a or newer is not supported (see https://github.com/ICB-DCM/AMICI/issues/307)
Copy file name to clipboardExpand all lines: documentation/FAQ.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,12 @@ __A__: This may be due to an old compiler version. See [issue #161](https://gith
18
18
19
19
---
20
20
21
+
__Q__: How are events interpreted in a DAE context?
22
+
23
+
__A__: Currently we only support impulse free events. Also sensitivities have never been tested. Proceed with care and create an [issue](https://github.com/ICB-DCM/AMICI/issues) if any problems arise!
24
+
25
+
---
26
+
21
27
__Q__: The simulation/sensitivities I get are incorrect.
22
28
23
29
__A__: There are some known issues, especially with adjoint sensitivities, events and DAEs. If your particular problem is not featured in the [issues](https://github.com/ICB-DCM/AMICI/issues) list, please add it!
0 commit comments