symengine 0.13.0__cp313-cp313-macosx_10_13_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.
Files changed (47) hide show
  1. symengine/lib/pywrapper.h +220 -0
  2. symengine/lib/symengine.pxd +955 -0
  3. symengine/lib/symengine_wrapper.cpython-313-darwin.so +0 -0
  4. symengine/lib/symengine_wrapper.pxd +83 -0
  5. symengine-0.13.0.data/purelib/symengine/__init__.py +79 -0
  6. symengine-0.13.0.data/purelib/symengine/functions.py +10 -0
  7. symengine-0.13.0.data/purelib/symengine/lib/__init__.py +0 -0
  8. symengine-0.13.0.data/purelib/symengine/printing.py +33 -0
  9. symengine-0.13.0.data/purelib/symengine/sympy_compat.py +4 -0
  10. symengine-0.13.0.data/purelib/symengine/test_utilities.py +95 -0
  11. symengine-0.13.0.data/purelib/symengine/tests/__init__.py +0 -0
  12. symengine-0.13.0.data/purelib/symengine/tests/test_arit.py +261 -0
  13. symengine-0.13.0.data/purelib/symengine/tests/test_cse.py +17 -0
  14. symengine-0.13.0.data/purelib/symengine/tests/test_dict_basic.py +28 -0
  15. symengine-0.13.0.data/purelib/symengine/tests/test_eval.py +67 -0
  16. symengine-0.13.0.data/purelib/symengine/tests/test_expr.py +28 -0
  17. symengine-0.13.0.data/purelib/symengine/tests/test_functions.py +432 -0
  18. symengine-0.13.0.data/purelib/symengine/tests/test_lambdify.py +863 -0
  19. symengine-0.13.0.data/purelib/symengine/tests/test_logic.py +124 -0
  20. symengine-0.13.0.data/purelib/symengine/tests/test_matrices.py +757 -0
  21. symengine-0.13.0.data/purelib/symengine/tests/test_ntheory.py +254 -0
  22. symengine-0.13.0.data/purelib/symengine/tests/test_number.py +186 -0
  23. symengine-0.13.0.data/purelib/symengine/tests/test_pickling.py +59 -0
  24. symengine-0.13.0.data/purelib/symengine/tests/test_printing.py +38 -0
  25. symengine-0.13.0.data/purelib/symengine/tests/test_sage.py +175 -0
  26. symengine-0.13.0.data/purelib/symengine/tests/test_series_expansion.py +22 -0
  27. symengine-0.13.0.data/purelib/symengine/tests/test_sets.py +118 -0
  28. symengine-0.13.0.data/purelib/symengine/tests/test_solve.py +25 -0
  29. symengine-0.13.0.data/purelib/symengine/tests/test_subs.py +82 -0
  30. symengine-0.13.0.data/purelib/symengine/tests/test_symbol.py +179 -0
  31. symengine-0.13.0.data/purelib/symengine/tests/test_sympify.py +63 -0
  32. symengine-0.13.0.data/purelib/symengine/tests/test_sympy_compat.py +200 -0
  33. symengine-0.13.0.data/purelib/symengine/tests/test_sympy_conv.py +835 -0
  34. symengine-0.13.0.data/purelib/symengine/tests/test_var.py +68 -0
  35. symengine-0.13.0.data/purelib/symengine/utilities.py +280 -0
  36. symengine-0.13.0.dist-info/AUTHORS +38 -0
  37. symengine-0.13.0.dist-info/LICENSE +596 -0
  38. symengine-0.13.0.dist-info/METADATA +31 -0
  39. symengine-0.13.0.dist-info/RECORD +47 -0
  40. symengine-0.13.0.dist-info/WHEEL +5 -0
  41. symengine-0.13.0.dist-info/top_level.txt +1 -0
  42. symengine.dylibs/libflint.18.0.dylib +0 -0
  43. symengine.dylibs/libgmp.10.dylib +0 -0
  44. symengine.dylibs/libmpc.3.dylib +0 -0
  45. symengine.dylibs/libmpfr.6.dylib +0 -0
  46. symengine.dylibs/libz.1.3.1.dylib +0 -0
  47. symengine.dylibs/libzstd.1.5.6.dylib +0 -0
@@ -0,0 +1,596 @@
1
+ Copyright (c) 2013-2015 SymPy Development Team
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
20
+
21
+ =================================GMP======================================
22
+
23
+ Copyright 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc.
24
+
25
+ This file is part of the GNU MP Library.
26
+
27
+ The GNU MP Library is free software; you can redistribute it and/or modify
28
+ it under the terms of either:
29
+
30
+ * the GNU Lesser General Public License as published by the Free
31
+ Software Foundation; either version 3 of the License, or (at your
32
+ option) any later version.
33
+
34
+ or
35
+
36
+ * the GNU General Public License as published by the Free Software
37
+ Foundation; either version 2 of the License, or (at your option) any
38
+ later version.
39
+
40
+ or both in parallel
41
+
42
+ ================================MPIR=======================================
43
+
44
+ Copyright 1991, 1996, 1999, 2000 Free Software Foundation, Inc.
45
+
46
+ Copyright 2008, 2009 William Hart
47
+
48
+ This file is part of the MPIR Library.
49
+
50
+ The MPIR Library is free software; you can redistribute it and/or modify
51
+ it under the terms of the GNU Lesser General Public License as published by
52
+ the Free Software Foundation; either version 3 of the License, or (at your
53
+ option) any later version.
54
+
55
+ ================================MPFR======================================
56
+
57
+ Copyright 2000-2020 Free Software Foundation, Inc.
58
+ Contributed by the AriC and Caramba projects, INRIA.
59
+
60
+ This file is part of the GNU MPFR Library.
61
+
62
+ The GNU MPFR Library is free software; you can redistribute it and/or modify
63
+ it under the terms of the GNU Lesser General Public License as published by
64
+ the Free Software Foundation; either version 3 of the License, or (at your
65
+ option) any later version.
66
+
67
+ The GNU MPFR Library is distributed in the hope that it will be useful, but
68
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
69
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
70
+ License for more details.
71
+
72
+ You should have received a copy of the GNU Lesser General Public License
73
+ along with the GNU MPFR Library; see the file COPYING.LESSER. If not, see
74
+ https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
75
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
76
+
77
+ ===============================MPC=========================================
78
+
79
+ Copyright (C) INRIA 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2014, 2015, 2018, 2020
80
+
81
+ Copying and distribution of this file, with or without modification,
82
+ are permitted in any medium without royalty provided the copyright
83
+ notice and this notice are preserved. This file is offered as-is,
84
+ without any warranty.
85
+
86
+
87
+ GNU MPC is a complex floating-point library with exact rounding.
88
+ It is based on the GNU MPFR floating-point library (http://www.mpfr.org/),
89
+ which is itself based on the GNU MP library (http://gmplib.org/).
90
+
91
+ ==============================FLINT2============================================
92
+
93
+ FLINT (Fast Library for Number Theory) is a C library in support of computations
94
+ in number theory. It's also a research project into algorithms in number theory.
95
+
96
+ FLINT 2 is a complete rewrite of the FLINT library from scratch. It includes
97
+ much cleaner code and in many cases much faster algorithms and implementations.
98
+
99
+ At this stage FLINT consists mainly of fast integer and polynomial
100
+ arithmetic and linear algebra. In the future it is planned that FLINT will
101
+ contain algorithms for algebraic number theory and other number theoretic
102
+ functionality.
103
+
104
+ William Hart -- 16 Jan 2011.
105
+
106
+ License
107
+ -------
108
+ This version is distributed under LGPL 2.1 (GNU Lesser General Public License).
109
+ See the LICENSE file.
110
+
111
+ ===============================LLVM============================================
112
+
113
+ The LLVM Project is under the Apache License v2.0 with LLVM Exceptions
114
+
115
+ ==============================SYMENGINE========================================
116
+
117
+ Copyright (c) 2013-2017 SymEngine Development Team
118
+
119
+ Permission is hereby granted, free of charge, to any person obtaining a copy
120
+ of this software and associated documentation files (the "Software"), to deal
121
+ in the Software without restriction, including without limitation the rights
122
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
123
+ copies of the Software, and to permit persons to whom the Software is
124
+ furnished to do so, subject to the following conditions:
125
+
126
+ The above copyright notice and this permission notice shall be included in
127
+ all copies or substantial portions of the Software.
128
+
129
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
130
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
131
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
132
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
133
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
134
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
135
+ THE SOFTWARE.
136
+
137
+ -------------------------------------------------------------------------------
138
+
139
+ All files in symengine/utilities/teuchos were taken from the Trilinos package
140
+ and are licensed under the modified BSD license:
141
+
142
+ Teuchos: Common Tools Package
143
+ Copyright (2004) Sandia Corporation
144
+
145
+ Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
146
+ license for use of this work by or on behalf of the U.S. Government.
147
+
148
+ Redistribution and use in source and binary forms, with or without
149
+ modification, are permitted provided that the following conditions are
150
+ met:
151
+
152
+ 1. Redistributions of source code must retain the above copyright
153
+ notice, this list of conditions and the following disclaimer.
154
+
155
+ 2. Redistributions in binary form must reproduce the above copyright
156
+ notice, this list of conditions and the following disclaimer in the
157
+ documentation and/or other materials provided with the distribution.
158
+
159
+ 3. Neither the name of the Corporation nor the names of the
160
+ contributors may be used to endorse or promote products derived from
161
+ this software without specific prior written permission.
162
+
163
+ THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
164
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
165
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
166
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
167
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
168
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
169
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
170
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
171
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
172
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
173
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
174
+
175
+ Questions? Contact Michael A. Heroux (maherou@sandia.gov)
176
+
177
+ -------------------------------------------------------------------------------
178
+
179
+ Code in symengine/sparse_matrix.cpp is a port from scipy sparse matrix module
180
+ and licensed under the modified BSD license:
181
+
182
+ Copyright (c) 2001, 2002 Enthought, Inc.
183
+ All rights reserved.
184
+
185
+ Copyright (c) 2003-2012 SciPy Developers.
186
+ All rights reserved.
187
+
188
+ Redistribution and use in source and binary forms, with or without
189
+ modification, are permitted provided that the following conditions are met:
190
+
191
+ a. Redistributions of source code must retain the above copyright notice,
192
+ this list of conditions and the following disclaimer.
193
+ b. Redistributions in binary form must reproduce the above copyright
194
+ notice, this list of conditions and the following disclaimer in the
195
+ documentation and/or other materials provided with the distribution.
196
+ c. Neither the name of Enthought nor the names of the SciPy Developers
197
+ may be used to endorse or promote products derived from this software
198
+ without specific prior written permission.
199
+
200
+
201
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
202
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
203
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
204
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
205
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
206
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
207
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
208
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
209
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
210
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
211
+ THE POSSIBILITY OF SUCH DAMAGE.
212
+
213
+ -------------------------------------------------------------------------------
214
+ Code in symengine/symengine_casts.h is licensed under the modified BSD license:
215
+
216
+ Protocol Buffers - Google's data interchange format
217
+ Copyright 2014 Google Inc. All rights reserved.
218
+ https://developers.google.com/protocol-buffers/
219
+
220
+ Redistribution and use in source and binary forms, with or without
221
+ modification, are permitted provided that the following conditions are
222
+ met:
223
+
224
+ * Redistributions of source code must retain the above copyright
225
+ notice, this list of conditions and the following disclaimer.
226
+ * Redistributions in binary form must reproduce the above
227
+ copyright notice, this list of conditions and the following disclaimer
228
+ in the documentation and/or other materials provided with the
229
+ distribution.
230
+ * Neither the name of Google Inc. nor the names of its
231
+ contributors may be used to endorse or promote products derived from
232
+ this software without specific prior written permission.
233
+
234
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
235
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
236
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
237
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
238
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
239
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
240
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
241
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
243
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
244
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245
+
246
+ ---------------------------------------------------------------------------------
247
+ Code in symengine/utilities/matchpycpp is licensed under this additional license:
248
+
249
+ MIT License
250
+
251
+ Copyright (c) 2016 Manuel Krebber
252
+
253
+ Permission is hereby granted, free of charge, to any person obtaining a copy
254
+ of this software and associated documentation files (the "Software"), to deal
255
+ in the Software without restriction, including without limitation the rights
256
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
257
+ copies of the Software, and to permit persons to whom the Software is
258
+ furnished to do so, subject to the following conditions:
259
+
260
+ The above copyright notice and this permission notice shall be included in all
261
+ copies or substantial portions of the Software.
262
+
263
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
264
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
265
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
266
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
267
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
268
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
269
+ SOFTWARE.
270
+
271
+ ---------------------------------------------------------------------------------
272
+ Code in symengine/parser/parser.tab.hh and symengine/parser/parser.tab.cc
273
+ are licensed under the following modified GPL license. The special exception
274
+ allows redistribution under the terms (BSD license) for SymEngine library.
275
+
276
+ A Bison parser, made by GNU Bison 3.0.4.
277
+
278
+ Bison interface for Yacc-like parsers in C
279
+
280
+ Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
281
+
282
+ This program is free software: you can redistribute it and/or modify
283
+ it under the terms of the GNU General Public License as published by
284
+ the Free Software Foundation, either version 3 of the License, or
285
+ (at your option) any later version.
286
+
287
+ This program is distributed in the hope that it will be useful,
288
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
289
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
290
+ GNU General Public License for more details.
291
+
292
+ You should have received a copy of the GNU General Public License
293
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
294
+
295
+ As a special exception, you may create a larger work that contains
296
+ part or all of the Bison parser skeleton and distribute that work
297
+ under terms of your choice, so long as that work isn't itself a
298
+ parser generator using the skeleton or a modified version thereof
299
+ as a parser skeleton. Alternatively, if you modify or redistribute
300
+ the parser skeleton itself, you may (at your option) remove this
301
+ special exception, which will cause the skeleton and the resulting
302
+ Bison output files to be licensed under the GNU General Public
303
+ License without this special exception.
304
+
305
+ This special exception was added by the Free Software Foundation in
306
+ version 2.2 of Bison.
307
+
308
+ C LALR(1) parser skeleton written by Richard Stallman, by
309
+ simplifying the original so-called "semantic" parser.
310
+
311
+ ---------------------------------------------------------------------------------
312
+ Code in cmake/cotire.cmake is licensed under this additional license:
313
+
314
+ - cotire (compile time reducer)
315
+
316
+ See the cotire manual for usage hints.
317
+
318
+ Copyright 2012-2016 Sascha Kratky
319
+
320
+ Permission is hereby granted, free of charge, to any person
321
+ obtaining a copy of this software and associated documentation
322
+ files (the "Software"), to deal in the Software without
323
+ restriction, including without limitation the rights to use,
324
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
325
+ copies of the Software, and to permit persons to whom the
326
+ Software is furnished to do so, subject to the following
327
+ conditions:
328
+
329
+ The above copyright notice and this permission notice shall be
330
+ included in all copies or substantial portions of the Software.
331
+
332
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
333
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
334
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
335
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
336
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
337
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
338
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
339
+ OTHER DEALINGS IN THE SOFTWARE.
340
+
341
+ =============================PTHREADS-WIN32================================
342
+
343
+ pthreads-win32 - a POSIX threads library for Microsoft Windows
344
+
345
+
346
+
347
+ This file is Copyrighted
348
+
349
+ ------------------------
350
+
351
+
352
+ This file is covered under the following Copyright:
353
+
354
+
355
+ Copyright (C) 2001 Ross P. Johnson
356
+
357
+ All rights reserved.
358
+
359
+
360
+ Everyone is permitted to copy and distribute verbatim copies
361
+
362
+ of this license document, but changing it is not allowed.
363
+
364
+
365
+ Pthreads-win32 is covered by the GNU Lesser General Public License
366
+
367
+ ------------------------------------------------------------------
368
+
369
+
370
+ Pthreads-win32 is open software; you can redistribute it and/or
371
+
372
+ modify it under the terms of the GNU Lesser General Public License
373
+
374
+ as published by the Free Software Foundation version 2.1 of the
375
+
376
+ License.
377
+
378
+
379
+ Pthreads-win32 is several binary link libraries, several modules,
380
+
381
+ associated interface definition files and scripts used to control
382
+
383
+ its compilation and installation.
384
+
385
+
386
+ Pthreads-win32 is distributed in the hope that it will be useful,
387
+
388
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
389
+
390
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
391
+
392
+ GNU Lesser General Public License for more details.
393
+
394
+
395
+ A copy of the GNU Lesser General Public License is distributed with
396
+
397
+ pthreads-win32 under the filename:
398
+
399
+
400
+ COPYING.LIB
401
+
402
+
403
+ You should have received a copy of the version 2.1 GNU Lesser General
404
+
405
+ Public License with pthreads-win32; if not, write to:
406
+
407
+
408
+ Free Software Foundation, Inc.
409
+
410
+ 59 Temple Place
411
+
412
+ Suite 330
413
+
414
+ Boston, MA 02111-1307
415
+
416
+ USA
417
+
418
+
419
+ The contact addresses for pthreads-win32 is as follows:
420
+
421
+
422
+ Web: http://sources.redhat.com/pthreads-win32
423
+
424
+ Email: Ross Johnson <rpj@ise.canberra.edu.au>, or
425
+
426
+ Ross.Johnson@canberra.edu.au
427
+
428
+
429
+
430
+ pthreads-win32 copyrights and exception files
431
+
432
+ ---------------------------------------------
433
+
434
+
435
+ With the exception of the files listed below, Pthreads-win32
436
+
437
+ is covered under the following GNU Lesser General Public License
438
+
439
+ Copyrights:
440
+
441
+
442
+ Pthreads-win32 - POSIX Threads Library for Win32
443
+
444
+ Copyright(C) 1998 John E. Bossom
445
+
446
+ Copyright(C) 1999,2002 Pthreads-win32 contributors
447
+
448
+
449
+ The current list of contributors is contained
450
+
451
+ in the file CONTRIBUTORS included with the source
452
+
453
+ code distribution. The current list of CONTRIBUTORS
454
+
455
+ can also be seen at the following WWW location:
456
+
457
+ http://sources.redhat.com/pthreads-win32/contributors.html
458
+
459
+
460
+ Contact Email: rpj@ise.canberra.edu.au
461
+
462
+
463
+ These files are not covered under one of the Copyrights listed above:
464
+
465
+
466
+ COPYING
467
+
468
+ COPYING.LIB
469
+
470
+ tests/rwlock7.c
471
+
472
+
473
+ This file, COPYING, is distributed under the Copyright found at the
474
+
475
+ top of this file. It is important to note that you may distribute
476
+
477
+ verbatim copies of this file but you may not modify this file.
478
+
479
+
480
+ The file COPYING.LIB, which contains a copy of the version 2.1
481
+
482
+ GNU Lesser General Public License, is itself copyrighted by the
483
+
484
+ Free Software Foundation, Inc. Please note that the Free Software
485
+
486
+ Foundation, Inc. does NOT have a copyright over Pthreads-win32,
487
+
488
+ only the COPYING.LIB that is supplied with pthreads-win32.
489
+
490
+
491
+ The file tests/rwlock7.c is derived from code written by
492
+
493
+ Dave Butenhof for his book 'Programming With POSIX(R) Threads'.
494
+
495
+ The original code was obtained by free download from his website
496
+
497
+ http://home.earthlink.net/~anneart/family/Threads/source.html
498
+
499
+ and did not contain a copyright or author notice. It is assumed to
500
+
501
+ be freely distributable.
502
+
503
+
504
+ In all cases one may use and distribute these exception files freely.
505
+
506
+ And because one may freely distribute the LGPL covered files, the
507
+
508
+ entire pthreads-win32 source may be freely used and distributed.
509
+
510
+
511
+
512
+
513
+ General Copyleft and License info
514
+
515
+ ---------------------------------
516
+
517
+
518
+ For general information on Copylefts, see:
519
+
520
+
521
+ http://www.gnu.org/copyleft/
522
+
523
+
524
+ For information on GNU Lesser General Public Licenses, see:
525
+
526
+
527
+ http://www.gnu.org/copyleft/lesser.html
528
+
529
+ http://www.gnu.org/copyleft/lesser.txt
530
+
531
+
532
+
533
+ Why pthreads-win32 did not use the GNU General Public License
534
+
535
+ -------------------------------------------------------------
536
+
537
+
538
+ The goal of the pthreads-win32 project has been to
539
+
540
+ provide a quality and complete implementation of the POSIX
541
+
542
+ threads API for Microsoft Windows within the limits imposed
543
+
544
+ by virtue of it being a stand-alone library and not
545
+
546
+ linked directly to other POSIX compliant libraries. For
547
+
548
+ example, some functions and features, such as those based
549
+
550
+ on POSIX signals, are missing.
551
+
552
+
553
+ Pthreads-win32 is a library, available in several different
554
+
555
+ versions depending on supported compilers, and may be used
556
+
557
+ as a dynamically linked module or a statically linked set of
558
+
559
+ binary modules. It is not an application on it's own.
560
+
561
+
562
+ It was fully intended that pthreads-win32 be usable with
563
+
564
+ commercial software not covered by either the GPL or the LGPL
565
+
566
+ licenses. Pthreads-win32 has many contributors to it's
567
+
568
+ code base, many of whom have done so because they have
569
+
570
+ used the library in commercial or proprietry software
571
+
572
+ projects.
573
+
574
+
575
+ Releasing pthreads-win32 under the LGPL ensures that the
576
+
577
+ library can be used widely, while at the same time ensures
578
+
579
+ that bug fixes and improvements to the pthreads-win32 code
580
+
581
+ itself is returned to benefit all current and future users
582
+
583
+ of the library.
584
+
585
+
586
+ Although pthreads-win32 makes it possible for applications
587
+
588
+ that use POSIX threads to be ported to Win32 platforms, the
589
+
590
+ broader goal of the project is to encourage the use of open
591
+
592
+ standards, and in particular, to make it just a little easier
593
+
594
+ for developers writing Win32 applications to consider
595
+
596
+ widening the potential market for their products.
@@ -0,0 +1,31 @@
1
+ Metadata-Version: 2.1
2
+ Name: symengine
3
+ Version: 0.13.0
4
+ Summary: Python library providing wrappers to SymEngine
5
+ Home-page: https://github.com/symengine/symengine.py
6
+ Author: SymEngine development team
7
+ Author-email: symengine@googlegroups.com
8
+ License: MIT
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Topic :: Scientific/Engineering
13
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
14
+ Classifier: Topic :: Scientific/Engineering :: Physics
15
+ Classifier: Programming Language :: Python :: 3.8
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Requires-Python: >=3.8,<4
21
+ License-File: LICENSE
22
+ License-File: AUTHORS
23
+
24
+
25
+ SymEngine is a standalone fast C++ symbolic manipulation library.
26
+ Optional thin Python wrappers (SymEngine) allow easy usage from Python and
27
+ integration with SymPy and Sage.
28
+
29
+ See https://github.com/symengine/symengine.py for information about License
30
+ and dependencies of wheels
31
+
@@ -0,0 +1,47 @@
1
+ symengine/lib/symengine.pxd,sha256=3eli94v3itnwXI6myy45bkaTc9Sw66PencA8IWtQvbI,44467
2
+ symengine/lib/symengine_wrapper.cpython-313-darwin.so,sha256=hBizqzD4pohl-KwRST6ikL1W3MAPzOp_V80-kig77R8,54074016
3
+ symengine/lib/pywrapper.h,sha256=5FeCXvth1dlnftGzPNYvSiUTcEl0eXCutJOZ5QgdVbg,8503
4
+ symengine/lib/symengine_wrapper.pxd,sha256=tyR6XjwXckcZqWjGk8iibwZNm6YhtqIU4BLwqKdJbHs,3313
5
+ symengine.dylibs/libmpc.3.dylib,sha256=y3_Y6o-wN9BkftcXtXY25v__Z6f6HvwKm4VM7IKJy10,113408
6
+ symengine.dylibs/libflint.18.0.dylib,sha256=-WR8y3K0pMi9Blso86zNcnOwbdZRqvzyflhAtQ_kCi4,13391552
7
+ symengine.dylibs/libz.1.3.1.dylib,sha256=_71BfjAr8csqq6e8r1DupOxlik56yEtmr-0PUlnppcg,103424
8
+ symengine.dylibs/libzstd.1.5.6.dylib,sha256=A5l1QjivGg64dv10FpZ3DZJsodI9J6YziTEhfcwhX2E,1051600
9
+ symengine.dylibs/libgmp.10.dylib,sha256=5S2ja_sI672iZiIcIDEIYPHx3jv8cbf3RTx4h6rhaHw,625744
10
+ symengine.dylibs/libmpfr.6.dylib,sha256=tizSODS6tDgt6bxknBHH2V8BhpBPQZ2YDcso8gA1n2Y,477232
11
+ symengine-0.13.0.dist-info/RECORD,,
12
+ symengine-0.13.0.dist-info/LICENSE,sha256=BqaA1xdFJZQf8LMDd36749T1qNvucdB8-2laLMkiwsk,21626
13
+ symengine-0.13.0.dist-info/AUTHORS,sha256=w8k5pBJRw8Z_nKjvrUs-EGPNQqmE-U7krot8prq0nBE,1572
14
+ symengine-0.13.0.dist-info/WHEEL,sha256=8pTvb48W8YaMkOBKmHT0W_amRrsMvqPNRds4xofIJks,112
15
+ symengine-0.13.0.dist-info/top_level.txt,sha256=ASxf76lo8f1n_6UL_Z5t27oeMUmkRSMzTAtYdzc1ZM8,10
16
+ symengine-0.13.0.dist-info/METADATA,sha256=2ahONkmvv3uSLqgBiEpz5rj9LCKAAiHixC02VgMu2rM,1155
17
+ symengine-0.13.0.data/purelib/symengine/functions.py,sha256=LNfGb-yI6aXo9BszdmJWfFjZhQFCSYF44fXGMDhLwb8,425
18
+ symengine-0.13.0.data/purelib/symengine/test_utilities.py,sha256=Pk8RHape9EeGatC3nUE5M-IJoL-U3_WHRS6TdRVWg6g,3086
19
+ symengine-0.13.0.data/purelib/symengine/__init__.py,sha256=aiIG3rh3Cs0KEgyRCAokQf_WwUnAxsyfqRAYfcOC37k,2403
20
+ symengine-0.13.0.data/purelib/symengine/sympy_compat.py,sha256=pmISwghw-gwE3yM-cpJ2gYWyzO43GQrFVAzeDCLeFRM,171
21
+ symengine-0.13.0.data/purelib/symengine/utilities.py,sha256=bn22sbLtKRQVR_G17O4-iO3K7Bo2kOvRZnkjl7IPrR8,9604
22
+ symengine-0.13.0.data/purelib/symengine/printing.py,sha256=BKOTrj3voT6enkYZYvimM32ibVcBdLNVF4eIgIjHHW8,1115
23
+ symengine-0.13.0.data/purelib/symengine/tests/test_lambdify.py,sha256=06jS9ivhHnTlLSHOClU5YO-9zTTHQGomA85D-lauPQo,29318
24
+ symengine-0.13.0.data/purelib/symengine/tests/test_sage.py,sha256=kp_UzeS6vuIlLIc6f3PnykdBMNVKP8k2lZppsX29aOI,5400
25
+ symengine-0.13.0.data/purelib/symengine/tests/test_sympy_compat.py,sha256=T24NXeFuStVKvzfZU4HL26RxXkH_2CHCBvdpJsWOd8s,4959
26
+ symengine-0.13.0.data/purelib/symengine/tests/test_solve.py,sha256=MnAdXm3ZyX09FnQixaMNDG7vqMX-rr46U9UF5BpBZoY,935
27
+ symengine-0.13.0.data/purelib/symengine/tests/test_subs.py,sha256=HlX_iYSSWqJQmSg7x8vRckHgre7Pl8ly6HdbTU-GYTw,1810
28
+ symengine-0.13.0.data/purelib/symengine/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ symengine-0.13.0.data/purelib/symengine/tests/test_matrices.py,sha256=RH-5dDBkTaM0_krJg2TqFQsM5k6LKK3MCC50gEhX5Ww,20648
30
+ symengine-0.13.0.data/purelib/symengine/tests/test_series_expansion.py,sha256=GfgoubMmPB30nasMB6t9JR-5uVg3xYOk9oAWDr0DWYY,741
31
+ symengine-0.13.0.data/purelib/symengine/tests/test_sympy_conv.py,sha256=uR_6ThIEyDSq-dbrlE8x52eC3wbdnij0tLbEokLqF04,27637
32
+ symengine-0.13.0.data/purelib/symengine/tests/test_cse.py,sha256=9SMfCrdQ7ZDoTkbcOk28UhXD2ZDFFbDFiAxOjWM5Ofk,469
33
+ symengine-0.13.0.data/purelib/symengine/tests/test_arit.py,sha256=VEigtuYdMjyHP04UMIOTtuI1yCKxoeKlGjO43MDZ-9E,5693
34
+ symengine-0.13.0.data/purelib/symengine/tests/test_pickling.py,sha256=lkRqJkkmg8Cot9ng2WnoVkVQH_LyeOtqx-SZorqZLj0,1562
35
+ symengine-0.13.0.data/purelib/symengine/tests/test_printing.py,sha256=9_t5rlV1NQUZvolvFKiuuCtpwjS_6hb8FBMXkoGKV-o,1286
36
+ symengine-0.13.0.data/purelib/symengine/tests/test_functions.py,sha256=Ctw1o-I3JV3FFiT8SkFha0qXtm8LpI2hmsY2W5WeoG4,11575
37
+ symengine-0.13.0.data/purelib/symengine/tests/test_dict_basic.py,sha256=ger2sexbuua1tAxc3JfXlXGrnG2iRAThxGLc01j3jGc,640
38
+ symengine-0.13.0.data/purelib/symengine/tests/test_var.py,sha256=q-6R2GVi9AF5eD16jiy_kks2xH4ReUqudZ_S-Zf7O90,1286
39
+ symengine-0.13.0.data/purelib/symengine/tests/test_expr.py,sha256=pjkUfuLSXQtAQv110uiF0hJJyw_8i3XXU2A-q51GHl0,1037
40
+ symengine-0.13.0.data/purelib/symengine/tests/test_number.py,sha256=F3WIKwBwfWdyHaY7cu9yOtTm4AaGPO71s256tQih3dA,5041
41
+ symengine-0.13.0.data/purelib/symengine/tests/test_sympify.py,sha256=yL8JRRdnocswCHQM0S38KDbLB_6VwgZJl3R_HB1M-v4,1868
42
+ symengine-0.13.0.data/purelib/symengine/tests/test_ntheory.py,sha256=jMjJVc1pomRDOWXRqqhQTHHUE-npOki4KxKMvWg6m1k,6312
43
+ symengine-0.13.0.data/purelib/symengine/tests/test_sets.py,sha256=QWcZHWlK5pD5SZrF72uhYZjhYXm4fbmV5OzrQwqYeYQ,4177
44
+ symengine-0.13.0.data/purelib/symengine/tests/test_symbol.py,sha256=5ARwhVtox-fH5kSBgM8JuPbUJK4BJ3HCUo-LiVf39To,5296
45
+ symengine-0.13.0.data/purelib/symengine/tests/test_logic.py,sha256=Htbekxw7rQgSShfbcBwZpEi-T7Tb3lZPJ8_kJQWI7as,3546
46
+ symengine-0.13.0.data/purelib/symengine/tests/test_eval.py,sha256=xIPgDolURXLoc7qehkYKdr8F4reNz5b-Gy9ptJcTbCc,1743
47
+ symengine-0.13.0.data/purelib/symengine/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-macosx_10_13_x86_64
5
+
@@ -0,0 +1 @@
1
+ symengine
Binary file
Binary file
Binary file