mmgpy 0.1.1__cp311-cp311-macosx_13_0_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mmgpy might be problematic. Click here for more details.

Files changed (63) hide show
  1. bin/mmg2d_O3 +0 -0
  2. bin/mmg3d_O3 +0 -0
  3. bin/mmgs_O3 +0 -0
  4. include/mmg/common/git_log_mmg.h +6 -0
  5. include/mmg/common/libmmgtypes.h +687 -0
  6. include/mmg/common/libmmgtypesf.h +762 -0
  7. include/mmg/common/mmg_export.h +47 -0
  8. include/mmg/common/mmgcmakedefines.h +46 -0
  9. include/mmg/common/mmgcmakedefinesf.h +29 -0
  10. include/mmg/common/mmgversion.h +54 -0
  11. include/mmg/libmmg.h +67 -0
  12. include/mmg/libmmgf.h +42 -0
  13. include/mmg/mmg2d/libmmg2d.h +2761 -0
  14. include/mmg/mmg2d/libmmg2df.h +3263 -0
  15. include/mmg/mmg2d/mmg2d_export.h +34 -0
  16. include/mmg/mmg3d/libmmg3d.h +3444 -0
  17. include/mmg/mmg3d/libmmg3df.h +4041 -0
  18. include/mmg/mmg3d/mmg3d_export.h +34 -0
  19. include/mmg/mmgs/libmmgs.h +2560 -0
  20. include/mmg/mmgs/libmmgsf.h +3028 -0
  21. include/mmg/mmgs/mmgs_export.h +34 -0
  22. lib/cmake/mmg/FindElas.cmake +57 -0
  23. lib/cmake/mmg/FindSCOTCH.cmake +373 -0
  24. lib/cmake/mmg/MmgTargets-release.cmake +49 -0
  25. lib/cmake/mmg/MmgTargets.cmake +127 -0
  26. lib/cmake/mmg/mmgConfig.cmake +43 -0
  27. lib/libmmg.5.8.0.dylib +0 -0
  28. lib/libmmg.5.dylib +0 -0
  29. lib/libmmg.dylib +0 -0
  30. lib/libmmg2d.5.8.0.dylib +0 -0
  31. lib/libmmg2d.5.dylib +0 -0
  32. lib/libmmg2d.dylib +0 -0
  33. lib/libmmg3d.5.8.0.dylib +0 -0
  34. lib/libmmg3d.5.dylib +0 -0
  35. lib/libmmg3d.dylib +0 -0
  36. lib/libmmgs.5.8.0.dylib +0 -0
  37. lib/libmmgs.5.dylib +0 -0
  38. lib/libmmgs.dylib +0 -0
  39. mmgpy/__init__.py +14 -0
  40. mmgpy/_mmgpy.cpython-311-darwin.so +0 -0
  41. mmgpy/_mmgpy.pyi +29 -0
  42. mmgpy/_version.py +3 -0
  43. mmgpy/_version.py.in +3 -0
  44. mmgpy/lib/libmmg2d.5.8.0.dylib +0 -0
  45. mmgpy/lib/libmmg2d.5.dylib +0 -0
  46. mmgpy/lib/libmmg2d.dylib +0 -0
  47. mmgpy/lib/libmmg3d.5.8.0.dylib +0 -0
  48. mmgpy/lib/libmmg3d.5.dylib +0 -0
  49. mmgpy/lib/libmmg3d.dylib +0 -0
  50. mmgpy/lib/libmmgs.5.8.0.dylib +0 -0
  51. mmgpy/lib/libmmgs.5.dylib +0 -0
  52. mmgpy/lib/libmmgs.dylib +0 -0
  53. mmgpy/py.typed +0 -0
  54. mmgpy-0.1.1.data/scripts/mmg2d_O3 +0 -0
  55. mmgpy-0.1.1.data/scripts/mmg3d_O3 +0 -0
  56. mmgpy-0.1.1.data/scripts/mmgs_O3 +0 -0
  57. mmgpy-0.1.1.dist-info/METADATA +52 -0
  58. mmgpy-0.1.1.dist-info/RECORD +63 -0
  59. mmgpy-0.1.1.dist-info/WHEEL +5 -0
  60. mmgpy-0.1.1.dist-info/licenses/LICENSE +19 -0
  61. share/man/man1/mmg2d.1.gz +0 -0
  62. share/man/man1/mmg3d.1.gz +0 -0
  63. share/man/man1/mmgs.1.gz +0 -0
@@ -0,0 +1,34 @@
1
+ /* =============================================================================
2
+ ** This file is part of the mmg software package for the tetrahedral
3
+ ** mesh modification.
4
+ ** Copyright (c) Bx INP/CNRS/Inria/UBordeaux/UPMC, 2004-
5
+ **
6
+ ** mmg is free software: you can redistribute it and/or modify it
7
+ ** under the terms of the GNU Lesser General Public License as published
8
+ ** by the Free Software Foundation, either version 3 of the License, or
9
+ ** (at your option) any later version.
10
+ **
11
+ ** mmg is distributed in the hope that it will be useful, but WITHOUT
12
+ ** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
+ ** FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14
+ ** License for more details.
15
+ **
16
+ ** You should have received a copy of the GNU Lesser General Public
17
+ ** License and of the GNU General Public License along with mmg (in
18
+ ** files COPYING.LESSER and COPYING). If not, see
19
+ ** <http://www.gnu.org/licenses/>. Please read their terms carefully and
20
+ ** use this copy of the mmg distribution only if you accept them.
21
+ ** =============================================================================
22
+ */
23
+
24
+ #ifndef MMG2D_EXPORT_H
25
+ #define MMG2D_EXPORT_H
26
+
27
+ #include "mmg/common/mmg_export.h"
28
+ #if defined(libmmg_so_EXPORTS) || defined(libmmg2d_so_EXPORTS)
29
+ # define LIBMMG2D_EXPORT MMG_DECL_EXPORT
30
+ #else
31
+ # define LIBMMG2D_EXPORT MMG_DECL_IMPORT
32
+ #endif
33
+
34
+ #endif