We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e261422 commit 41166ceCopy full SHA for 41166ce
CHOLMOD/MatrixOps/cholmod_horzcat.c
@@ -89,7 +89,7 @@ cholmod_sparse *CHOLMOD(horzcat) // return C = [A B]
89
ERROR (CHOLMOD_INVALID, "A and B must have same # rows") ;
90
return (NULL) ;
91
}
92
- if (mode != 0 && (A->xtype != B->xtype || A->dtype != A->dtype))
+ if (mode != 0 && (A->xtype != B->xtype || A->dtype != B->dtype))
93
{
94
// A and B must have the same xtype and dtype if mode is 0
95
ERROR (CHOLMOD_INVALID, "A and B must have same xtype and dtype") ;
0 commit comments