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
Kirill Terekhov
INMOST
Commits
2d42caac
Commit
2d42caac
authored
May 15, 2015
by
Alexander Danilov
Browse files
Fix nonconformant code
solver_bcgsl.hpp: jump crosses initialization of 'bool halt'
parent
821a833b
Changes
1
Show whitespace changes
Inline
Side-by-side
solver_bcgsl.hpp
View file @
2d42caac
...
...
@@ -625,12 +625,12 @@ namespace INMOST
#endif
INMOST_DATA_ENUM_TYPE
i
=
0
;
bool
halt
=
false
;
if
(
last_resid
<
atol
||
last_resid
<
rtol
*
resid0
)
{
reason
=
"initial solution satisfy tolerances"
;
goto
exit
;
}
bool
halt
=
false
;
#if defined(USE_OMP)
#pragma omp parallel
#endif
...
...
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