Home
last modified time | relevance | path

Searched refs:negmap (Results 1 – 1 of 1) sorted by relevance

/petsc/src/mat/tests/
H A Dex23.c28 …PetscBool permute = PETSC_FALSE, negmap = PETSC_FALSE, repmap = PETSC_FALSE, allow_re… in main() local
39 PetscCall(PetscOptionsGetBool(NULL, NULL, "-negmap", &negmap, 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()