gsl_permutation.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* permutation/gsl_permutation.h
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Brian Gough
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. #ifndef __GSL_PERMUTATION_H__
  20. #define __GSL_PERMUTATION_H__
  21. #include <stdlib.h>
  22. #include "gsl_types.h"
  23. #include "gsl_errno.h"
  24. #include "gsl_check_range.h"
  25. #undef __BEGIN_DECLS
  26. #undef __END_DECLS
  27. #ifdef __cplusplus
  28. # define __BEGIN_DECLS extern "C" {
  29. # define __END_DECLS }
  30. #else
  31. # define __BEGIN_DECLS /* empty */
  32. # define __END_DECLS /* empty */
  33. #endif
  34. __BEGIN_DECLS
  35. struct gsl_permutation_struct
  36. {
  37. size_t size;
  38. size_t *data;
  39. };
  40. typedef struct gsl_permutation_struct gsl_permutation;
  41. gsl_permutation *gsl_permutation_alloc (const size_t n);
  42. gsl_permutation *gsl_permutation_calloc (const size_t n);
  43. void gsl_permutation_init (gsl_permutation * p);
  44. void gsl_permutation_free (gsl_permutation * p);
  45. int gsl_permutation_memcpy (gsl_permutation * dest, const gsl_permutation * src);
  46. int gsl_permutation_fread (FILE * stream, gsl_permutation * p);
  47. int gsl_permutation_fwrite (FILE * stream, const gsl_permutation * p);
  48. int gsl_permutation_fscanf (FILE * stream, gsl_permutation * p);
  49. int gsl_permutation_fprintf (FILE * stream, const gsl_permutation * p, const char *format);
  50. size_t gsl_permutation_size (const gsl_permutation * p);
  51. size_t * gsl_permutation_data (const gsl_permutation * p);
  52. size_t gsl_permutation_get (const gsl_permutation * p, const size_t i);
  53. int gsl_permutation_swap (gsl_permutation * p, const size_t i, const size_t j);
  54. int gsl_permutation_valid (gsl_permutation * p);
  55. void gsl_permutation_reverse (gsl_permutation * p);
  56. int gsl_permutation_inverse (gsl_permutation * inv, const gsl_permutation * p);
  57. int gsl_permutation_next (gsl_permutation * p);
  58. int gsl_permutation_prev (gsl_permutation * p);
  59. int gsl_permutation_mul (gsl_permutation * p, const gsl_permutation * pa, const gsl_permutation * pb);
  60. int gsl_permutation_linear_to_canonical (gsl_permutation * q, const gsl_permutation * p);
  61. int gsl_permutation_canonical_to_linear (gsl_permutation * p, const gsl_permutation * q);
  62. size_t gsl_permutation_inversions (const gsl_permutation * p);
  63. size_t gsl_permutation_linear_cycles (const gsl_permutation * p);
  64. size_t gsl_permutation_canonical_cycles (const gsl_permutation * q);
  65. #ifdef HAVE_INLINE
  66. extern inline
  67. size_t
  68. gsl_permutation_get (const gsl_permutation * p, const size_t i)
  69. {
  70. #if GSL_RANGE_CHECK
  71. if (i >= p->size)
  72. {
  73. GSL_ERROR_VAL ("index out of range", GSL_EINVAL, 0);
  74. }
  75. #endif
  76. return p->data[i];
  77. }
  78. #endif /* HAVE_INLINE */
  79. __END_DECLS
  80. #endif /* __GSL_PERMUTATION_H__ */