Blame view
fvn_sparse/UMFPACK/Source/umf_is_permutation.c
1.44 KB
422234dc3 git-svn-id: https... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
/* ========================================================================== */ /* === UMF_is_permutation =================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------- */ /* UMFPACK Copyright (c) Timothy A. Davis, CISE, */ /* Univ. of Florida. All Rights Reserved. See ../Doc/License for License. */ /* web: http://www.cise.ufl.edu/research/sparse/umfpack */ /* -------------------------------------------------------------------------- */ /* Return TRUE if P is a r-permutation vector, FALSE otherwise */ /* P [0..r-1] must be an r-permutation of 0..n-1 */ #include "umf_internal.h" GLOBAL Int UMF_is_permutation ( const Int P [ ], /* permutation of size r */ Int W [ ], /* workspace of size n */ Int n, Int r ) { Int i, k ; if (!P) { /* if P is (Int *) NULL, this is the identity permutation */ return (TRUE) ; } ASSERT (W != (Int *) NULL) ; for (i = 0 ; i < n ; i++) { W [i] = FALSE ; } for (k = 0 ; k < r ; k++) { i = P [k] ; DEBUG5 (("k "ID" i "ID" ", k, i)) ; if (i < 0 || i >= n) { DEBUG0 (("i out of range "ID" "ID" ", i, n)) ; return (FALSE) ; } if (W [i]) { DEBUG0 (("i duplicate "ID" ", i)) ; return (FALSE) ; } W [i] = TRUE ; } return (TRUE) ; } |