Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
CoMISo
Commits
b7acefc2
Commit
b7acefc2
authored
Feb 23, 2021
by
Isaak Lim
Browse files
fix type for gmm iterators
parent
3089de96
Pipeline
#17016
passed with stages
in 10 minutes and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Solver/GMM_ToolsT_impl.hh
View file @
b7acefc2
...
...
@@ -1073,8 +1073,8 @@ void inspect_matrix( const MatrixT& _A)
typedef
typename
gmm
::
linalg_traits
<
ColT
>::
const_iterator
CIter
;
ColT
col
=
mat_const_col
(
Acol
,
i
);
CIter
it
=
gmm
::
vect_const_begin
(
col
);
CIter
ite
=
gmm
::
vect_const_end
(
col
);
auto
it
=
gmm
::
vect_const_begin
(
col
);
auto
ite
=
gmm
::
vect_const_end
(
col
);
for
(;
it
!=
ite
;
++
it
)
{
...
...
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