本文整理汇总了C++中A_STAR_STAR函数的典型用法代码示例。如果您正苦于以下问题:C++ A_STAR_STAR函数的具体用法?C++ A_STAR_STAR怎么用?C++ A_STAR_STAR使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了A_STAR_STAR函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: DEBUG_ONLY
BDM& BDM::operator=( const BlockDistMatrix<T,STAR,MC>& A )
{
DEBUG_ONLY(CSE cse("[MD,STAR] = [STAR,MC]"))
// TODO: More efficient implementation?
BlockDistMatrix<T,STAR,STAR> A_STAR_STAR(A);
*this = A_STAR_STAR;
return *this;
}
示例2: DEBUG_ONLY
BDM& BDM::operator=( const DistMatrix<T,STAR,MD,BLOCK>& A )
{
DEBUG_ONLY(CSE cse("[MR,MC] = [STAR,MD]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR,BLOCK> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例3: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,STAR,MC>& A )
{
DEBUG_ONLY(CallStackEntry cse("[MD,STAR] = [STAR,MC]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例4: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,STAR,MD>& A )
{
DEBUG_ONLY(CSE cse("[STAR,VR] = [STAR,MD]"))
// TODO: Optimize this later if important
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例5: DEBUG_ONLY
BDM& BDM::operator=( const BlockDistMatrix<T,STAR,MD>& A )
{
DEBUG_ONLY(CallStackEntry cse("[VC,STAR] = [STAR,MD]"))
// TODO: More efficient implementation?
BlockDistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例6: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,VC,STAR>& A )
{
DEBUG_ONLY(CSE cse("[MD,STAR] = [VC,STAR]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例7: DEBUG_ONLY
DM& DM::operator=( const DistMatrix<T,MD,STAR>& A )
{
DEBUG_ONLY(CallStackEntry cse("[STAR,VC] = [MD,STAR]"))
// TODO: Optimize this later if important
DistMatrix<T,STAR,STAR> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}
示例8: DEBUG_ONLY
BDM& BDM::operator=( const DistMatrix<T,MD,STAR,BLOCK_CYCLIC>& A )
{
DEBUG_ONLY(CSE cse("[STAR,VR] = [MD,STAR]"))
// TODO: More efficient implementation?
DistMatrix<T,STAR,STAR,BLOCK_CYCLIC> A_STAR_STAR( A );
*this = A_STAR_STAR;
return *this;
}