Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Lifeware
biocham
Commits
9279f3a3
Commit
9279f3a3
authored
Sep 06, 2018
by
SOLIMAN Sylvain
Browse files
add test and doc delete_(single_)ode
parent
e197e8c7
Changes
2
Hide whitespace changes
Inline
Side-by-side
ode.pl
View file @
9279f3a3
...
...
@@ -830,6 +830,10 @@ put_ode_into_system :-
).
%! delete_single_ode(+Name:name) is det
%
% deletes the ODE associated with variable Name
% necessitates a current ODE system
delete_single_ode
(
Name
)
:-
get_current_ode_system
(
Id
),
delete_item
([
parent
:
Id
,
kind
:
ode
,
key
:
Name
]).
...
...
ode.plt
View file @
9279f3a3
...
...
@@ -49,6 +49,8 @@ test(
new_ode_system,
add_ode(da/dt = -a),
add_ode(db/dt = a),
add_ode(dc/dt = 1),
delete_ode([c]),
import_reactions_from_ode_system,
all_items([kind: reaction], Reactions).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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