Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
3rd
eigen
Commits
bd919927
Commit
bd919927
authored
12 years ago
by
Desire NUENTSA
Browse files
Options
Download
Email Patches
Plain Diff
Fix unresolved typename bug for MSVC
parent
6b87f8ac
master
branches/3.2
branches/3.3
branches/Anshul-Jaiswal/update-configurevectorizationh-to-not-op-1573079916090
branches/default
3.3.7
3.3.6
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.3.0
3.3-rc2
3.3-rc1
3.3-beta2
3.3-beta1
3.3-alpha1
3.2.10
3.2.9
3.2.8
3.2.7
3.2.6
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.2-rc2
3.2-rc1
before-evaluators
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Eigen/src/SparseCore/SparseSelfAdjointView.h
+2
-2
Eigen/src/SparseCore/SparseSelfAdjointView.h
with
2 additions
and
2 deletions
+2
-2
Eigen/src/SparseCore/SparseSelfAdjointView.h
View file @
bd919927
...
...
@@ -75,7 +75,7 @@ template<typename MatrixType, unsigned int UpLo> class SparseSelfAdjointView
* Indeed, the SparseSelfadjointView operand is first copied into a temporary SparseMatrix before computing the product.
*/
template
<
typename
OtherDerived
>
SparseSparseProduct
<
SparseMatrix
<
Scalar
,
(
internal
::
traits
<
OtherDerived
>::
Flags
&
RowMajorBit
)
?
RowMajor
:
ColMajor
,
Index
>
,
OtherDerived
>
SparseSparseProduct
<
SparseMatrix
<
Scalar
,
(
(
internal
::
traits
<
OtherDerived
>::
Flags
&
RowMajorBit
)
?
RowMajor
:
ColMajor
)
,
Index
>
,
OtherDerived
>
operator
*
(
const
SparseMatrixBase
<
OtherDerived
>&
rhs
)
const
{
return
SparseSparseProduct
<
SparseMatrix
<
Scalar
,
(
internal
::
traits
<
OtherDerived
>::
Flags
&
RowMajorBit
)
?
RowMajor
:
ColMajor
,
Index
>
,
OtherDerived
>
(
*
this
,
rhs
.
derived
());
...
...
@@ -87,7 +87,7 @@ template<typename MatrixType, unsigned int UpLo> class SparseSelfAdjointView
* Indeed, the SparseSelfadjointView operand is first copied into a temporary SparseMatrix before computing the product.
*/
template
<
typename
OtherDerived
>
friend
SparseSparseProduct
<
OtherDerived
,
SparseMatrix
<
Scalar
,
(
internal
::
traits
<
OtherDerived
>::
Flags
&
RowMajorBit
)
?
RowMajor
:
ColMajor
,
Index
>
>
SparseSparseProduct
<
OtherDerived
,
SparseMatrix
<
Scalar
,
(
(
internal
::
traits
<
OtherDerived
>::
Flags
&
RowMajorBit
)
?
RowMajor
:
ColMajor
)
,
Index
>
>
operator
*
(
const
SparseMatrixBase
<
OtherDerived
>&
lhs
,
const
SparseSelfAdjointView
&
rhs
)
{
return
SparseSparseProduct
<
OtherDerived
,
SparseMatrix
<
Scalar
,
(
internal
::
traits
<
OtherDerived
>::
Flags
&
RowMajorBit
)
?
RowMajor
:
ColMajor
,
Index
>
>
(
lhs
.
derived
(),
rhs
.
derived
());
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help