Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
generators
EMAM2Cpp
Commits
a02f4670
Commit
a02f4670
authored
Oct 02, 2020
by
Jan Philipp Haller
Browse files
Corrected notation of Matrices:
Definition is now m x n and not n x m. m: row n: column
parent
533e90bc
Pipeline
#337987
passed with stage
in 8 minutes and 58 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/main/java/de/monticore/lang/monticar/generator/optimization/MathInformationRegister.java
View file @
a02f4670
...
...
@@ -52,7 +52,7 @@ public class MathInformationRegister {
if
(
firstDoubleDot
)
result
=
1
;
else
{
result
=
getAmount
(
name
,
1
);
result
=
getAmount
(
name
,
0
);
}
return
result
;
}
...
...
@@ -132,7 +132,7 @@ public class MathInformationRegister {
if
(
secondDoubleDot
)
result
=
1
;
else
{
result
=
getAmount
(
name
,
0
);
result
=
getAmount
(
name
,
1
);
}
return
result
;
}
...
...
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