Lines Matching refs:repmap
28 …PetscBool permute = PETSC_FALSE, negmap = PETSC_FALSE, repmap = PETSC_FALSE, allow_re… in main() local
40 PetscCall(PetscOptionsGetBool(NULL, NULL, "-repmap", &repmap, NULL)); in main()
57 if (!negmap && !repmap) { in main()
62 } else if (negmap && !repmap) { /* non repeated but with negative indices */ in main()
64 } else if (!negmap && repmap) { /* non negative but repeated indices */ in main()
98 …PetscCall(MatSetOption(A, MAT_NEW_NONZERO_ALLOCATION_ERR, (PetscBool)!(repmap || negmap))); /* I d… in main()
134 if (negmap && repmap) squaretest = PETSC_FALSE; in main()
171 …PetscCall(MatSetOption(B, MAT_NEW_NONZERO_ALLOCATION_ERR, (PetscBool)!(repmap || negmap))); /* I d… in main()
386 if (!allow_repeated || !repmap || size == 1) { in main()
868 …if (!repmap) PetscCall(CheckMat(lA, lA2, usemult, "MatISSetAllowRepeated(false) with non-repeated … in main()
871 …if (repmap) PetscCall(CheckMat(A2, B, usemult, "MatISSetAllowRepeated(false) with repeated entries… in main()