Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
biocham
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
15
Issues
15
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Lifeware
biocham
Commits
722dfe91
Commit
722dfe91
authored
Jul 12, 2016
by
SOLIMAN Sylvain
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git+ssh://gforge/gitroot/biocham/biocham
parents
647ab843
ab26edff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
numerical_simulation.pl
numerical_simulation.pl
+5
-0
reaction_rules.pl
reaction_rules.pl
+2
-2
No files found.
numerical_simulation.pl
View file @
722dfe91
...
...
@@ -285,6 +285,11 @@ convert_name(Parameter, p(ParameterIndex)) :-
).
convert_expression
([
Object
],
IndexedExpression
)
:-
!,
convert_name
(
Object
,
IndexedExpression
).
convert_expression
(
if
Condition
then
IfTrue
else
IfFalse
,
IndexedExpression
)
:-
!,
convert_condition
(
Condition
,
IndexedCondition
),
...
...
reaction_rules.pl
View file @
722dfe91
...
...
@@ -173,7 +173,7 @@ condition(not Condition) :-
arithmetic_expression
([
A
])
:-
arithmetic_expression
(
A
).
object
(
A
).
arithmetic_expression
(
+
ArithmeticExpression0
)
:-
arithmetic_expression
(
ArithmeticExpression0
).
...
...
@@ -238,7 +238,7 @@ arithmetic_expression(Number) :-
number
(
Number
).
arithmetic_expression
(
Name
)
:-
name
(
Name
).
object
(
Name
).
patch_arithmetic_expression
(
...
...
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