symengine 0.14.0__cp313-cp313t-win_amd64.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 (50) hide show
  1. symengine/lib/flint-19.dll +0 -0
  2. symengine/lib/libgcc_s_seh-1.dll +0 -0
  3. symengine/lib/libgmp-10.dll +0 -0
  4. symengine/lib/libmpc-3.dll +0 -0
  5. symengine/lib/libmpfr-6.dll +0 -0
  6. symengine/lib/libwinpthread-1.dll +0 -0
  7. symengine/lib/pywrapper.h +220 -0
  8. symengine/lib/symengine.pxd +955 -0
  9. symengine/lib/symengine_wrapper.cp313t-win_amd64.lib +0 -0
  10. symengine/lib/symengine_wrapper.cp313t-win_amd64.pyd +0 -0
  11. symengine/lib/symengine_wrapper.pxd +78 -0
  12. symengine/lib/zlib.dll +0 -0
  13. symengine/lib/zstd.dll +0 -0
  14. symengine-0.14.0.data/purelib/symengine/__init__.py +79 -0
  15. symengine-0.14.0.data/purelib/symengine/functions.py +10 -0
  16. symengine-0.14.0.data/purelib/symengine/lib/__init__.py +0 -0
  17. symengine-0.14.0.data/purelib/symengine/printing.py +33 -0
  18. symengine-0.14.0.data/purelib/symengine/sympy_compat.py +4 -0
  19. symengine-0.14.0.data/purelib/symengine/test_utilities.py +95 -0
  20. symengine-0.14.0.data/purelib/symengine/tests/__init__.py +0 -0
  21. symengine-0.14.0.data/purelib/symengine/tests/test_arit.py +261 -0
  22. symengine-0.14.0.data/purelib/symengine/tests/test_cse.py +17 -0
  23. symengine-0.14.0.data/purelib/symengine/tests/test_dict_basic.py +28 -0
  24. symengine-0.14.0.data/purelib/symengine/tests/test_eval.py +67 -0
  25. symengine-0.14.0.data/purelib/symengine/tests/test_expr.py +28 -0
  26. symengine-0.14.0.data/purelib/symengine/tests/test_functions.py +432 -0
  27. symengine-0.14.0.data/purelib/symengine/tests/test_lambdify.py +863 -0
  28. symengine-0.14.0.data/purelib/symengine/tests/test_logic.py +124 -0
  29. symengine-0.14.0.data/purelib/symengine/tests/test_matrices.py +757 -0
  30. symengine-0.14.0.data/purelib/symengine/tests/test_ntheory.py +254 -0
  31. symengine-0.14.0.data/purelib/symengine/tests/test_number.py +186 -0
  32. symengine-0.14.0.data/purelib/symengine/tests/test_pickling.py +59 -0
  33. symengine-0.14.0.data/purelib/symengine/tests/test_printing.py +38 -0
  34. symengine-0.14.0.data/purelib/symengine/tests/test_sage.py +175 -0
  35. symengine-0.14.0.data/purelib/symengine/tests/test_series_expansion.py +22 -0
  36. symengine-0.14.0.data/purelib/symengine/tests/test_sets.py +118 -0
  37. symengine-0.14.0.data/purelib/symengine/tests/test_solve.py +25 -0
  38. symengine-0.14.0.data/purelib/symengine/tests/test_subs.py +82 -0
  39. symengine-0.14.0.data/purelib/symengine/tests/test_symbol.py +179 -0
  40. symengine-0.14.0.data/purelib/symengine/tests/test_sympify.py +63 -0
  41. symengine-0.14.0.data/purelib/symengine/tests/test_sympy_compat.py +200 -0
  42. symengine-0.14.0.data/purelib/symengine/tests/test_sympy_conv.py +835 -0
  43. symengine-0.14.0.data/purelib/symengine/tests/test_var.py +68 -0
  44. symengine-0.14.0.data/purelib/symengine/utilities.py +280 -0
  45. symengine-0.14.0.dist-info/AUTHORS +40 -0
  46. symengine-0.14.0.dist-info/LICENSE +430 -0
  47. symengine-0.14.0.dist-info/METADATA +39 -0
  48. symengine-0.14.0.dist-info/RECORD +50 -0
  49. symengine-0.14.0.dist-info/WHEEL +5 -0
  50. symengine-0.14.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,430 @@
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
+ =================================GMP======================================
21
+
22
+ Copyright 1991, 1996, 1999, 2000, 2007 Free Software Foundation, Inc.
23
+
24
+ This file is part of the GNU MP Library.
25
+
26
+ The GNU MP Library is free software; you can redistribute it and/or modify
27
+ it under the terms of either:
28
+
29
+ * the GNU Lesser General Public License as published by the Free
30
+ Software Foundation; either version 3 of the License, or (at your
31
+ option) any later version.
32
+
33
+ or
34
+
35
+ * the GNU General Public License as published by the Free Software
36
+ Foundation; either version 2 of the License, or (at your option) any
37
+ later version.
38
+
39
+ or both in parallel
40
+
41
+ ================================MPFR======================================
42
+
43
+ Copyright 2000-2020 Free Software Foundation, Inc.
44
+ Contributed by the AriC and Caramba projects, INRIA.
45
+
46
+ This file is part of the GNU MPFR Library.
47
+
48
+ The GNU MPFR Library is free software; you can redistribute it and/or modify
49
+ it under the terms of the GNU Lesser General Public License as published by
50
+ the Free Software Foundation; either version 3 of the License, or (at your
51
+ option) any later version.
52
+
53
+ The GNU MPFR Library is distributed in the hope that it will be useful, but
54
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
55
+ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
56
+ License for more details.
57
+
58
+ You should have received a copy of the GNU Lesser General Public License
59
+ along with the GNU MPFR Library; see the file COPYING.LESSER. If not, see
60
+ https://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
61
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
62
+
63
+ ===============================MPC=========================================
64
+
65
+ Copyright (C) INRIA 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2014, 2015, 2018, 2020
66
+
67
+ Copying and distribution of this file, with or without modification,
68
+ are permitted in any medium without royalty provided the copyright
69
+ notice and this notice are preserved. This file is offered as-is,
70
+ without any warranty.
71
+
72
+
73
+ GNU MPC is a complex floating-point library with exact rounding.
74
+ It is based on the GNU MPFR floating-point library (http://www.mpfr.org/),
75
+ which is itself based on the GNU MP library (http://gmplib.org/).
76
+
77
+ ==============================FLINT2============================================
78
+
79
+ FLINT (Fast Library for Number Theory) is a C library in support of computations
80
+ in number theory. It's also a research project into algorithms in number theory.
81
+
82
+ FLINT is distributed under LGPL (GNU Lesser General Public License) version 3 or
83
+ later. See the COPYING.LESSER and COPYING files.
84
+
85
+ ===============================LLVM============================================
86
+
87
+ The LLVM Project is under the Apache License v2.0 with LLVM Exceptions
88
+
89
+ ==============================SYMENGINE========================================
90
+
91
+ Copyright (c) 2013-2017 SymEngine Development Team
92
+
93
+ Permission is hereby granted, free of charge, to any person obtaining a copy
94
+ of this software and associated documentation files (the "Software"), to deal
95
+ in the Software without restriction, including without limitation the rights
96
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
97
+ copies of the Software, and to permit persons to whom the Software is
98
+ furnished to do so, subject to the following conditions:
99
+
100
+ The above copyright notice and this permission notice shall be included in
101
+ all copies or substantial portions of the Software.
102
+
103
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
104
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
105
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
106
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
107
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
108
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
109
+ THE SOFTWARE.
110
+
111
+ -------------------------------------------------------------------------------
112
+
113
+ All files in symengine/utilities/teuchos were taken from the Trilinos package
114
+ and are licensed under the modified BSD license:
115
+
116
+ Teuchos: Common Tools Package
117
+ Copyright (2004) Sandia Corporation
118
+
119
+ Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
120
+ license for use of this work by or on behalf of the U.S. Government.
121
+
122
+ Redistribution and use in source and binary forms, with or without
123
+ modification, are permitted provided that the following conditions are
124
+ met:
125
+
126
+ 1. Redistributions of source code must retain the above copyright
127
+ notice, this list of conditions and the following disclaimer.
128
+
129
+ 2. Redistributions in binary form must reproduce the above copyright
130
+ notice, this list of conditions and the following disclaimer in the
131
+ documentation and/or other materials provided with the distribution.
132
+
133
+ 3. Neither the name of the Corporation nor the names of the
134
+ contributors may be used to endorse or promote products derived from
135
+ this software without specific prior written permission.
136
+
137
+ THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
138
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
139
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
140
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
141
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
142
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
143
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
144
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
145
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
146
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
147
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
148
+
149
+ Questions? Contact Michael A. Heroux (maherou@sandia.gov)
150
+
151
+ -------------------------------------------------------------------------------
152
+
153
+ Code in symengine/sparse_matrix.cpp is a port from scipy sparse matrix module
154
+ and licensed under the modified BSD license:
155
+
156
+ Copyright (c) 2001, 2002 Enthought, Inc.
157
+ All rights reserved.
158
+
159
+ Copyright (c) 2003-2012 SciPy Developers.
160
+ All rights reserved.
161
+
162
+ Redistribution and use in source and binary forms, with or without
163
+ modification, are permitted provided that the following conditions are met:
164
+
165
+ a. Redistributions of source code must retain the above copyright notice,
166
+ this list of conditions and the following disclaimer.
167
+ b. Redistributions in binary form must reproduce the above copyright
168
+ notice, this list of conditions and the following disclaimer in the
169
+ documentation and/or other materials provided with the distribution.
170
+ c. Neither the name of Enthought nor the names of the SciPy Developers
171
+ may be used to endorse or promote products derived from this software
172
+ without specific prior written permission.
173
+
174
+
175
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
176
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
177
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
178
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS
179
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
180
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
181
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
182
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
183
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
184
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
185
+ THE POSSIBILITY OF SUCH DAMAGE.
186
+
187
+ -------------------------------------------------------------------------------
188
+ Code in symengine/symengine_casts.h is licensed under the modified BSD license:
189
+
190
+ Protocol Buffers - Google's data interchange format
191
+ Copyright 2014 Google Inc. All rights reserved.
192
+ https://developers.google.com/protocol-buffers/
193
+
194
+ Redistribution and use in source and binary forms, with or without
195
+ modification, are permitted provided that the following conditions are
196
+ met:
197
+
198
+ * Redistributions of source code must retain the above copyright
199
+ notice, this list of conditions and the following disclaimer.
200
+ * Redistributions in binary form must reproduce the above
201
+ copyright notice, this list of conditions and the following disclaimer
202
+ in the documentation and/or other materials provided with the
203
+ distribution.
204
+ * Neither the name of Google Inc. nor the names of its
205
+ contributors may be used to endorse or promote products derived from
206
+ this software without specific prior written permission.
207
+
208
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
209
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
210
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
211
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
213
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
214
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
215
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
216
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
217
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
218
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
219
+
220
+ ---------------------------------------------------------------------------------
221
+ Code in symengine/utilities/matchpycpp is licensed under this additional license:
222
+
223
+ MIT License
224
+
225
+ Copyright (c) 2016 Manuel Krebber
226
+
227
+ Permission is hereby granted, free of charge, to any person obtaining a copy
228
+ of this software and associated documentation files (the "Software"), to deal
229
+ in the Software without restriction, including without limitation the rights
230
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
231
+ copies of the Software, and to permit persons to whom the Software is
232
+ furnished to do so, subject to the following conditions:
233
+
234
+ The above copyright notice and this permission notice shall be included in all
235
+ copies or substantial portions of the Software.
236
+
237
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
238
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
239
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
240
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
241
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
242
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
243
+ SOFTWARE.
244
+
245
+ ---------------------------------------------------------------------------------
246
+ Code in symengine/parser/parser.tab.hh and symengine/parser/parser.tab.cc
247
+ are licensed under the following modified GPL license. The special exception
248
+ allows redistribution under the terms (BSD license) for SymEngine library.
249
+
250
+ A Bison parser, made by GNU Bison 3.0.4.
251
+
252
+ Bison interface for Yacc-like parsers in C
253
+
254
+ Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
255
+
256
+ This program is free software: you can redistribute it and/or modify
257
+ it under the terms of the GNU General Public License as published by
258
+ the Free Software Foundation, either version 3 of the License, or
259
+ (at your option) any later version.
260
+
261
+ This program is distributed in the hope that it will be useful,
262
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
263
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
264
+ GNU General Public License for more details.
265
+
266
+ You should have received a copy of the GNU General Public License
267
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
268
+
269
+ As a special exception, you may create a larger work that contains
270
+ part or all of the Bison parser skeleton and distribute that work
271
+ under terms of your choice, so long as that work isn't itself a
272
+ parser generator using the skeleton or a modified version thereof
273
+ as a parser skeleton. Alternatively, if you modify or redistribute
274
+ the parser skeleton itself, you may (at your option) remove this
275
+ special exception, which will cause the skeleton and the resulting
276
+ Bison output files to be licensed under the GNU General Public
277
+ License without this special exception.
278
+
279
+ This special exception was added by the Free Software Foundation in
280
+ version 2.2 of Bison.
281
+
282
+ C LALR(1) parser skeleton written by Richard Stallman, by
283
+ simplifying the original so-called "semantic" parser.
284
+
285
+ ---------------------------------------------------------------------------------
286
+ Code in cmake/cotire.cmake is licensed under this additional license:
287
+
288
+ - cotire (compile time reducer)
289
+
290
+ See the cotire manual for usage hints.
291
+
292
+ Copyright 2012-2016 Sascha Kratky
293
+
294
+ Permission is hereby granted, free of charge, to any person
295
+ obtaining a copy of this software and associated documentation
296
+ files (the "Software"), to deal in the Software without
297
+ restriction, including without limitation the rights to use,
298
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
299
+ copies of the Software, and to permit persons to whom the
300
+ Software is furnished to do so, subject to the following
301
+ conditions:
302
+
303
+ The above copyright notice and this permission notice shall be
304
+ included in all copies or substantial portions of the Software.
305
+
306
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
307
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
308
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
309
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
310
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
311
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
312
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
313
+ OTHER DEALINGS IN THE SOFTWARE.
314
+
315
+ =============================WINPTHREADS================================
316
+
317
+ Copyright (c) 2011 mingw-w64 project
318
+
319
+ Permission is hereby granted, free of charge, to any person obtaining a
320
+ copy of this software and associated documentation files (the "Software"),
321
+ to deal in the Software without restriction, including without limitation
322
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
323
+ and/or sell copies of the Software, and to permit persons to whom the
324
+ Software is furnished to do so, subject to the following conditions:
325
+
326
+ The above copyright notice and this permission notice shall be included in
327
+ all copies or substantial portions of the Software.
328
+
329
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
330
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
331
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
332
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
333
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
334
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
335
+ DEALINGS IN THE SOFTWARE.
336
+
337
+
338
+ /*
339
+ * Parts of this library are derived by:
340
+ *
341
+ * Posix Threads library for Microsoft Windows
342
+ *
343
+ * Use at own risk, there is no implied warranty to this code.
344
+ * It uses undocumented features of Microsoft Windows that can change
345
+ * at any time in the future.
346
+ *
347
+ * (C) 2010 Lockless Inc.
348
+ * All rights reserved.
349
+ *
350
+ * Redistribution and use in source and binary forms, with or without modification,
351
+ * are permitted provided that the following conditions are met:
352
+ *
353
+ *
354
+ * * Redistributions of source code must retain the above copyright notice,
355
+ * this list of conditions and the following disclaimer.
356
+ * * Redistributions in binary form must reproduce the above copyright notice,
357
+ * this list of conditions and the following disclaimer in the documentation
358
+ * and/or other materials provided with the distribution.
359
+ * * Neither the name of Lockless Inc. nor the names of its contributors may be
360
+ * used to endorse or promote products derived from this software without
361
+ * specific prior written permission.
362
+ *
363
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AN
364
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
365
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
366
+ * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
367
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
368
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
369
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
370
+ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
371
+ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
372
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
373
+ */
374
+ =============================ZSTD====================================
375
+
376
+ BSD License
377
+
378
+ For Zstandard software
379
+
380
+ Copyright (c) Meta Platforms, Inc. and affiliates. All rights reserved.
381
+
382
+ Redistribution and use in source and binary forms, with or without modification,
383
+ are permitted provided that the following conditions are met:
384
+
385
+ * Redistributions of source code must retain the above copyright notice, this
386
+ list of conditions and the following disclaimer.
387
+
388
+ * Redistributions in binary form must reproduce the above copyright notice,
389
+ this list of conditions and the following disclaimer in the documentation
390
+ and/or other materials provided with the distribution.
391
+
392
+ * Neither the name Facebook, nor Meta, nor the names of its contributors may
393
+ be used to endorse or promote products derived from this software without
394
+ specific prior written permission.
395
+
396
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
397
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
398
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
399
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
400
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
401
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
402
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
403
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
404
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
405
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
406
+
407
+ =============================ZLIB====================================
408
+
409
+ Copyright notice:
410
+
411
+ (C) 1995-2024 Jean-loup Gailly and Mark Adler
412
+
413
+ This software is provided 'as-is', without any express or implied
414
+ warranty. In no event will the authors be held liable for any damages
415
+ arising from the use of this software.
416
+
417
+ Permission is granted to anyone to use this software for any purpose,
418
+ including commercial applications, and to alter it and redistribute it
419
+ freely, subject to the following restrictions:
420
+
421
+ 1. The origin of this software must not be misrepresented; you must not
422
+ claim that you wrote the original software. If you use this software
423
+ in a product, an acknowledgment in the product documentation would be
424
+ appreciated but is not required.
425
+ 2. Altered source versions must be plainly marked as such, and must not be
426
+ misrepresented as being the original software.
427
+ 3. This notice may not be removed or altered from any source distribution.
428
+
429
+ Jean-loup Gailly Mark Adler
430
+ jloup@gzip.org madler@alumni.caltech.edu
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.1
2
+ Name: symengine
3
+ Version: 0.14.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
+ Dynamic: author
24
+ Dynamic: author-email
25
+ Dynamic: classifier
26
+ Dynamic: description
27
+ Dynamic: home-page
28
+ Dynamic: license
29
+ Dynamic: requires-python
30
+ Dynamic: summary
31
+
32
+
33
+ SymEngine is a standalone fast C++ symbolic manipulation library.
34
+ Optional thin Python wrappers (SymEngine) allow easy usage from Python and
35
+ integration with SymPy and Sage.
36
+
37
+ See https://github.com/symengine/symengine.py for information about License
38
+ and dependencies of wheels
39
+
@@ -0,0 +1,50 @@
1
+ symengine/lib/flint-19.dll,sha256=gNKhd7tZYpxtMBTk3_Mb2_CYYcyeyL-wXHR5gy1GY4Y,8975872
2
+ symengine/lib/libgcc_s_seh-1.dll,sha256=fxInSOqJOyCFEx_AHED10dut1pFHOIWtdOM5uEou2G8,818694
3
+ symengine/lib/libgmp-10.dll,sha256=i1QrrFOoM1RGozP8fL6LpsrvVH7BvT09O1rrYV4rvAA,1133114
4
+ symengine/lib/libmpc-3.dll,sha256=NMiiNXzfDJemLqw2EsUVhALSBhFklHCE7Tp7qpIhDRk,286066
5
+ symengine/lib/libmpfr-6.dll,sha256=QPnVzlcUJHwkN4yldcwb_xcCzypEin989ucDoiGa3l8,1630982
6
+ symengine/lib/libwinpthread-1.dll,sha256=aopsX5o0HlEdYdf50wiGTsGZoaCGXUhjeAlYKVvT_SI,62126
7
+ symengine/lib/pywrapper.h,sha256=5FeCXvth1dlnftGzPNYvSiUTcEl0eXCutJOZ5QgdVbg,8503
8
+ symengine/lib/symengine.pxd,sha256=OroamiaClbihMgQK1QVAHeFMyfSW6TynaugoYWhhLAw,44619
9
+ symengine/lib/symengine_wrapper.cp313t-win_amd64.lib,sha256=HcjeuJ_wrVgjatmHs0dxZ58FK4aH6EdfjRXcOAIj-hQ,5640
10
+ symengine/lib/symengine_wrapper.cp313t-win_amd64.pyd,sha256=1WbTNXTPsZFW1IWVASrzrc-KrwXQCH3649rA1w89miY,30267904
11
+ symengine/lib/symengine_wrapper.pxd,sha256=CzqefibEs62skbS3NElAThTzMcHYzWj3QvEVOa5lRKc,3045
12
+ symengine/lib/zlib.dll,sha256=fYbehlnXKNDMImFeo3JIyoOySvZKn8GezEVIEFMI7go,89088
13
+ symengine/lib/zstd.dll,sha256=YmrexS2JxideXVhCf2xEp2yU6i_nAKZj1t9WEAZfvbQ,654336
14
+ symengine-0.14.0.data/purelib/symengine/functions.py,sha256=LNfGb-yI6aXo9BszdmJWfFjZhQFCSYF44fXGMDhLwb8,425
15
+ symengine-0.14.0.data/purelib/symengine/printing.py,sha256=BKOTrj3voT6enkYZYvimM32ibVcBdLNVF4eIgIjHHW8,1115
16
+ symengine-0.14.0.data/purelib/symengine/sympy_compat.py,sha256=pmISwghw-gwE3yM-cpJ2gYWyzO43GQrFVAzeDCLeFRM,171
17
+ symengine-0.14.0.data/purelib/symengine/test_utilities.py,sha256=Pk8RHape9EeGatC3nUE5M-IJoL-U3_WHRS6TdRVWg6g,3086
18
+ symengine-0.14.0.data/purelib/symengine/utilities.py,sha256=bn22sbLtKRQVR_G17O4-iO3K7Bo2kOvRZnkjl7IPrR8,9604
19
+ symengine-0.14.0.data/purelib/symengine/__init__.py,sha256=43Cn0qJhYFCqDIPtHffL4Vs0ee3HX59cLFWK4m9RExU,2403
20
+ symengine-0.14.0.data/purelib/symengine/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ symengine-0.14.0.data/purelib/symengine/tests/test_arit.py,sha256=VEigtuYdMjyHP04UMIOTtuI1yCKxoeKlGjO43MDZ-9E,5693
22
+ symengine-0.14.0.data/purelib/symengine/tests/test_cse.py,sha256=9SMfCrdQ7ZDoTkbcOk28UhXD2ZDFFbDFiAxOjWM5Ofk,469
23
+ symengine-0.14.0.data/purelib/symengine/tests/test_dict_basic.py,sha256=ger2sexbuua1tAxc3JfXlXGrnG2iRAThxGLc01j3jGc,640
24
+ symengine-0.14.0.data/purelib/symengine/tests/test_eval.py,sha256=xIPgDolURXLoc7qehkYKdr8F4reNz5b-Gy9ptJcTbCc,1743
25
+ symengine-0.14.0.data/purelib/symengine/tests/test_expr.py,sha256=pjkUfuLSXQtAQv110uiF0hJJyw_8i3XXU2A-q51GHl0,1037
26
+ symengine-0.14.0.data/purelib/symengine/tests/test_functions.py,sha256=Ctw1o-I3JV3FFiT8SkFha0qXtm8LpI2hmsY2W5WeoG4,11575
27
+ symengine-0.14.0.data/purelib/symengine/tests/test_lambdify.py,sha256=06jS9ivhHnTlLSHOClU5YO-9zTTHQGomA85D-lauPQo,29318
28
+ symengine-0.14.0.data/purelib/symengine/tests/test_logic.py,sha256=Htbekxw7rQgSShfbcBwZpEi-T7Tb3lZPJ8_kJQWI7as,3546
29
+ symengine-0.14.0.data/purelib/symengine/tests/test_matrices.py,sha256=RH-5dDBkTaM0_krJg2TqFQsM5k6LKK3MCC50gEhX5Ww,20648
30
+ symengine-0.14.0.data/purelib/symengine/tests/test_ntheory.py,sha256=jMjJVc1pomRDOWXRqqhQTHHUE-npOki4KxKMvWg6m1k,6312
31
+ symengine-0.14.0.data/purelib/symengine/tests/test_number.py,sha256=F3WIKwBwfWdyHaY7cu9yOtTm4AaGPO71s256tQih3dA,5041
32
+ symengine-0.14.0.data/purelib/symengine/tests/test_pickling.py,sha256=lkRqJkkmg8Cot9ng2WnoVkVQH_LyeOtqx-SZorqZLj0,1562
33
+ symengine-0.14.0.data/purelib/symengine/tests/test_printing.py,sha256=9_t5rlV1NQUZvolvFKiuuCtpwjS_6hb8FBMXkoGKV-o,1286
34
+ symengine-0.14.0.data/purelib/symengine/tests/test_sage.py,sha256=kp_UzeS6vuIlLIc6f3PnykdBMNVKP8k2lZppsX29aOI,5400
35
+ symengine-0.14.0.data/purelib/symengine/tests/test_series_expansion.py,sha256=GfgoubMmPB30nasMB6t9JR-5uVg3xYOk9oAWDr0DWYY,741
36
+ symengine-0.14.0.data/purelib/symengine/tests/test_sets.py,sha256=QWcZHWlK5pD5SZrF72uhYZjhYXm4fbmV5OzrQwqYeYQ,4177
37
+ symengine-0.14.0.data/purelib/symengine/tests/test_solve.py,sha256=MnAdXm3ZyX09FnQixaMNDG7vqMX-rr46U9UF5BpBZoY,935
38
+ symengine-0.14.0.data/purelib/symengine/tests/test_subs.py,sha256=HlX_iYSSWqJQmSg7x8vRckHgre7Pl8ly6HdbTU-GYTw,1810
39
+ symengine-0.14.0.data/purelib/symengine/tests/test_symbol.py,sha256=5ARwhVtox-fH5kSBgM8JuPbUJK4BJ3HCUo-LiVf39To,5296
40
+ symengine-0.14.0.data/purelib/symengine/tests/test_sympify.py,sha256=yL8JRRdnocswCHQM0S38KDbLB_6VwgZJl3R_HB1M-v4,1868
41
+ symengine-0.14.0.data/purelib/symengine/tests/test_sympy_compat.py,sha256=T24NXeFuStVKvzfZU4HL26RxXkH_2CHCBvdpJsWOd8s,4959
42
+ symengine-0.14.0.data/purelib/symengine/tests/test_sympy_conv.py,sha256=uR_6ThIEyDSq-dbrlE8x52eC3wbdnij0tLbEokLqF04,27637
43
+ symengine-0.14.0.data/purelib/symengine/tests/test_var.py,sha256=q-6R2GVi9AF5eD16jiy_kks2xH4ReUqudZ_S-Zf7O90,1286
44
+ symengine-0.14.0.data/purelib/symengine/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ symengine-0.14.0.dist-info/AUTHORS,sha256=GskEA4KIU3sZV8i3DHr9wE8t3HJL_mWsSm5RhQ_3HEs,1664
46
+ symengine-0.14.0.dist-info/LICENSE,sha256=22aaNxY_3hh6i_-d6PtsgzMz1TPzPi-vDG5Tx2xx1QE,20897
47
+ symengine-0.14.0.dist-info/METADATA,sha256=NbVbfDStGhYdPwcAdjQYMUYzRxIFXZEg0kmNy6AAU6E,1351
48
+ symengine-0.14.0.dist-info/RECORD,,
49
+ symengine-0.14.0.dist-info/top_level.txt,sha256=ASxf76lo8f1n_6UL_Z5t27oeMUmkRSMzTAtYdzc1ZM8,10
50
+ symengine-0.14.0.dist-info/WHEEL,sha256=lDH3kVauNxEShWgyvkPB2p2D6vsmS67-wAWZn0gcvbI,103
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313t-win_amd64
5
+
@@ -0,0 +1 @@
1
+ symengine