Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mpp
Mpp
Commits
ecd1bf5c
Commit
ecd1bf5c
authored
Mar 10, 2020
by
niklas.baumgarten
Browse files
bug fix Child Intval
parent
b2c76895
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cells/Intval.cpp
View file @
ecd1bf5c
...
...
@@ -92,8 +92,8 @@ int Intval::Children() const { return 2; }
Point
Intval
::
Child
(
int
i
)
const
{
switch
(
i
)
{
case
0
:
return
(
1
.0
/
4.0
)
*
(
z
(
0
)
+
z
(
1
));
case
1
:
return
(
3.0
/
4
.0
)
*
(
z
(
0
)
+
z
(
1
))
;
case
0
:
return
(
3
.0
*
z
(
0
)
+
z
(
1
))
/
4.0
;
case
1
:
return
(
z
(
0
)
+
3
.0
*
z
(
1
))
/
4.0
;
}
Exit
(
"Not Implemented"
);
}
...
...
Write
Preview
Supports
Markdown
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