Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gauthier Quesnel
irritator
Commits
26fe444d
Commit
26fe444d
authored
Jun 16, 2021
by
ese ovie
Committed by
Gauthier Quesnel
Jun 18, 2021
Browse files
gui: add qss1 seir model in node-editor
parent
fe7d09f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/gui/node-editor.cpp
View file @
26fe444d
...
...
@@ -3077,6 +3077,21 @@ editor::show_window() noexcept
3
,
"Fail to initialize example_qss_izhikevich<1>: %s
\n
"
,
status_string
(
ret
));
if
(
ImGui
::
MenuItem
(
"Insert example QSS1 seir_lineaire"
))
if
(
auto
ret
=
example_qss_seir_lineaire
<
1
>
(
sim
,
empty_fun
);
is_bad
(
ret
))
log_w
.
log
(
3
,
"Fail to initialize example_qss_seir_lineaire<1>: %s
\n
"
,
status_string
(
ret
));
if
(
ImGui
::
MenuItem
(
"Insert example QSS1 seir_nonlineaire"
))
if
(
auto
ret
=
example_qss_seir_nonlineaire
<
1
>
(
sim
,
empty_fun
);
is_bad
(
ret
))
log_w
.
log
(
3
,
"Fail to initialize "
"example_qss_seir_nonlineaire<1>: %s
\n
"
,
status_string
(
ret
));
if
(
ImGui
::
MenuItem
(
"Insert example QSS2 lotka_volterra"
))
if
(
auto
ret
=
example_qss_lotka_volterra
<
2
>
(
sim
,
empty_fun
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment