Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
Takin
mag-core
Commits
35763853
Commit
35763853
authored
Jun 29, 2019
by
Tobias WEBER
Browse files
bugfix
parent
8d4f866c
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/tascalc/TasCalc.java
View file @
35763853
...
...
@@ -343,7 +343,7 @@ public class TasCalc
if
(
Math
.
abs
(
M
[
i
][
j
])
<
Double
.
MIN_VALUE
)
continue
;
double
sgn
=
((
i
+
j
%
2
)
==
0
)
?
1
.
:
-
1
.;
double
sgn
=
((
(
i
+
j
)
%
2
)
==
0
)
?
1
.
:
-
1
.;
d
+=
sgn
*
M
[
i
][
j
]
*
det
(
submat
(
M
,
i
,
j
));
}
...
...
@@ -520,7 +520,7 @@ public class TasCalc
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
...
...
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