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
45f2159f
Commit
45f2159f
authored
Feb 12, 2020
by
FAGES Francois
Browse files
parameters kn instead of k_n Modal ChemArithmetic
parent
4abe742e
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
library/examples/modalINF473L/Chemarithmetic.ipynb
0 → 100644
View file @
45f2159f
This diff is collapsed.
Click to expand it.
library/examples/modalINF473L/GeneExpression.ipynb
View file @
45f2159f
This diff is collapsed.
Click to expand it.
library/examples/modalINF473L/HelloWorld.ipynb
View file @
45f2159f
This diff is collapsed.
Click to expand it.
models.pl
View file @
45f2159f
...
...
@@ -276,7 +276,7 @@ inherits(Ancestors) :-
parametrize
:-
biocham_command
,
doc
(
'Replace numeric constants in a model by parameters initialized with their value.'
),
doc
(
'Replace numeric constants in a model by parameters
k1, k2,...
initialized with their value.'
),
parametrize_initial_concentration
,
parametrize_reaction
.
...
...
util.pl
View file @
45f2159f
...
...
@@ -658,7 +658,7 @@ stutter(N, In, Out) :-
%! new_parameter(-Name)
%
% Generate the name of a new (and non-existent) parameter of the form k
_
n
% Generate the name of a new (and non-existent) parameter of the form kn
new_parameter(Name) :-
(
...
...
@@ -670,7 +670,7 @@ new_parameter(Name) :-
),
Np is N+1,
nb_setval(parameter_index, Np),
atom_concat('k
_
',N,Try),
atom_concat('k',N,Try),
(
single_model(ModelId),
identifier_kind(ModelId, Try, parameter)
...
...
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