當前位置: 首頁>>代碼示例>>C++>>正文


C++ A_STAR_STAR函數代碼示例

本文整理匯總了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;
}
開發者ID:birm,項目名稱:Elemental,代碼行數:8,代碼來源:MD_STAR.cpp

示例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;
}
開發者ID:andreasnoack,項目名稱:Elemental,代碼行數:8,代碼來源:MR_MC.cpp

示例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;
}
開發者ID:arbenson,項目名稱:Elemental,代碼行數:8,代碼來源:MD_STAR.cpp

示例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;
}
開發者ID:birm,項目名稱:Elemental,代碼行數:8,代碼來源:STAR_VR.cpp

示例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;
}
開發者ID:sg0,項目名稱:Elemental,代碼行數:8,代碼來源:VC_STAR.cpp

示例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;
}
開發者ID:xinchoubiology,項目名稱:Elemental,代碼行數:8,代碼來源:MD_STAR.cpp

示例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;
}
開發者ID:arbenson,項目名稱:Elemental,代碼行數:8,代碼來源:STAR_VC.cpp

示例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;
}
開發者ID:bluehope,項目名稱:Elemental,代碼行數:8,代碼來源:STAR_VR.cpp


注:本文中的A_STAR_STAR函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。