Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python311-sympy | Distribution: openSUSE:Factory:zSystems |
Version: 1.13.3 | Vendor: openSUSE |
Release: 1.1 | Build date: Wed Nov 20 18:15:37 2024 |
Group: Development/Libraries/Python | Build host: reproducible |
Size: 90829219 | Source RPM: python-sympy-1.13.3-1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://www.sympy.org/ | |
Summary: Computer algebra system (CAS) in Python |
SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries.
BSD-3-Clause
* Wed Nov 20 2024 Dirk Müller <[email protected]> - update to 1.13.3: * Handle matrices of zero columns correctly in the Matrix constructor. * NumPy numbers can be used with clebsch_gordan * An inconsistency in Float/Rational comparisons was fixed. * Fixed a bug that caused LambertW to hang on specific inputs * A regression introduced in SymPy 1.13 in the heurisch integration routine was fixed * see also https://github.com/sympy/sympy/wiki/release-notes-for-1.13.0 * Sat Jun 29 2024 Dirk Müller <[email protected]> - update to 1.12.1: * improved compatibility with NumPy 2.0 and CPython 3.12 * Wed May 31 2023 Dirk Müller <[email protected]> - update to 1.12: * https://github.com/sympy/sympy/wiki/release-notes-for-1.12 * Sat Sep 17 2022 Arun Persaud <[email protected]> - specfile: * removed patch sympy_printing_ccode.patch; included upstream * requires python >= 3.8 (skip 3.7) - update to version 1.11.1: * The 1.11 release introduced a regression when using lambdify with the cse=True option (introduced in 1.9) resulting in a list being returned for a lambdified expression that was not a list. This bug is now fixed in the 1.11.1 release. - changes from version 1.11.0: * Highlights: + Better support for integrating several different types of expressions. + The series expansion has seen several improvements. + The assumption system is now fully deterministic, so it should work in multi-threaded environments. + A new and improved Mathematica parser. * full changelog at https://github.com/sympy/sympy/wiki/Release-Notes-for-1.11 * Thu Aug 04 2022 Matej Cepl <[email protected]> - Switch off tests (they run 7h53m47s). * Tue May 24 2022 Matej Cepl <[email protected]> - Add sympy_printing_ccode.patch eliminating sympy.printing.ccode deprecated module, because it just stands in the way (gh#sympy/sympy#23533) * Sat May 21 2022 andy great <[email protected]> - Update to version 1.10.1. * Fixed a bug that prevented unpickling pickles created with older sympy versions. * The .diff method accepts string arguments again (fixing a regression in 1.10). - Update for version 1.10.0. * The Laplace transform computations has become much more powerful using a rule-based system. * All active deprecations in SymPy have been revamped. * A number of classes and functions have been moved to better locations mostly to resolve problems with cyclic imports within the SymPy codebase. * BREAKING: removed the since long deprecated densearith, densesolve, and densetools * BREAKING CHANGE: core.trace with class Tr moved to physics.quantum.trace. * Full changelog at https://github.com/sympy/sympy/wiki/Release-Notes-for-1.10 - Update for version 1.9. * The internal implementation of Matrix and other matrix classes (SparseMatrix etc) is now DomainMatrix. * Leading term methods now raise PoleError at singularities. * Full changelog at https://github.com/sympy/sympy/wiki/Release-Notes-for-1.9 * Fri May 14 2021 Arun Persaud <[email protected]> - update to version 1.8: * Backwards compatibility breaks and deprecations + Please manually add any backwards compatibility breaks or deprecations here, in addition to the automatic listing below. + assumptions AskHandler(), register_handler() and remove_handler() are deprecated. Handler now must be multipledispatch instance. (#20835 by @JSS95) + parsing Parsing of "Q" returns AssumptionKeys instance in assumptions module. This means that sympify("Q") will no longer return a symbol. (#21152 by @JSS95) * Full changelog at https://github.com/sympy/sympy/wiki/Release-Notes-for-1.8 * Mon Jan 25 2021 Ben Greiner <[email protected]> - Update to 1.7.1: core * There was a regression in 1.7 that meant that __slots__ would not work correctly for Basic instances and they would end up having __dict__. This also made it possible to set arbitrary attributes on Basic instances such as symbols which breaks immutability. This was fixed in 1.7.1 to ensure that Basic instances do not have __dict__ and it is not possible to set attributes on them. (#20590 by @oscarbenjamin) s series * Fixed lazy iteration of series with expr.series(x, n=None) which was broken in the 1.7 release. (#20589 by @oscarbenjamin and @sachin-4099) stats * Updated documentation for sympy.stats.sample for seed argument. (#20555 by @czgdp1807) * sympy.stats.sample now has an optional seed argument. (#20528 by @czgdp1807) * Random failures with sympy.stats.sample have now been fixed. (#20527 by @czgdp180 - Changelog for 1.7.0: Backwards compatibility breaks and deprecations - ---------------------------------------------- core * Modules and names that were accidentally importable from sympy are no longer importable. In sympy 1.6 importing and using these names would give a deprecation warning. In sympy 1.7 these names are removed. As an example from sympy import add would need to be from sympy.core import add or import sympy.core.add as add. (#19554 by @oscarbenjamin) * DEPRECATION: Using non-Expr args in Add, Mul or Pow is now deprecated (#19445 by @oscarbenjamin) diffgeom * Manifold.patches attribute is deprecated. (#19368 by @JSS95 and @mcpl-sympy) * Patch.coord_systems attribute is deprecated. (#19368 by @JSS95 and @mcpl-sympy) * Class signature names of CoordSystem is deprecated. CoordinateSymbol class and CoordSystem.symbols attribute are introduced instead. (#19368 by @JSS95 and @mcpl-sympy) * CoordSystem.transforms, CoordSystem.connect_to, and CoordSystem.coord_tuple_transform_to are deprecated. Class signature relations, CoordSystem.transformation and CoordSystem.transform are introduced instead. (#19368 by @JSS95 and @mcpl-sympy) printing * sympy.printing.pretty.pretty_symbology.xstr has been deprecated (#20081 by @eric-wieser) * The unicode argument to sympy.printing.stringpict.prettyForm has been deprecated (#20081 by @eric-wieser) * The deprecation of calling preview with viewer="StringIO" is now expired instead of forgotten (a regression in 1.6.0) (#19905 by @eric-wieser) * The modules sympy.printing.ccode, sympy.printing.fcode, and sympy.printing.cxxcode have been renamed to sympy.printing.c, sympy.printing.fortran, and sympy.printing.cxx, respectively. This was done to avoid conflicts that occur when a module name is the same as a function name. The modules are still importable under their old names but doing so is deprecated and a warning will be given (#19908 by @asmeurer) * from sympy.printing.codeprinter import Assignment no longer works. You should use from sympy.codegen import Assignment, which is where Assignment has lived since SymPy 1.1. (#19908 by @asmeurer) * Calling preview with viewer="file" no longer looks for a file executable (a regression in 1.6.0) (#19905 by @eric-wieser) solvers * solve_linear_system is now a thin wrapper for linsolve. It is recommended to use linsolve in new code. solve_linear_system maybe deprecated or removed in future. (#18814 by @oscarbenjamin) utilities * find_executable is deprecated in favor of the builtin shutil. which. (#19634 by @eric-wieser) Changes - ------ algebras * Added DocString for integrate function of quaternion class. (#19410 by @mohitshah3111999) codegen * Added support for generating calls to scipy.special.cosm1. (#20011 by @bjodah) * sympy.codegen and sympy.combinatorics are no longer imported as part of from sympy import *. The codegen and combinatorics modules do not have any names that are included in the top-level namespace, so their being imported with the top-level SymPy was a mistake. This improves the import time of from sympy import *. (#19908 by @asmeurer) * Added support for generating calls to numpy.logaddexp & numpy. logaddexp2. (#19880 by @bjodah) * Fix bugs to the parser of matrix expressions in order to build CodegenArray objects correctly. (#19197 by @Upabjojr) combinatorics * Fixed a bug in PermutationGroup.minimal_blocks caused by modifying a list while iterating over its indices. (#19954 by @ilya-pchelintsev) concrete * Implemented Raabe's Test (#18656 by @sachin-4099) core * Fixed a few broken cases of expr.is_integer (#20450 by @coproc and @tbennun) * Modules and names that were accidentally importable from sympy are no longer importable. In sympy 1.6 importing and using these names would give a deprecation warning. In sympy 1.7 these names are removed. As an example from sympy import add would need to be from sympy.core import add or import sympy. core.add as add. (#19554 by @oscarbenjamin) * Zero raised to power Negative Infinity gives ComplexInfinity (zoo) instead of zero (#20212 by @sidhu1012) * Extensible add, mul and power functions are introduced to allow sympy objects to define what classes should be used for them in place of Add, Mul and Pow (e.g. matrices use MatAdd). This is an experimental approach aimed at enabling the behaviour of core routines (expand, collect, etc) to be customised by user-defined types (e.g. MatAdd rather than Add). This mechanism is still experimental, is not fully implemented across the core and might be changed or removed in a future release of sympy. (#19463 by @JSS95 and @mcpl-sympy) * divmod on sympy.Float with 0 numerator now results in (0, 0). (#20109 by @eriknw) * Dict operations no longer automatically converts strings into SymPy types. (#19911 by @asmeurer) * Dict operations no longer raise SympifyError. (#19911 by @asmeurer) * Fixes _eval_nseries() function of power.py (#19508 by @sachin-4099) * Remove optional dependency on fastcache (#19492 by @pbrady) * DEPRECATION: Using non-Expr args in Add, Mul or Pow is now deprecated (#19445 by @oscarbenjamin) * When creating an Add or Mul with evaluate=False identities (0 or 1) are no longer removed. (#19450 by @oscarbenjamin) * Fixes _eval_nseries() function of mul.py (#19369 by @sachin-4099) * Sum is now included in count_ops results (#19261 by @smichr) * match has been optimized to improve term-matching in Add (#19261 by @smichr) * match will automatically ignore bound symbols when matching (#19261 by @smichr) * match results will no longer contain extraneous symbols (only those requested) (#19261 by @smichr) * as_dummy should give a canonical result for expressions having bound symbols (#19261 by @smichr) * Lambdas written in terms of different symbols will no longer compare equal; this was an abuse of the Python == operator (#19261 by @smichr) * expr: A new method is_meromorphic is added. (#19306 by @jksuom) diffgeom * Manifold.patches attribute is deprecated. (#19368 by @JSS95 and @mcpl-sympy) * Patch.coord_systems attribute is deprecated. (#19368 by @JSS95 and @mcpl-sympy) * Class signature names of CoordSystem is deprecated. CoordinateSymbol class and CoordSystem.symbols attribute are introduced instead. (#19368 by @JSS95 and @mcpl-sympy) * CoordSystem.transforms, CoordSystem.connect_to, and CoordSystem.coord_tuple_transform_to are deprecated. Class signature relations, CoordSystem.transformation and CoordSystem.transform are introduced instead. (#19368 by @JSS95 and @mcpl-sympy) * CoordSystem.jacobian_determinant method is introduced. (#19368 by @JSS95 and @mcpl-sympy) functions * lambdify added a warning when args is a set. (#19792 by @foice, @RobertoFranceschini, and @sylee957) * Fixes _eval_nseries method of log (#20002 by @sachin-4099) * Adds _eval_is_meromorphic method and _eval_aseries to class lowergamma (#19990 by @sachin-4099) * Adds _eval_is_meromorphic method and _eval_rewrite_as_tractable method to class uppergamma (#19990 by @sachin-4099) * Rectifies eval method of class besselk (#19990 by @sachin-4099) * Adds _eval_is_meromorphic to bessel function. (#19963 by @sachin-4099) * Adds _eval_nseries function to sin and cos. (#19916 by @sachin-4099) * reduced symbolic multiples of pi in trigonometric functions (#19741 by @sachin-4099) * fixed errors in assumptions when rewriting RisingFactorial / FallingFactorial as gamma or factorial (#18696 by @sachin-4099) * Adds _singularities to LambertW function (#19716 by @sachin-4099) * Rectifies _eval_rewrite_as_tractable method of class erf (#19697 by @sachin-4099) * Improved condition checking in piecewise_simplify() (#19596 by @dhruvmendiratta6 and @smichr) * Implemented _eval_rewrite_as_Abs() for sign (#19487 by @dhruvmendiratta6) * Adds cdir parameter to handle series expansions on branch cuts (#19555 by @sachin-4099) * Adds _eval_rewrite_as_factorial() and _eval_rewrite_as_gamma() functionalities for subfactorial (#19515 by @sachin-4099) * Fixed cot.as_real_imag (sign error in imaginary part) (#19468 by @DaveWitteMorris and @gschintgen) * Corrects the _eval_as_leading_term() method of tan and sec functions (#19461 by @sachin-4099) * bsplines are more robust in terms of handling symbolic knots (#19272 by @smichr) geometry * Ellipses with eccentricity >=1 and for eccentricity < 0 will be handled as trivial cases (#20045 by @agrawalshubham01) integrals * upgrades to manualintegrate to support inverse trig functions! (#19993 by @iammosespaulr) interactive * The _repr_latex_, _repr_svg_, and _repr_png_ methods of subclasses of sympy objects are no longer discarded when init_printing() is called. (#19944 by @eric-wieser) logic * Binary boolean operators on Boolean objects no longer coerce strings (#20093 by @eric-wieser) matrices * Adding an array and a matrix now consistently gives TypeError. (#20159 by @sidhu1012) * changed subs function to check if input is zip (#19159 by @czgdp1807 and @gfolbe318) * added tests in test_commonmatrix.py (#19159 by @czgdp1807 and @gfolbe318) * The ordering of parameters in a parametrised solution from gauss_jordan_solve was fixed. Previously incorrect results were returned for some underdetermined systems. (#19885 by @1124816) * Prevents infinite recursion with rmul (#19860 by @mloubout) * Added class MatrixSet to represent the set of matrices (#19826 by @Smit-create) * Disabled default matrix intermediate product simplification and changed it to enable via context manager. (#19588 by @oscarbenjamin and @Pristine-Cat) * Use more efficient Cholesky factorization method to check if matrices are positive semidefinite. (#19573 by @galbwe) * row_del and col_del will raise IndexError rather than ValueError when the index is out of bounds. (#19571 by @sylee957) * Fixed a bug in the implementation of Sylvester's criterion for determining if a matrix is positive semidefinite. (#19556 by @galbwe) * Explicit non-matrix are treated as scalar (#19533 by @mloubout) * QRdecomposition will return matrices with zero rows and columns for zero rank matrices. e.g. Matrix([[0, 0, 0], [0, 0, 0], [0, 0, 0]]) will be decomposed with Matrix(3, 0, []) and Matrix(0, 3, []) (#19319 by @sylee957) * Added Matrix.companion for creating dense companion matrix. (#19339 by @sylee957) * Added CompanionMatrix for creating a symbolic companion matrix. (#19339 by @sylee957) * Matrix([]).eigenvals(multiple=True) will give an empty list instead of an empty dict. (#19355 by @sylee957) * Determinant is now considered commutative. (#19354 by @eric-wieser) ntheory * Integrated Lenstra's Elliptic Curve factorization into factorint (#19937 by @abh2k) * Added quadratic sieve (#19657 by @abh2k) * Implemented Lenstra's Elliptic curve factorization and Elliptic curve primality test (#19436 by @abhinav28071999) parsing * Added support for while loop in C Parser (#20188 by @smitgajjar) * Upgraded Relational Operator support (#19982 by @iammosespaulr) * Bra-Ket Notation support (#19982 by @iammosespaulr) * Improved Grammar (#19982 by @iammosespaulr) * added Latex support for "not equal" and expanded support for less than, greater than symbols (#19970 by @bhpayne) * parse_latex supports \left and \right parenthesis notation. (#19466 by @sylee957) * parse_latex can parse expressions with amsmath spacing (#19475 by @sylee957) * Added parsing of \exp in parse_latex. (#19395 by @sylee957) * Add more parsing rules and test examples. (#19177 by @wuyudi) * Added support for more data types in C parser: signed char, unsigned char, short, short int, signed short, signed short int, unsigned short, unsigned short int, unsigned int, long, long int, signed long, signed long int, unsigned long, unsigned long int, double, long double. Also, modified the data type for int and float to intc and float32 respectively, replacing integer and real (#19230 by @smitgajjar) * Added support for shorthand operators in C parser: +=, -=, *=, /= and %= (#19230 by @smitgajjar) * Removed the assumption of value of a variable, if it is not initialized while variable declaration(e.g.; in case of int a; , the value of a was assumed to be Integer(0), in case of float b;, the value of b was assumed to be Float(0.0) and in case of bool c;, the value of c was assumed to be S.false). Also, removed the assumption of default value of formal parameters while parameter declaration in function definition or function prototype (e.g.; in case of function definition void func(int a, float b) { //some code }, default value of formal parametersa and b were assumed to be Integer(0) and Float(0.0) respectively) (#19230 by @smitgajjar) physics.control * Added dc_gain, poles, zeros, and is_stable in TransferFunction class. (#19896 by @namannimmo10) * Adding a new control systems toolbox as physics.control. (#18436 by @benepla and @namannimmo10) * Add TransferFunction, Series, Parallel, and Feedback class for physics.control submodule (#19390 by @benepla and @namannimmo10) physics.quantum * Simplification of Dagger() * IdentityOperator() (#19783 by @dhruvmendiratta6) * When printing, Commutator, Anticommutator, InnerProduct, TensorProduct, and OuterProduct now respect keyword-arguments to sstr. (#19424 by @eric-wieser) physics.units * Fixed some dimensional analysis bugs with the addition and multiplication operators. (#19705 by @mgreminger) physics.vector * Added user warnings for all possible paths are found in particle.py. (#20131 by @sidhu1012) * Added user warning for cyclic paths in particle.py. (#20131 by @sidhu1012) * Point.vel() now attempts to calculate the velocity using the relative position from other points if it has not been already set by the user. This behavior mimics the existing behavior in ReferenceFrame.ang_vel_in(). (#20049 by @moorepants and @sidhu1012) * VectorLatexPrinter now respects the symbol_names setting when printing dynamicsymbols (#19684 by @eric-wieser) * VectorLatexPrinter now know about the same trig functions as the regular printer (#19684 by @eric-wieser) * When printing, Vector and Dyadic now respect keyword-arguments to sstr and latex. As a result, these no longer use vector printing customizations unless init_vprinting has been called. (#19640 by @eric-wieser) plotting * capability to subclass Basebackend and specify it to the plotting functions, thus creating plots with other plotting libraries (#20463 by @oscarbenjamin) * Fixed plot3d_parametric_line plotting curves out of the box. (#19252 by @sylee957) polys * Polys with complex floating point coefficients will now use the CC domain rather than EX. (#20194 by @oscarbenjamin) * Fixed a bug in minimal_polynomial when using Groebner bases (compose=False) (#19799 by @coproc) * Fixed GeneratorsError for creating some elements of FractionField when its ground domain is FractionField or PolynomialRing. (#19713 by @sylee957) * Fixed Poly initialized with PolyElement mutating the generator of the coefficient in the form of polynomial. (e.g. Poly(ZZ[x] (x+1), y, domain=ZZ[x]) becomes Poly(y+1, y, domain=ZZ[x])) (#19659 by @sylee957) * Fixed Poly initialized with FracElement raising SympifyError. (e.g. dom = ZZ.frac_field(x); Poly(dom(x+2), y, domain=dom)) (#19659 by @sylee957) * Add division to finite extensions. (#19593 by @gschintgen and @jksuom) * Fixed GCD to always return a non-negative constant. (#19569 by @KaustubhDamania) * added new domains for Gaussian integers and rationals (#15396 by @jksuom and @smichr) * Add the Gaussian domains ZZ_I and QQ_I to Poly. Make Poly use the Gaussian domains automatically when I is present in the input. Add factorisation over the Gaussian integers (ZZ_I). The polys keyword argument gaussian=True now results in the domain QQ_I rather than the extension field QQ<I>. (#15396 by @oscarbenjamin) * improvement of dup_zz_mignotte_bound(f, K) by Knuth-Cohen bound (#19254 by @lagamura) printing * Support frac with pycode printers (for lambdify) (#20115 by @ehren) * Round-trip printing of floats (double-precision) to content MathML. (#19958 by @lcontento) * latex now once again requires settings to be passed as keyword and not positional arguments, and respects printer settings changed with set_global_settings; restoring the behavior from sympy 1.2 and earlier. (#20067 by @eric-wieser) * sympy.printing.pretty.pretty_symbology.xstr has been deprecated (#20081 by @eric-wieser) * The unicode argument to sympy.printing.stringpict.prettyForm has been deprecated (#20081 by @eric-wieser) * The unicode attribute of sympy.printing.stringpict.prettyForm has been deprecated (#20081 by @eric-wieser) * The mpmath code printer now correctly prints the loggamma function. (#19913 by @abhaydhiman) * Use literal suffix for 1.0 in C89CodePrinter's printing of pow when the exponent is -1 (#19956 by @bjodah and @mmohrhard) * The modules sympy.printing.ccode, sympy.printing.fcode, and sympy.printing.cxxcode have been renamed to sympy.printing.c, sympy.printing.fortran, and sympy.printing.cxx, respectively. This was done to avoid conflicts that occur when a module name is the same as a function name. The modules are still importable under their old names but doing so is deprecated and a warning will be given (#19908 by @asmeurer) * from sympy.printing.codeprinter import Assignment no longer works. You should use from sympy.codegen import Assignment, which is where Assignment has lived since SymPy 1.1. (#19908 by @asmeurer) * Calling preview with viewer="file" no longer looks for a file executable (a regression in 1.6.0) (#19905 by @eric-wieser) * The deprecation of calling preview with viewer="StringIO" is now expired instead of forgotten (a regression in 1.6.0) (#19905 by @eric-wieser) * When printing, NDimArray now respects keyword-arguments to sstr (#19903 by @eric-wieser) * preview no longer fails with ValueError if the preamble contains a % character. (#19858 by @eric-wieser) * Types which are not recognized by the LaTeX printer no longer have their __str__ interpreted as LaTeX, and have their str(... ) printed as pre-formatted text as if they were printed normally. This includes the builtin str type: latex("hello") now results in the latex \mathtt{\text{hello}}. * If a custom type intends to be interpreted as latex, it should define the _latex hook as described in the docs: def _latex(self, printer): return str(self) # indicate that the result of __str__ is LaTeX-compatible * To print a string containing LaTeX math using MathJax, use import IPython IPython.display.Math(string) (#19611 by @eric-wieser) * The latex printer now shows builtin floats using ...x10^... notation instead of ...e... notation. (#19611 by @eric-wieser) * preview now throws OSError instead of SystemError if viewers cannot be found. (#19818 by @eric-wieser) * Fixed the SciPy printer for sparse matrices (#19633 by @benjaminwolba and @sylee957) * preview(..., output='pdf') now uses dvipdfmx instead of dvipdf if available. As a result, it now works with a MiKTeX installation on windows. (#19635 by @eric-wieser) * LatexPrinter._print is no longer called on strings which have already been converted to Latex. (#19614 by @eric-wieser) * A new sympy.printing.defaults.Printable base class was added, which is a mixin providing _repr_latex_ in terms of LatexPrinter().doprint(). Any user type which subclasses this will opt into init_printing. (#19425 by @eric-wieser) * Printing unevaluated Muls with multiple Number factors will show all factors strictly in order. Identities will also be shown explicitly. (#19450 by @oscarbenjamin) * user types that implement _latex are now printed as LaTeX when embedded within builtin collections like list or dict. (#19389 by @eric-wieser) * fixed a bug where srepr function would not print dictionary and set properly (#19346 by @rational-kunal) * tuples of one element now include the usual trailing comma (#19348 by @eric-wieser) * mat_symbol_style='bold' no longer applies to subscripts of matrix symbols (#19301 by @eric-wieser) series * Adds e.is_Pow heuristic to limits.py to improve the limit evaluations of Pow objects (#19680 by @sachin-4099) * Changes in mrv() function of gruntz.py and cancel() function of polytools.py resolves RecursionError and Timeout in limit evaluations (#19646 by @sachin-4099) * modified order.py to better work with Add objects. (#19546 by @maurogaravello) * Adds a functionality to the doit() method of limits.py which uses is_meromorphic() for limit evaluations (#19432 by @sachin-4099) * Fixed wrong computations of fourier_series for even or odd functions with limits that are specified non-central. (#19382 by @sylee957) * Replaces xreplace() with subs() in rewrite() function of gruntz.py resolving incorrect limit evaluations (#19297 by @sachin-4099) * Adds a condition to limitinf() function of gruntz.py resolving incorrect limit evaluations (#19292 by @sachin-4099) sets * Earlier expr and sets were treated equal which gave incorrect output for some set functions(mainly : - in, is_subset), made sets and expr not to be equal (#20208 by @sidhu1012) * nested multi-symbol first arg for ConditionSet now handled with subs/as_dummy (#19512 by @smichr) * the bound symbols cannot be replaced with subs (#19512 by @smichr) * the error checking for mismatched signatures for sym and the base set has been improved (#19512 by @smichr) * ConditionSet still tries to unify symbols and denest a base set that is given as a ConditionSet but will no longer introduce new symbols (and will leave the base set a a ConditionSet) when this cannot be done (#19512 by @smichr) * Fixed ConditionSet.dummy_eq() and ConditionSet.as_dummy(). (#19502 by @gschintgen) * Fixed ConditionSet.subs() in the case where the substitution targets a free symbol. (#19495 by @gschintgen) * Fixed _infimum_key sorting key. (#19437 by @gschintgen) * ImageSets with Lambdas having different symbols will no longer compare equal and should be compared like a.dummy_eq(b) #19261 by @smichr) simplify * Fixed sqrtdenest giving wrong results for some forms of sqrt(a + b*sqrt(r)) (#19932 by @sylee957) * Fixes a bug in collect when collection keys are not independent. (#19720 by @mloubout) * Improved simplification for sign() (#19596 by @dhruvmendiratta6 and @smichr) * Improved trigsimp for hyperbolic functions nested in non-trig functions. (#19548 by @gschintgen) * Fixes a bug in collect when collected symbols appear in the facorized expression. (#19431 by @mloubout) solvers * Added simplification strategies for simplifying the solutions of systems of ODEs (#19998 by @mijo2 and @oscarbenjamin) * Fix bug in nonlinsolve leading to key-error (#19189 by @nsfinkelstein and @oscarbenjamin) * improved functionality for solveset in case of inequalities (#19978 by @maurogaravello) * Handling of inequalities involving Piecewise is improved in solveset. (#19986 by @maurogaravello) * Solving higher-order system of ODEs by reducing/transforming it into the first-order system of ODEs by numerous methods. (#19838 by @mijo2) * Added component division technique to divide the system of ODEs into logical sub-systems and solving each of these separately. (#19762 by @mijo2) * Extending checkodesol and constants_renumber to handle system of ODEs (#19733 by @mijo2) * Added dsolve_system that can solve a system of ODEs (#19695 by @mijo2) * API for the _linear_neq_order1_type1-4 was changed to make it easier for anyone to access the solver (#19653 by @mijo2) * Solving linear systems particularly involving polynomial coefficients is much faster (#18844 by @oscarbenjamin) * Added the new n equations linear first-order non-constant coefficient non-homogeneous solver where the coefficient matrix of the system of ODEs is commutative with its antiderivative. (#19594 by @mijo2) * solveset will always use a symbol that has only either the real or complex attribute and no other attribute; when a ConditionSet is returned, the original symbol for which the solution is being sought will be used if it does not cause evaluation of the result. (#19512 by @smichr) * In dsolve there is no a general solver that can solve systems of constant coefficient non-homogeneous first order ODEs of any size in terms of integrals. (#19341 by @mijo2) * Fixed exception handling in solveset's secondary trigonometric solver. (#19566 by @gschintgen) * equations with an additive generator are now solved more quickly (#19524 by @smichr) * Improved solveset capabilities for solving trigonometric equations, notably rational and symbolic coefficients are now supported. (#19507 by @gschintgen) * solve_linear_system is now a thin wrapper for linsolve. It is recommended to use linsolve in new code. solve_linear_system maybe deprecated or removed in future. (#18814 by @oscarbenjamin) * Addition of a solver that handles a subclass of linear first order non-constant coefficient homogeneous systems of ODEs with any number of equations. (#19185 by @mijo2) stats * The state space of ContinuousMarkovChain is now by default a Range object instead of S.Reals. (#20150 by @czgdp1807 and @naveensaigit) * The generator matrix of ContinuousMarkovChain is now by default a MatrixSymbol object instead of None. (#20150 by @czgdp1807 and @naveensaigit) * RandomMatrixSymbol.doit will be invariant upon call. (#20136 by @sylee957) * The state space of DiscreteMarkovChain is now by default a Range object instead of S.Reals. (#20042 by @Maelstrom6) * The transition probability matrix of DiscreteMarkovChain is now by default a MatrixSymbol object instead of None. (#20042 by @Maelstrom6) * Fixed xreplace infinitely expanding random matrix ensemble classes. (#20018 by @sylee957) * All the ensemble classes (RandomMatrixEnsemble, GaussianEnsemble, GaussianOrthogonalEnsemble, ...) now becomes stub function constructors. If you want to use them as classes, you should import them as RandomMatrixEnsembleModel, GaussianEnsembleModel, ... (#20018 by @sylee957) * Added sampling of Joint RVs from external libraries (#19848 by @Smit-create) * Added sampling for Matrix Distributions (#19857 by @Smit-create) * Allowing CompoundDistribution to handle more than one random variables (#19808 by @Smit-create) * Added Wishart and MatrixNormal Distributions (#19795 by @Smit-create) * Change in return type of P and E with evaluate=False. With evaluate=False, P and E are made to return Probability and Expectation object respectively. (#19819 by @Smit-create) * Added MatrixGamma Distribution (#19734 by @Smit-create) * Added symbolic classes of Moment and CentralMoment (#19724 by @Smit-create) * Added support for Compound Distributions (#19648 by @Smit-create) * Added doit in class Probability (#19696 by @Smit-create) * Added MutlivariateNormal and MutlivariateLaplace function (#19631 by @Smit-create) * Added Poisson, Wiener and Gamma Processes (#19387 by @Smit-create) * Added Expectation Matrix, Variance Matrix and CrossCovariance Matrix (#19529 by @Smit-create) * Added sample_stochastic for sampling from stochastic processes. (#19500 by @Smit-create) * FIxes free_symbols method of RandomIndexedSymbol (#19459 by @Smit-create) * Added Sampling from external libraries for all the random variables of sympy (#19342 by @Smit-create) * Added doit method in Expectation and made E to call Expectation (#19290 by @Smit-create) * Added is_random in sympy.stats.rv to check if expression contains random variables (#19304 by @Smit-create) * expand added in sympy.stats.symbolic_rv API. (#19295 by @Smit-create) * Added Lomax and Bounded pareto distribution (#19273 by @Smit-create) * Added sampling methods for continuous variables (#18754 by @Smit-create) * Added library option in sample (#18754 by @Smit-create) * sample returns an iterator object since version 1.7 (#18754 by @Smit-create) tensor * Adding ArrayDerivative class as subclass of Derivative. This new handles derivatives involving non-scalar expressions. (#20072 by @Upabjojr) utilities * sympy.utilities.iterables.partitions() no longer reuses the same dictionary for each yielded output. (#20154 by @asmeurer) * Add support for Integral with lambdify (using scipy or mpmath) (#20134 by @ehren) * Lambdifying an expression with loggamma using mpmath no longer raises ImportError. (#19913 by @abhaydhiman) * find_executable is deprecated in favor of the builtin shutil. which. (#19634 by @eric-wieser) vector * integral of parametric region depends on the order of limits at the time of initialization. (#20044 by @friyaz) * vector_integrate can integrate over ImplicitRegion objects. (#19883 by @friyaz) * Added a function to find a rational point on conic (#19807 by @friyaz and @Upabjojr) * Added support to create implictly defined regions. (#19681 by @friyaz) * Added support to integrate scalar/vector fields over objects of geometry module. (#19650 by @friyaz) * added class to represent integral of scalar/vector field over a parametric surface. (#19539 by @friyaz) * Modified API of ParametricIntegral class (#19580 by @friyaz) * Added class to represent a parametric region in space. (#19472 by @friyaz) other * The LaTeX docs now need to built with xelatex rather than pdflatex. (#20309 by @oscarbenjamin) * Support for Python 3.5 has been dropped. SymPy now requires Python 3.6 or newer. (#20145 by @oscarbenjamin) * more function raise TypeError when passed invalid keyword-arguments, rather than ignoring them silently (#20086 by @eric-wieser) * assert sympy.testing.pytest.raises(Exception, func) no longer always asserts when pytest is not present (#20012 by @eric-wieser) * Make SymPy do less at import time so that import sympy is faster. (#19910 by @asmeurer) * Improve code quality by cleaning the doctests up (#19406 by @InCogNiTo124 and @oscarbenjamin) * intersphinx links to :mod:`sympy` no longer point to the documentation for Immutable Matrices (#19430 by @eric-wieser) * Wed Sep 16 2020 Dirk Mueller <[email protected]> - update to 1.6.2: * bugfixes
/etc/alternatives/isympy /etc/alternatives/isympy.1.gz /usr/bin/isympy /usr/bin/isympy-3.11 /usr/lib/python3.11/site-packages/__pycache__/isympy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/__pycache__/isympy.cpython-311.pyc /usr/lib/python3.11/site-packages/isympy.py /usr/lib/python3.11/site-packages/sympy /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info/PKG-INFO /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info/SOURCES.txt /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info/dependency_links.txt /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info/entry_points.txt /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info/not-zip-safe /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info/requires.txt /usr/lib/python3.11/site-packages/sympy-1.13.3-py3.11.egg-info/top_level.txt /usr/lib/python3.11/site-packages/sympy/__init__.py /usr/lib/python3.11/site-packages/sympy/__pycache__ /usr/lib/python3.11/site-packages/sympy/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/abc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/abc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/conftest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/conftest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/galgebra.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/galgebra.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/release.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/release.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/this.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/__pycache__/this.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/abc.py /usr/lib/python3.11/site-packages/sympy/algebras /usr/lib/python3.11/site-packages/sympy/algebras/__init__.py /usr/lib/python3.11/site-packages/sympy/algebras/__pycache__ /usr/lib/python3.11/site-packages/sympy/algebras/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/algebras/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/algebras/__pycache__/quaternion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/algebras/__pycache__/quaternion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/algebras/quaternion.py /usr/lib/python3.11/site-packages/sympy/algebras/tests /usr/lib/python3.11/site-packages/sympy/algebras/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/algebras/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/algebras/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/algebras/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/algebras/tests/__pycache__/test_quaternion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/algebras/tests/__pycache__/test_quaternion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/algebras/tests/test_quaternion.py /usr/lib/python3.11/site-packages/sympy/assumptions /usr/lib/python3.11/site-packages/sympy/assumptions/__init__.py /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__ /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/ask.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/ask.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/ask_generated.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/ask_generated.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/assume.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/assume.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/cnf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/cnf.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/facts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/facts.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/lra_satask.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/lra_satask.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/refine.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/refine.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/satask.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/satask.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/sathandlers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/sathandlers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/wrapper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/__pycache__/wrapper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/ask.py /usr/lib/python3.11/site-packages/sympy/assumptions/ask_generated.py /usr/lib/python3.11/site-packages/sympy/assumptions/assume.py /usr/lib/python3.11/site-packages/sympy/assumptions/cnf.py /usr/lib/python3.11/site-packages/sympy/assumptions/facts.py /usr/lib/python3.11/site-packages/sympy/assumptions/handlers /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__init__.py /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__ /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/calculus.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/calculus.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/common.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/common.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/ntheory.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/ntheory.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/order.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/order.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/sets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/__pycache__/sets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/calculus.py /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/common.py /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/matrices.py /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/ntheory.py /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/order.py /usr/lib/python3.11/site-packages/sympy/assumptions/handlers/sets.py /usr/lib/python3.11/site-packages/sympy/assumptions/lra_satask.py /usr/lib/python3.11/site-packages/sympy/assumptions/predicates /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__init__.py /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__ /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/calculus.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/calculus.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/common.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/common.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/ntheory.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/ntheory.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/order.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/order.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/sets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/__pycache__/sets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/calculus.py /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/common.py /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/matrices.py /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/ntheory.py /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/order.py /usr/lib/python3.11/site-packages/sympy/assumptions/predicates/sets.py /usr/lib/python3.11/site-packages/sympy/assumptions/refine.py /usr/lib/python3.11/site-packages/sympy/assumptions/relation /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__init__.py /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__pycache__ /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__pycache__/binrel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__pycache__/binrel.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__pycache__/equality.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/relation/__pycache__/equality.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/relation/binrel.py /usr/lib/python3.11/site-packages/sympy/assumptions/relation/equality.py /usr/lib/python3.11/site-packages/sympy/assumptions/satask.py /usr/lib/python3.11/site-packages/sympy/assumptions/sathandlers.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_assumptions_2.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_assumptions_2.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_context.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_context.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_query.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_query.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_refine.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_refine.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_rel_queries.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_rel_queries.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_satask.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_satask.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_sathandlers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_sathandlers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_wrapper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/__pycache__/test_wrapper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_assumptions_2.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_context.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_matrices.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_query.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_refine.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_rel_queries.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_satask.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_sathandlers.py /usr/lib/python3.11/site-packages/sympy/assumptions/tests/test_wrapper.py /usr/lib/python3.11/site-packages/sympy/assumptions/wrapper.py /usr/lib/python3.11/site-packages/sympy/benchmarks /usr/lib/python3.11/site-packages/sympy/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/bench_discrete_log.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/bench_discrete_log.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/bench_meijerint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/bench_meijerint.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/bench_symbench.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/__pycache__/bench_symbench.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/benchmarks/bench_discrete_log.py /usr/lib/python3.11/site-packages/sympy/benchmarks/bench_meijerint.py /usr/lib/python3.11/site-packages/sympy/benchmarks/bench_symbench.py /usr/lib/python3.11/site-packages/sympy/calculus /usr/lib/python3.11/site-packages/sympy/calculus/__init__.py /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__ /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/accumulationbounds.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/accumulationbounds.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/euler.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/euler.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/finite_diff.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/finite_diff.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/singularities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/singularities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/accumulationbounds.py /usr/lib/python3.11/site-packages/sympy/calculus/euler.py /usr/lib/python3.11/site-packages/sympy/calculus/finite_diff.py /usr/lib/python3.11/site-packages/sympy/calculus/singularities.py /usr/lib/python3.11/site-packages/sympy/calculus/tests /usr/lib/python3.11/site-packages/sympy/calculus/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_accumulationbounds.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_accumulationbounds.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_euler.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_euler.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_finite_diff.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_finite_diff.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_singularities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_singularities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/__pycache__/test_util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/calculus/tests/test_accumulationbounds.py /usr/lib/python3.11/site-packages/sympy/calculus/tests/test_euler.py /usr/lib/python3.11/site-packages/sympy/calculus/tests/test_finite_diff.py /usr/lib/python3.11/site-packages/sympy/calculus/tests/test_singularities.py /usr/lib/python3.11/site-packages/sympy/calculus/tests/test_util.py /usr/lib/python3.11/site-packages/sympy/calculus/util.py /usr/lib/python3.11/site-packages/sympy/categories /usr/lib/python3.11/site-packages/sympy/categories/__init__.py /usr/lib/python3.11/site-packages/sympy/categories/__pycache__ /usr/lib/python3.11/site-packages/sympy/categories/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/categories/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/categories/__pycache__/baseclasses.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/categories/__pycache__/baseclasses.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/categories/__pycache__/diagram_drawing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/categories/__pycache__/diagram_drawing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/categories/baseclasses.py /usr/lib/python3.11/site-packages/sympy/categories/diagram_drawing.py /usr/lib/python3.11/site-packages/sympy/categories/tests /usr/lib/python3.11/site-packages/sympy/categories/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/categories/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/categories/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/categories/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/categories/tests/__pycache__/test_baseclasses.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/categories/tests/__pycache__/test_baseclasses.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/categories/tests/__pycache__/test_drawing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/categories/tests/__pycache__/test_drawing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/categories/tests/test_baseclasses.py /usr/lib/python3.11/site-packages/sympy/categories/tests/test_drawing.py /usr/lib/python3.11/site-packages/sympy/codegen /usr/lib/python3.11/site-packages/sympy/codegen/__init__.py /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__ /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/abstract_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/abstract_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/algorithms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/algorithms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/approximations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/approximations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/ast.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/ast.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cfunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cfunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cnodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cnodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cxxnodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/cxxnodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/fnodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/fnodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/futils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/futils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/matrix_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/matrix_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/numpy_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/numpy_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/pynodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/pynodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/pyutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/pyutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/rewriting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/rewriting.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/scipy_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/__pycache__/scipy_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/abstract_nodes.py /usr/lib/python3.11/site-packages/sympy/codegen/algorithms.py /usr/lib/python3.11/site-packages/sympy/codegen/approximations.py /usr/lib/python3.11/site-packages/sympy/codegen/ast.py /usr/lib/python3.11/site-packages/sympy/codegen/cfunctions.py /usr/lib/python3.11/site-packages/sympy/codegen/cnodes.py /usr/lib/python3.11/site-packages/sympy/codegen/cutils.py /usr/lib/python3.11/site-packages/sympy/codegen/cxxnodes.py /usr/lib/python3.11/site-packages/sympy/codegen/fnodes.py /usr/lib/python3.11/site-packages/sympy/codegen/futils.py /usr/lib/python3.11/site-packages/sympy/codegen/matrix_nodes.py /usr/lib/python3.11/site-packages/sympy/codegen/numpy_nodes.py /usr/lib/python3.11/site-packages/sympy/codegen/pynodes.py /usr/lib/python3.11/site-packages/sympy/codegen/pyutils.py /usr/lib/python3.11/site-packages/sympy/codegen/rewriting.py /usr/lib/python3.11/site-packages/sympy/codegen/scipy_nodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests /usr/lib/python3.11/site-packages/sympy/codegen/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_abstract_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_abstract_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_algorithms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_algorithms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_applications.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_applications.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_approximations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_approximations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_ast.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_ast.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_cfunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_cfunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_cnodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_cnodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_cxxnodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_cxxnodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_fnodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_fnodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_matrix_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_matrix_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_numpy_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_numpy_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_pynodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_pynodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_pyutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_pyutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_rewriting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_rewriting.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_scipy_nodes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/__pycache__/test_scipy_nodes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_abstract_nodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_algorithms.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_applications.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_approximations.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_ast.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_cfunctions.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_cnodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_cxxnodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_fnodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_matrix_nodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_numpy_nodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_pynodes.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_pyutils.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_rewriting.py /usr/lib/python3.11/site-packages/sympy/codegen/tests/test_scipy_nodes.py /usr/lib/python3.11/site-packages/sympy/combinatorics /usr/lib/python3.11/site-packages/sympy/combinatorics/__init__.py /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__ /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/coset_table.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/coset_table.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/fp_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/fp_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/free_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/free_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/galois.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/galois.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/generators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/generators.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/graycode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/graycode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/group_constructs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/group_constructs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/group_numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/group_numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/homomorphisms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/homomorphisms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/named_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/named_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/partitions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/partitions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/pc_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/pc_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/perm_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/perm_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/permutations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/permutations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/polyhedron.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/polyhedron.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/prufer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/prufer.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/rewritingsystem.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/rewritingsystem.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/rewritingsystem_fsm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/rewritingsystem_fsm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/schur_number.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/schur_number.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/subsets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/subsets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/tensor_can.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/tensor_can.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/testutil.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/testutil.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/coset_table.py /usr/lib/python3.11/site-packages/sympy/combinatorics/fp_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/free_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/galois.py /usr/lib/python3.11/site-packages/sympy/combinatorics/generators.py /usr/lib/python3.11/site-packages/sympy/combinatorics/graycode.py /usr/lib/python3.11/site-packages/sympy/combinatorics/group_constructs.py /usr/lib/python3.11/site-packages/sympy/combinatorics/group_numbers.py /usr/lib/python3.11/site-packages/sympy/combinatorics/homomorphisms.py /usr/lib/python3.11/site-packages/sympy/combinatorics/named_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/partitions.py /usr/lib/python3.11/site-packages/sympy/combinatorics/pc_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/perm_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/permutations.py /usr/lib/python3.11/site-packages/sympy/combinatorics/polyhedron.py /usr/lib/python3.11/site-packages/sympy/combinatorics/prufer.py /usr/lib/python3.11/site-packages/sympy/combinatorics/rewritingsystem.py /usr/lib/python3.11/site-packages/sympy/combinatorics/rewritingsystem_fsm.py /usr/lib/python3.11/site-packages/sympy/combinatorics/schur_number.py /usr/lib/python3.11/site-packages/sympy/combinatorics/subsets.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tensor_can.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_coset_table.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_coset_table.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_fp_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_fp_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_free_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_free_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_galois.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_galois.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_generators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_generators.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_graycode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_graycode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_group_constructs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_group_constructs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_group_numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_group_numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_homomorphisms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_homomorphisms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_named_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_named_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_partitions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_partitions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_pc_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_pc_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_perm_groups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_perm_groups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_permutations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_permutations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_polyhedron.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_polyhedron.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_prufer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_prufer.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_rewriting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_rewriting.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_schur_number.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_schur_number.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_subsets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_subsets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_tensor_can.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_tensor_can.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_testutil.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_testutil.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/__pycache__/test_util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_coset_table.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_fp_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_free_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_galois.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_generators.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_graycode.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_group_constructs.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_group_numbers.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_homomorphisms.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_named_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_partitions.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_pc_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_perm_groups.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_permutations.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_polyhedron.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_prufer.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_rewriting.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_schur_number.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_subsets.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_tensor_can.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_testutil.py /usr/lib/python3.11/site-packages/sympy/combinatorics/tests/test_util.py /usr/lib/python3.11/site-packages/sympy/combinatorics/testutil.py /usr/lib/python3.11/site-packages/sympy/combinatorics/util.py /usr/lib/python3.11/site-packages/sympy/concrete /usr/lib/python3.11/site-packages/sympy/concrete/__init__.py /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__ /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/delta.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/delta.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/expr_with_intlimits.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/expr_with_intlimits.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/expr_with_limits.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/expr_with_limits.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/gosper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/gosper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/guess.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/guess.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/products.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/products.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/summations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/__pycache__/summations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/delta.py /usr/lib/python3.11/site-packages/sympy/concrete/expr_with_intlimits.py /usr/lib/python3.11/site-packages/sympy/concrete/expr_with_limits.py /usr/lib/python3.11/site-packages/sympy/concrete/gosper.py /usr/lib/python3.11/site-packages/sympy/concrete/guess.py /usr/lib/python3.11/site-packages/sympy/concrete/products.py /usr/lib/python3.11/site-packages/sympy/concrete/summations.py /usr/lib/python3.11/site-packages/sympy/concrete/tests /usr/lib/python3.11/site-packages/sympy/concrete/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_delta.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_delta.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_gosper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_gosper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_guess.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_guess.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_products.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_products.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_sums_products.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/__pycache__/test_sums_products.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/concrete/tests/test_delta.py /usr/lib/python3.11/site-packages/sympy/concrete/tests/test_gosper.py /usr/lib/python3.11/site-packages/sympy/concrete/tests/test_guess.py /usr/lib/python3.11/site-packages/sympy/concrete/tests/test_products.py /usr/lib/python3.11/site-packages/sympy/concrete/tests/test_sums_products.py /usr/lib/python3.11/site-packages/sympy/conftest.py /usr/lib/python3.11/site-packages/sympy/core /usr/lib/python3.11/site-packages/sympy/core/__init__.py /usr/lib/python3.11/site-packages/sympy/core/__pycache__ /usr/lib/python3.11/site-packages/sympy/core/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/_print_helpers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/_print_helpers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/add.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/add.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/alphabets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/alphabets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/assumptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/assumptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/assumptions_generated.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/assumptions_generated.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/backend.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/backend.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/basic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/basic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/cache.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/cache.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/compatibility.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/compatibility.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/containers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/containers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/coreerrors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/coreerrors.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/decorators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/decorators.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/evalf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/evalf.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/expr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/expr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/exprtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/exprtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/facts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/facts.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/function.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/function.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/intfunc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/intfunc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/kind.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/kind.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/logic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/logic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/mod.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/mod.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/mul.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/mul.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/multidimensional.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/multidimensional.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/operations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/operations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/parameters.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/parameters.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/power.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/power.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/random.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/random.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/relational.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/relational.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/rules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/rules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/singleton.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/singleton.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/sorting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/sorting.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/symbol.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/symbol.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/sympify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/sympify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/trace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/trace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/traversal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/__pycache__/traversal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/_print_helpers.py /usr/lib/python3.11/site-packages/sympy/core/add.py /usr/lib/python3.11/site-packages/sympy/core/alphabets.py /usr/lib/python3.11/site-packages/sympy/core/assumptions.py /usr/lib/python3.11/site-packages/sympy/core/assumptions_generated.py /usr/lib/python3.11/site-packages/sympy/core/backend.py /usr/lib/python3.11/site-packages/sympy/core/basic.py /usr/lib/python3.11/site-packages/sympy/core/benchmarks /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_arit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_arit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_assumptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_assumptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_basic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_basic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_expand.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_expand.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_sympify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/__pycache__/bench_sympify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/benchmarks/bench_arit.py /usr/lib/python3.11/site-packages/sympy/core/benchmarks/bench_assumptions.py /usr/lib/python3.11/site-packages/sympy/core/benchmarks/bench_basic.py /usr/lib/python3.11/site-packages/sympy/core/benchmarks/bench_expand.py /usr/lib/python3.11/site-packages/sympy/core/benchmarks/bench_numbers.py /usr/lib/python3.11/site-packages/sympy/core/benchmarks/bench_sympify.py /usr/lib/python3.11/site-packages/sympy/core/cache.py /usr/lib/python3.11/site-packages/sympy/core/compatibility.py /usr/lib/python3.11/site-packages/sympy/core/containers.py /usr/lib/python3.11/site-packages/sympy/core/core.py /usr/lib/python3.11/site-packages/sympy/core/coreerrors.py /usr/lib/python3.11/site-packages/sympy/core/decorators.py /usr/lib/python3.11/site-packages/sympy/core/evalf.py /usr/lib/python3.11/site-packages/sympy/core/expr.py /usr/lib/python3.11/site-packages/sympy/core/exprtools.py /usr/lib/python3.11/site-packages/sympy/core/facts.py /usr/lib/python3.11/site-packages/sympy/core/function.py /usr/lib/python3.11/site-packages/sympy/core/intfunc.py /usr/lib/python3.11/site-packages/sympy/core/kind.py /usr/lib/python3.11/site-packages/sympy/core/logic.py /usr/lib/python3.11/site-packages/sympy/core/mod.py /usr/lib/python3.11/site-packages/sympy/core/mul.py /usr/lib/python3.11/site-packages/sympy/core/multidimensional.py /usr/lib/python3.11/site-packages/sympy/core/numbers.py /usr/lib/python3.11/site-packages/sympy/core/operations.py /usr/lib/python3.11/site-packages/sympy/core/parameters.py /usr/lib/python3.11/site-packages/sympy/core/power.py /usr/lib/python3.11/site-packages/sympy/core/random.py /usr/lib/python3.11/site-packages/sympy/core/relational.py /usr/lib/python3.11/site-packages/sympy/core/rules.py /usr/lib/python3.11/site-packages/sympy/core/singleton.py /usr/lib/python3.11/site-packages/sympy/core/sorting.py /usr/lib/python3.11/site-packages/sympy/core/symbol.py /usr/lib/python3.11/site-packages/sympy/core/sympify.py /usr/lib/python3.11/site-packages/sympy/core/tests /usr/lib/python3.11/site-packages/sympy/core/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_args.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_args.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_arit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_arit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_assumptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_assumptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_basic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_basic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_cache.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_cache.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_compatibility.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_compatibility.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_complex.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_complex.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_constructor_postprocessor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_constructor_postprocessor.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_containers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_containers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_count_ops.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_count_ops.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_diff.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_diff.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_equal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_equal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_eval.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_eval.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_evalf.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_evalf.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_expand.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_expand.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_expr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_expr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_exprtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_exprtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_facts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_facts.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_function.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_function.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_kind.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_kind.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_logic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_logic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_match.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_match.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_multidimensional.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_multidimensional.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_noncommutative.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_noncommutative.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_operations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_operations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_parameters.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_parameters.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_power.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_power.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_priority.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_priority.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_random.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_random.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_relational.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_relational.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_rules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_rules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_singleton.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_singleton.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_sorting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_sorting.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_subs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_subs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_symbol.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_symbol.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_sympify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_sympify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_traversal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_traversal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_truediv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_truediv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_var.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/__pycache__/test_var.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/core/tests/test_args.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_arit.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_assumptions.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_basic.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_cache.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_compatibility.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_complex.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_constructor_postprocessor.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_containers.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_count_ops.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_diff.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_equal.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_eval.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_evalf.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_expand.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_expr.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_exprtools.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_facts.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_function.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_kind.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_logic.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_match.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_multidimensional.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_noncommutative.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_numbers.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_operations.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_parameters.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_power.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_priority.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_random.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_relational.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_rules.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_singleton.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_sorting.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_subs.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_symbol.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_sympify.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_traversal.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_truediv.py /usr/lib/python3.11/site-packages/sympy/core/tests/test_var.py /usr/lib/python3.11/site-packages/sympy/core/trace.py /usr/lib/python3.11/site-packages/sympy/core/traversal.py /usr/lib/python3.11/site-packages/sympy/crypto /usr/lib/python3.11/site-packages/sympy/crypto/__init__.py /usr/lib/python3.11/site-packages/sympy/crypto/__pycache__ /usr/lib/python3.11/site-packages/sympy/crypto/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/crypto/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/crypto/__pycache__/crypto.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/crypto/__pycache__/crypto.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/crypto/crypto.py /usr/lib/python3.11/site-packages/sympy/crypto/tests /usr/lib/python3.11/site-packages/sympy/crypto/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/crypto/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/crypto/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/crypto/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/crypto/tests/__pycache__/test_crypto.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/crypto/tests/__pycache__/test_crypto.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/crypto/tests/test_crypto.py /usr/lib/python3.11/site-packages/sympy/diffgeom /usr/lib/python3.11/site-packages/sympy/diffgeom/__init__.py /usr/lib/python3.11/site-packages/sympy/diffgeom/__pycache__ /usr/lib/python3.11/site-packages/sympy/diffgeom/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/__pycache__/diffgeom.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/__pycache__/diffgeom.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/__pycache__/rn.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/__pycache__/rn.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/diffgeom.py /usr/lib/python3.11/site-packages/sympy/diffgeom/rn.py /usr/lib/python3.11/site-packages/sympy/diffgeom/tests /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_class_structure.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_class_structure.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_diffgeom.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_diffgeom.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_function_diffgeom_book.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_function_diffgeom_book.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_hyperbolic_space.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/__pycache__/test_hyperbolic_space.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/test_class_structure.py /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/test_diffgeom.py /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/test_function_diffgeom_book.py /usr/lib/python3.11/site-packages/sympy/diffgeom/tests/test_hyperbolic_space.py /usr/lib/python3.11/site-packages/sympy/discrete /usr/lib/python3.11/site-packages/sympy/discrete/__init__.py /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__ /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/convolutions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/convolutions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/recurrences.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/recurrences.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/transforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/__pycache__/transforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/convolutions.py /usr/lib/python3.11/site-packages/sympy/discrete/recurrences.py /usr/lib/python3.11/site-packages/sympy/discrete/tests /usr/lib/python3.11/site-packages/sympy/discrete/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/test_convolutions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/test_convolutions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/test_recurrences.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/test_recurrences.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/test_transforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/__pycache__/test_transforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/discrete/tests/test_convolutions.py /usr/lib/python3.11/site-packages/sympy/discrete/tests/test_recurrences.py /usr/lib/python3.11/site-packages/sympy/discrete/tests/test_transforms.py /usr/lib/python3.11/site-packages/sympy/discrete/transforms.py /usr/lib/python3.11/site-packages/sympy/external /usr/lib/python3.11/site-packages/sympy/external/__init__.py /usr/lib/python3.11/site-packages/sympy/external/__pycache__ /usr/lib/python3.11/site-packages/sympy/external/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/gmpy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/gmpy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/importtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/importtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/ntheory.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/ntheory.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/pythonmpq.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/__pycache__/pythonmpq.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/gmpy.py /usr/lib/python3.11/site-packages/sympy/external/importtools.py /usr/lib/python3.11/site-packages/sympy/external/ntheory.py /usr/lib/python3.11/site-packages/sympy/external/pythonmpq.py /usr/lib/python3.11/site-packages/sympy/external/tests /usr/lib/python3.11/site-packages/sympy/external/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_autowrap.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_autowrap.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_codegen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_codegen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_gmpy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_gmpy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_importtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_importtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_ntheory.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_ntheory.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_numpy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_numpy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_pythonmpq.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_pythonmpq.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_scipy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/__pycache__/test_scipy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/external/tests/test_autowrap.py /usr/lib/python3.11/site-packages/sympy/external/tests/test_codegen.py /usr/lib/python3.11/site-packages/sympy/external/tests/test_gmpy.py /usr/lib/python3.11/site-packages/sympy/external/tests/test_importtools.py /usr/lib/python3.11/site-packages/sympy/external/tests/test_ntheory.py /usr/lib/python3.11/site-packages/sympy/external/tests/test_numpy.py /usr/lib/python3.11/site-packages/sympy/external/tests/test_pythonmpq.py /usr/lib/python3.11/site-packages/sympy/external/tests/test_scipy.py /usr/lib/python3.11/site-packages/sympy/functions /usr/lib/python3.11/site-packages/sympy/functions/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__pycache__/factorials.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__pycache__/factorials.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__pycache__/numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/__pycache__/numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/factorials.py /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/numbers.py /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__pycache__/test_comb_factorials.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__pycache__/test_comb_factorials.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__pycache__/test_comb_numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/__pycache__/test_comb_numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/test_comb_factorials.py /usr/lib/python3.11/site-packages/sympy/functions/combinatorial/tests/test_comb_numbers.py /usr/lib/python3.11/site-packages/sympy/functions/elementary /usr/lib/python3.11/site-packages/sympy/functions/elementary/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/_trigonometric_special.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/_trigonometric_special.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/complexes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/complexes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/exponential.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/exponential.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/hyperbolic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/hyperbolic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/integers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/integers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/miscellaneous.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/miscellaneous.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/piecewise.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/piecewise.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/trigonometric.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/__pycache__/trigonometric.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/_trigonometric_special.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks/__pycache__/bench_exp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks/__pycache__/bench_exp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/benchmarks/bench_exp.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/complexes.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/exponential.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/hyperbolic.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/integers.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/miscellaneous.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/piecewise.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_complexes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_complexes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_exponential.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_exponential.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_hyperbolic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_hyperbolic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_integers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_integers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_interface.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_interface.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_miscellaneous.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_miscellaneous.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_piecewise.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_piecewise.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_trigonometric.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/__pycache__/test_trigonometric.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_complexes.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_exponential.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_hyperbolic.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_integers.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_interface.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_miscellaneous.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_piecewise.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/tests/test_trigonometric.py /usr/lib/python3.11/site-packages/sympy/functions/elementary/trigonometric.py /usr/lib/python3.11/site-packages/sympy/functions/special /usr/lib/python3.11/site-packages/sympy/functions/special/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/bessel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/bessel.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/beta_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/beta_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/bsplines.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/bsplines.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/delta_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/delta_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/elliptic_integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/elliptic_integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/error_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/error_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/gamma_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/gamma_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/hyper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/hyper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/mathieu_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/mathieu_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/polynomials.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/polynomials.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/singularity_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/singularity_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/spherical_harmonics.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/spherical_harmonics.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/tensor_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/tensor_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/zeta_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/__pycache__/zeta_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks/__pycache__/bench_special.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks/__pycache__/bench_special.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/benchmarks/bench_special.py /usr/lib/python3.11/site-packages/sympy/functions/special/bessel.py /usr/lib/python3.11/site-packages/sympy/functions/special/beta_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/bsplines.py /usr/lib/python3.11/site-packages/sympy/functions/special/delta_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/elliptic_integrals.py /usr/lib/python3.11/site-packages/sympy/functions/special/error_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/gamma_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/hyper.py /usr/lib/python3.11/site-packages/sympy/functions/special/mathieu_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/polynomials.py /usr/lib/python3.11/site-packages/sympy/functions/special/singularity_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/spherical_harmonics.py /usr/lib/python3.11/site-packages/sympy/functions/special/tensor_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_bessel.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_bessel.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_beta_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_beta_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_bsplines.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_bsplines.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_delta_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_delta_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_elliptic_integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_elliptic_integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_error_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_error_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_gamma_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_gamma_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_hyper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_hyper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_mathieu.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_mathieu.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_singularity_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_singularity_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_spec_polynomials.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_spec_polynomials.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_spherical_harmonics.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_spherical_harmonics.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_tensor_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_tensor_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_zeta_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/__pycache__/test_zeta_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_bessel.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_beta_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_bsplines.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_delta_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_elliptic_integrals.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_error_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_gamma_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_hyper.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_mathieu.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_singularity_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_spec_polynomials.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_spherical_harmonics.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_tensor_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/tests/test_zeta_functions.py /usr/lib/python3.11/site-packages/sympy/functions/special/zeta_functions.py /usr/lib/python3.11/site-packages/sympy/galgebra.py /usr/lib/python3.11/site-packages/sympy/geometry /usr/lib/python3.11/site-packages/sympy/geometry/__init__.py /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__ /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/curve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/curve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/ellipse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/ellipse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/entity.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/entity.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/line.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/line.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/parabola.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/parabola.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/plane.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/plane.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/point.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/point.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/polygon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/polygon.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/curve.py /usr/lib/python3.11/site-packages/sympy/geometry/ellipse.py /usr/lib/python3.11/site-packages/sympy/geometry/entity.py /usr/lib/python3.11/site-packages/sympy/geometry/exceptions.py /usr/lib/python3.11/site-packages/sympy/geometry/line.py /usr/lib/python3.11/site-packages/sympy/geometry/parabola.py /usr/lib/python3.11/site-packages/sympy/geometry/plane.py /usr/lib/python3.11/site-packages/sympy/geometry/point.py /usr/lib/python3.11/site-packages/sympy/geometry/polygon.py /usr/lib/python3.11/site-packages/sympy/geometry/tests /usr/lib/python3.11/site-packages/sympy/geometry/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_curve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_curve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_ellipse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_ellipse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_entity.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_entity.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_geometrysets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_geometrysets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_line.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_line.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_parabola.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_parabola.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_plane.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_plane.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_point.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_point.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_polygon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_polygon.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/__pycache__/test_util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_curve.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_ellipse.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_entity.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_geometrysets.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_line.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_parabola.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_plane.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_point.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_polygon.py /usr/lib/python3.11/site-packages/sympy/geometry/tests/test_util.py /usr/lib/python3.11/site-packages/sympy/geometry/util.py /usr/lib/python3.11/site-packages/sympy/holonomic /usr/lib/python3.11/site-packages/sympy/holonomic/__init__.py /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__ /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/holonomic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/holonomic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/holonomicerrors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/holonomicerrors.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/numerical.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/numerical.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/recurrence.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/__pycache__/recurrence.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/holonomic.py /usr/lib/python3.11/site-packages/sympy/holonomic/holonomicerrors.py /usr/lib/python3.11/site-packages/sympy/holonomic/numerical.py /usr/lib/python3.11/site-packages/sympy/holonomic/recurrence.py /usr/lib/python3.11/site-packages/sympy/holonomic/tests /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__pycache__/test_holonomic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__pycache__/test_holonomic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__pycache__/test_recurrence.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/tests/__pycache__/test_recurrence.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/holonomic/tests/test_holonomic.py /usr/lib/python3.11/site-packages/sympy/holonomic/tests/test_recurrence.py /usr/lib/python3.11/site-packages/sympy/integrals /usr/lib/python3.11/site-packages/sympy/integrals/__init__.py /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__ /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/deltafunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/deltafunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/heurisch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/heurisch.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/intpoly.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/intpoly.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/laplace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/laplace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/manualintegrate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/manualintegrate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/meijerint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/meijerint.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/meijerint_doc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/meijerint_doc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/prde.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/prde.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/quadrature.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/quadrature.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/rationaltools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/rationaltools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/rde.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/rde.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/risch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/risch.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/singularityfunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/singularityfunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/transforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/transforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/trigonometry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/__pycache__/trigonometry.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__pycache__/bench_integrate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__pycache__/bench_integrate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__pycache__/bench_trigintegrate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/__pycache__/bench_trigintegrate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/bench_integrate.py /usr/lib/python3.11/site-packages/sympy/integrals/benchmarks/bench_trigintegrate.py /usr/lib/python3.11/site-packages/sympy/integrals/deltafunctions.py /usr/lib/python3.11/site-packages/sympy/integrals/heurisch.py /usr/lib/python3.11/site-packages/sympy/integrals/integrals.py /usr/lib/python3.11/site-packages/sympy/integrals/intpoly.py /usr/lib/python3.11/site-packages/sympy/integrals/laplace.py /usr/lib/python3.11/site-packages/sympy/integrals/manualintegrate.py /usr/lib/python3.11/site-packages/sympy/integrals/meijerint.py /usr/lib/python3.11/site-packages/sympy/integrals/meijerint_doc.py /usr/lib/python3.11/site-packages/sympy/integrals/prde.py /usr/lib/python3.11/site-packages/sympy/integrals/quadrature.py /usr/lib/python3.11/site-packages/sympy/integrals/rationaltools.py /usr/lib/python3.11/site-packages/sympy/integrals/rde.py /usr/lib/python3.11/site-packages/sympy/integrals/risch.py /usr/lib/python3.11/site-packages/sympy/integrals/singularityfunctions.py /usr/lib/python3.11/site-packages/sympy/integrals/tests /usr/lib/python3.11/site-packages/sympy/integrals/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_deltafunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_deltafunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_failing_integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_failing_integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_heurisch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_heurisch.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_intpoly.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_intpoly.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_laplace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_laplace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_lineintegrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_lineintegrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_manual.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_manual.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_meijerint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_meijerint.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_prde.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_prde.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_quadrature.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_quadrature.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_rationaltools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_rationaltools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_rde.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_rde.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_risch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_risch.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_singularityfunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_singularityfunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_transforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_transforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_trigonometry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/__pycache__/test_trigonometry.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_deltafunctions.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_failing_integrals.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_heurisch.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_integrals.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_intpoly.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_laplace.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_lineintegrals.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_manual.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_meijerint.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_prde.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_quadrature.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_rationaltools.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_rde.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_risch.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_singularityfunctions.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_transforms.py /usr/lib/python3.11/site-packages/sympy/integrals/tests/test_trigonometry.py /usr/lib/python3.11/site-packages/sympy/integrals/transforms.py /usr/lib/python3.11/site-packages/sympy/integrals/trigonometry.py /usr/lib/python3.11/site-packages/sympy/interactive /usr/lib/python3.11/site-packages/sympy/interactive/__init__.py /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__ /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/printing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/printing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/session.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/session.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/traversal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/interactive/__pycache__/traversal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/interactive/printing.py /usr/lib/python3.11/site-packages/sympy/interactive/session.py /usr/lib/python3.11/site-packages/sympy/interactive/tests /usr/lib/python3.11/site-packages/sympy/interactive/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/interactive/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/interactive/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/interactive/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/interactive/tests/__pycache__/test_interactive.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/interactive/tests/__pycache__/test_interactive.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/interactive/tests/__pycache__/test_ipython.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/interactive/tests/__pycache__/test_ipython.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/interactive/tests/test_interactive.py /usr/lib/python3.11/site-packages/sympy/interactive/tests/test_ipython.py /usr/lib/python3.11/site-packages/sympy/interactive/traversal.py /usr/lib/python3.11/site-packages/sympy/liealgebras /usr/lib/python3.11/site-packages/sympy/liealgebras/__init__.py /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__ /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/cartan_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/cartan_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/cartan_type.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/cartan_type.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/dynkin_diagram.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/dynkin_diagram.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/root_system.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/root_system.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_a.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_a.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_b.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_b.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_c.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_c.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_d.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_d.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_e.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_e.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_f.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_f.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_g.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/type_g.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/weyl_group.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/__pycache__/weyl_group.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/cartan_matrix.py /usr/lib/python3.11/site-packages/sympy/liealgebras/cartan_type.py /usr/lib/python3.11/site-packages/sympy/liealgebras/dynkin_diagram.py /usr/lib/python3.11/site-packages/sympy/liealgebras/root_system.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_cartan_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_cartan_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_cartan_type.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_cartan_type.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_dynkin_diagram.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_dynkin_diagram.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_root_system.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_root_system.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_A.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_A.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_B.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_B.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_C.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_C.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_D.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_D.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_E.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_E.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_F.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_F.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_G.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_type_G.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_weyl_group.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/__pycache__/test_weyl_group.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_cartan_matrix.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_cartan_type.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_dynkin_diagram.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_root_system.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_type_A.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_type_B.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_type_C.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_type_D.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_type_E.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_type_F.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_type_G.py /usr/lib/python3.11/site-packages/sympy/liealgebras/tests/test_weyl_group.py /usr/lib/python3.11/site-packages/sympy/liealgebras/type_a.py /usr/lib/python3.11/site-packages/sympy/liealgebras/type_b.py /usr/lib/python3.11/site-packages/sympy/liealgebras/type_c.py /usr/lib/python3.11/site-packages/sympy/liealgebras/type_d.py /usr/lib/python3.11/site-packages/sympy/liealgebras/type_e.py /usr/lib/python3.11/site-packages/sympy/liealgebras/type_f.py /usr/lib/python3.11/site-packages/sympy/liealgebras/type_g.py /usr/lib/python3.11/site-packages/sympy/liealgebras/weyl_group.py /usr/lib/python3.11/site-packages/sympy/logic /usr/lib/python3.11/site-packages/sympy/logic/__init__.py /usr/lib/python3.11/site-packages/sympy/logic/__pycache__ /usr/lib/python3.11/site-packages/sympy/logic/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/__pycache__/boolalg.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/__pycache__/boolalg.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/__pycache__/inference.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/__pycache__/inference.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__init__.py /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__ /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/dpll.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/dpll.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/dpll2.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/dpll2.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/lra_theory.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/lra_theory.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/minisat22_wrapper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/minisat22_wrapper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/pycosat_wrapper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/pycosat_wrapper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/z3_wrapper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/__pycache__/z3_wrapper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/algorithms/dpll.py /usr/lib/python3.11/site-packages/sympy/logic/algorithms/dpll2.py /usr/lib/python3.11/site-packages/sympy/logic/algorithms/lra_theory.py /usr/lib/python3.11/site-packages/sympy/logic/algorithms/minisat22_wrapper.py /usr/lib/python3.11/site-packages/sympy/logic/algorithms/pycosat_wrapper.py /usr/lib/python3.11/site-packages/sympy/logic/algorithms/z3_wrapper.py /usr/lib/python3.11/site-packages/sympy/logic/boolalg.py /usr/lib/python3.11/site-packages/sympy/logic/inference.py /usr/lib/python3.11/site-packages/sympy/logic/tests /usr/lib/python3.11/site-packages/sympy/logic/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_boolalg.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_boolalg.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_dimacs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_dimacs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_inference.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_inference.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_lra_theory.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/__pycache__/test_lra_theory.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/tests/test_boolalg.py /usr/lib/python3.11/site-packages/sympy/logic/tests/test_dimacs.py /usr/lib/python3.11/site-packages/sympy/logic/tests/test_inference.py /usr/lib/python3.11/site-packages/sympy/logic/tests/test_lra_theory.py /usr/lib/python3.11/site-packages/sympy/logic/utilities /usr/lib/python3.11/site-packages/sympy/logic/utilities/__init__.py /usr/lib/python3.11/site-packages/sympy/logic/utilities/__pycache__ /usr/lib/python3.11/site-packages/sympy/logic/utilities/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/utilities/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/utilities/__pycache__/dimacs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/logic/utilities/__pycache__/dimacs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/logic/utilities/dimacs.py /usr/lib/python3.11/site-packages/sympy/matrices /usr/lib/python3.11/site-packages/sympy/matrices/__init__.py /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__ /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/common.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/common.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/decompositions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/decompositions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/dense.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/dense.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/determinant.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/determinant.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/eigen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/eigen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/graph.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/graph.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/immutable.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/immutable.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/inverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/inverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/kind.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/kind.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/matrixbase.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/matrixbase.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/normalforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/normalforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/reductions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/reductions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/repmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/repmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/sparse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/sparse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/sparsetools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/sparsetools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/subspaces.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/subspaces.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/utilities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/__pycache__/utilities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks/__pycache__/bench_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks/__pycache__/bench_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/benchmarks/bench_matrix.py /usr/lib/python3.11/site-packages/sympy/matrices/common.py /usr/lib/python3.11/site-packages/sympy/matrices/decompositions.py /usr/lib/python3.11/site-packages/sympy/matrices/dense.py /usr/lib/python3.11/site-packages/sympy/matrices/determinant.py /usr/lib/python3.11/site-packages/sympy/matrices/eigen.py /usr/lib/python3.11/site-packages/sympy/matrices/exceptions.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__init__.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__ /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/_shape.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/_shape.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/adjoint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/adjoint.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/applyfunc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/applyfunc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/blockmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/blockmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/companion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/companion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/determinant.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/determinant.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/diagonal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/diagonal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/dotproduct.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/dotproduct.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/factorizations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/factorizations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/fourier.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/fourier.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/funcmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/funcmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/hadamard.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/hadamard.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/inverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/inverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/kronecker.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/kronecker.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matadd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matadd.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matexpr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matexpr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matmul.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matmul.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matpow.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/matpow.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/permutation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/permutation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/sets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/sets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/slice.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/slice.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/special.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/special.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/trace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/trace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/transpose.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/__pycache__/transpose.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/_shape.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/adjoint.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/applyfunc.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/blockmatrix.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/companion.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/determinant.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/diagonal.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/dotproduct.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/factorizations.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/fourier.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/funcmatrix.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/hadamard.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/inverse.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/kronecker.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/matadd.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/matexpr.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/matmul.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/matpow.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/permutation.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/sets.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/slice.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/special.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_adjoint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_adjoint.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_applyfunc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_applyfunc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_blockmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_blockmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_companion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_companion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_derivatives.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_derivatives.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_determinant.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_determinant.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_diagonal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_diagonal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_dotproduct.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_dotproduct.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_factorizations.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_factorizations.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_fourier.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_fourier.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_funcmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_funcmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_hadamard.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_hadamard.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_indexing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_indexing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_inverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_inverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_kronecker.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_kronecker.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matadd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matadd.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matexpr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matexpr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matmul.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matmul.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matpow.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matpow.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_permutation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_permutation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_sets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_sets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_slice.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_slice.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_special.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_special.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_trace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_trace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_transpose.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/__pycache__/test_transpose.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_adjoint.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_applyfunc.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_blockmatrix.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_companion.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_derivatives.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_determinant.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_diagonal.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_dotproduct.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_factorizations.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_fourier.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_funcmatrix.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_hadamard.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_indexing.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_inverse.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_kronecker.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_matadd.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_matexpr.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_matmul.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_matpow.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_permutation.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_sets.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_slice.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_special.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_trace.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/tests/test_transpose.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/trace.py /usr/lib/python3.11/site-packages/sympy/matrices/expressions/transpose.py /usr/lib/python3.11/site-packages/sympy/matrices/graph.py /usr/lib/python3.11/site-packages/sympy/matrices/immutable.py /usr/lib/python3.11/site-packages/sympy/matrices/inverse.py /usr/lib/python3.11/site-packages/sympy/matrices/kind.py /usr/lib/python3.11/site-packages/sympy/matrices/matrices.py /usr/lib/python3.11/site-packages/sympy/matrices/matrixbase.py /usr/lib/python3.11/site-packages/sympy/matrices/normalforms.py /usr/lib/python3.11/site-packages/sympy/matrices/reductions.py /usr/lib/python3.11/site-packages/sympy/matrices/repmatrix.py /usr/lib/python3.11/site-packages/sympy/matrices/solvers.py /usr/lib/python3.11/site-packages/sympy/matrices/sparse.py /usr/lib/python3.11/site-packages/sympy/matrices/sparsetools.py /usr/lib/python3.11/site-packages/sympy/matrices/subspaces.py /usr/lib/python3.11/site-packages/sympy/matrices/tests /usr/lib/python3.11/site-packages/sympy/matrices/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_commonmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_commonmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_decompositions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_decompositions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_determinant.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_determinant.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_domains.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_domains.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_eigen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_eigen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_graph.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_graph.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_immutable.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_immutable.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_interactions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_interactions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_matrixbase.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_matrixbase.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_normalforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_normalforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_reductions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_reductions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_repmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_repmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_sparse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_sparse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_sparsetools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_sparsetools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_subspaces.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/__pycache__/test_subspaces.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_commonmatrix.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_decompositions.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_determinant.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_domains.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_eigen.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_graph.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_immutable.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_interactions.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_matrices.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_matrixbase.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_normalforms.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_reductions.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_repmatrix.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_solvers.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_sparse.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_sparsetools.py /usr/lib/python3.11/site-packages/sympy/matrices/tests/test_subspaces.py /usr/lib/python3.11/site-packages/sympy/matrices/utilities.py /usr/lib/python3.11/site-packages/sympy/multipledispatch /usr/lib/python3.11/site-packages/sympy/multipledispatch/__init__.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__ /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/conflict.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/conflict.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/dispatcher.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/dispatcher.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/conflict.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/core.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/dispatcher.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/test_conflict.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/test_conflict.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/test_core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/test_core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/test_dispatcher.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/__pycache__/test_dispatcher.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/test_conflict.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/test_core.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/tests/test_dispatcher.py /usr/lib/python3.11/site-packages/sympy/multipledispatch/utils.py /usr/lib/python3.11/site-packages/sympy/ntheory /usr/lib/python3.11/site-packages/sympy/ntheory/__init__.py /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__ /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/bbp_pi.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/bbp_pi.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/continued_fraction.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/continued_fraction.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/digits.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/digits.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/ecm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/ecm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/egyptian_fraction.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/egyptian_fraction.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/elliptic_curve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/elliptic_curve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/factor_.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/factor_.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/generate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/generate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/modular.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/modular.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/multinomial.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/multinomial.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/partitions_.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/partitions_.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/primetest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/primetest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/qs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/qs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/residue_ntheory.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/__pycache__/residue_ntheory.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/bbp_pi.py /usr/lib/python3.11/site-packages/sympy/ntheory/continued_fraction.py /usr/lib/python3.11/site-packages/sympy/ntheory/digits.py /usr/lib/python3.11/site-packages/sympy/ntheory/ecm.py /usr/lib/python3.11/site-packages/sympy/ntheory/egyptian_fraction.py /usr/lib/python3.11/site-packages/sympy/ntheory/elliptic_curve.py /usr/lib/python3.11/site-packages/sympy/ntheory/factor_.py /usr/lib/python3.11/site-packages/sympy/ntheory/generate.py /usr/lib/python3.11/site-packages/sympy/ntheory/modular.py /usr/lib/python3.11/site-packages/sympy/ntheory/multinomial.py /usr/lib/python3.11/site-packages/sympy/ntheory/partitions_.py /usr/lib/python3.11/site-packages/sympy/ntheory/primetest.py /usr/lib/python3.11/site-packages/sympy/ntheory/qs.py /usr/lib/python3.11/site-packages/sympy/ntheory/residue_ntheory.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_bbp_pi.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_bbp_pi.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_continued_fraction.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_continued_fraction.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_digits.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_digits.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_ecm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_ecm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_egyptian_fraction.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_egyptian_fraction.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_elliptic_curve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_elliptic_curve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_factor_.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_factor_.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_generate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_generate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_hypothesis.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_hypothesis.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_modular.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_modular.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_multinomial.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_multinomial.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_partitions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_partitions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_primetest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_primetest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_qs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_qs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_residue.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/__pycache__/test_residue.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_bbp_pi.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_continued_fraction.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_digits.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_ecm.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_egyptian_fraction.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_elliptic_curve.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_factor_.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_generate.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_hypothesis.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_modular.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_multinomial.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_partitions.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_primetest.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_qs.py /usr/lib/python3.11/site-packages/sympy/ntheory/tests/test_residue.py /usr/lib/python3.11/site-packages/sympy/parsing /usr/lib/python3.11/site-packages/sympy/parsing/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/ast_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/ast_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/mathematica.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/mathematica.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/maxima.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/maxima.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/sym_expr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/sym_expr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/sympy_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/__pycache__/sympy_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/ast_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev /usr/lib/python3.11/site-packages/sympy/parsing/autolev/Autolev.g4 /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/_build_autolev_antlr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/_build_autolev_antlr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/_listener_autolev_antlr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/_listener_autolev_antlr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/_parse_autolev_antlr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/__pycache__/_parse_autolev_antlr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/autolevlexer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/autolevlexer.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/autolevlistener.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/autolevlistener.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/autolevparser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/__pycache__/autolevparser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/autolevlexer.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/autolevlistener.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_antlr/autolevparser.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_build_autolev_antlr.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_listener_autolev_antlr.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/_parse_autolev_antlr.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/README.txt /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest1.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest1.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest10.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest10.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest11.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest11.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest12.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest12.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest2.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest2.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest3.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest3.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest4.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest4.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest5.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest5.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest6.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest6.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest7.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest7.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest8.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest8.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest9.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/__pycache__/ruletest9.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/chaos_pendulum.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/chaos_pendulum.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/double_pendulum.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/double_pendulum.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/mass_spring_damper.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/mass_spring_damper.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/non_min_pendulum.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/__pycache__/non_min_pendulum.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest1.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest1.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest10.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest10.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest11.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest11.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest12.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest12.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest2.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest2.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest3.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest3.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest4.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest4.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest5.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest5.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest6.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest6.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest7.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest7.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest8.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest8.py /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest9.al /usr/lib/python3.11/site-packages/sympy/parsing/autolev/test-examples/ruletest9.py /usr/lib/python3.11/site-packages/sympy/parsing/c /usr/lib/python3.11/site-packages/sympy/parsing/c/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/c/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/c/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/c/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/c/__pycache__/c_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/c/__pycache__/c_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/c/c_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/fortran /usr/lib/python3.11/site-packages/sympy/parsing/fortran/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/fortran/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/fortran/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/fortran/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/fortran/__pycache__/fortran_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/fortran/__pycache__/fortran_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/fortran/fortran_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/latex /usr/lib/python3.11/site-packages/sympy/parsing/latex/LICENSE.txt /usr/lib/python3.11/site-packages/sympy/parsing/latex/LaTeX.g4 /usr/lib/python3.11/site-packages/sympy/parsing/latex/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/_build_latex_antlr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/_build_latex_antlr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/_parse_latex_antlr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/_parse_latex_antlr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/errors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/__pycache__/errors.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__pycache__/latexlexer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__pycache__/latexlexer.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__pycache__/latexparser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/__pycache__/latexparser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/latexlexer.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/_antlr/latexparser.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/_build_latex_antlr.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/_parse_latex_antlr.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/errors.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__pycache__/latex_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__pycache__/latex_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__pycache__/transformer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/__pycache__/transformer.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/grammar /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/grammar/greek_symbols.lark /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/grammar/latex.lark /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/latex_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/latex/lark/transformer.py /usr/lib/python3.11/site-packages/sympy/parsing/mathematica.py /usr/lib/python3.11/site-packages/sympy/parsing/maxima.py /usr/lib/python3.11/site-packages/sympy/parsing/sym_expr.py /usr/lib/python3.11/site-packages/sympy/parsing/sympy_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/tests /usr/lib/python3.11/site-packages/sympy/parsing/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_ast_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_ast_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_autolev.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_autolev.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_c_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_c_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_custom_latex.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_custom_latex.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_fortran_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_fortran_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_implicit_multiplication_application.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_implicit_multiplication_application.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_latex.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_latex.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_latex_deps.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_latex_deps.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_latex_lark.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_latex_lark.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_mathematica.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_mathematica.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_maxima.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_maxima.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_sym_expr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_sym_expr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_sympy_parser.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/__pycache__/test_sympy_parser.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_ast_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_autolev.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_c_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_custom_latex.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_fortran_parser.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_implicit_multiplication_application.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_latex.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_latex_deps.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_latex_lark.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_mathematica.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_maxima.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_sym_expr.py /usr/lib/python3.11/site-packages/sympy/parsing/tests/test_sympy_parser.py /usr/lib/python3.11/site-packages/sympy/physics /usr/lib/python3.11/site-packages/sympy/physics/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/hydrogen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/hydrogen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/paulialgebra.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/paulialgebra.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/pring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/pring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/qho_1d.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/qho_1d.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/secondquant.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/secondquant.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/sho.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/sho.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/wigner.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/__pycache__/wigner.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/_mixin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/_mixin.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/activation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/activation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/curve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/curve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/musculotendon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/__pycache__/musculotendon.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/_mixin.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/activation.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/curve.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/musculotendon.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_activation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_activation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_curve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_curve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_mixin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_mixin.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_musculotendon.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/__pycache__/test_musculotendon.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/test_activation.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/test_curve.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/test_mixin.py /usr/lib/python3.11/site-packages/sympy/physics/biomechanics/tests/test_musculotendon.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/beam.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/beam.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/cable.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/cable.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/truss.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/__pycache__/truss.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/beam.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/cable.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/test_beam.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/test_beam.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/test_cable.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/test_cable.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/test_truss.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/__pycache__/test_truss.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/test_beam.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/test_cable.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/tests/test_truss.py /usr/lib/python3.11/site-packages/sympy/physics/continuum_mechanics/truss.py /usr/lib/python3.11/site-packages/sympy/physics/control /usr/lib/python3.11/site-packages/sympy/physics/control/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/control/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/control/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/__pycache__/control_plots.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/__pycache__/control_plots.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/__pycache__/lti.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/__pycache__/lti.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/control_plots.py /usr/lib/python3.11/site-packages/sympy/physics/control/lti.py /usr/lib/python3.11/site-packages/sympy/physics/control/tests /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__pycache__/test_control_plots.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__pycache__/test_control_plots.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__pycache__/test_lti.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/tests/__pycache__/test_lti.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/control/tests/test_control_plots.py /usr/lib/python3.11/site-packages/sympy/physics/control/tests/test_lti.py /usr/lib/python3.11/site-packages/sympy/physics/hep /usr/lib/python3.11/site-packages/sympy/physics/hep/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/hep/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/hep/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/__pycache__/gamma_matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/__pycache__/gamma_matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/gamma_matrices.py /usr/lib/python3.11/site-packages/sympy/physics/hep/tests /usr/lib/python3.11/site-packages/sympy/physics/hep/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/hep/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/hep/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/tests/__pycache__/test_gamma_matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/tests/__pycache__/test_gamma_matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/hep/tests/test_gamma_matrices.py /usr/lib/python3.11/site-packages/sympy/physics/hydrogen.py /usr/lib/python3.11/site-packages/sympy/physics/matrices.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/actuator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/actuator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/body.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/body.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/body_base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/body_base.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/inertia.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/inertia.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/joint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/joint.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/jointsmethod.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/jointsmethod.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/kane.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/kane.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/lagrange.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/lagrange.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/linearize.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/linearize.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/loads.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/loads.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/method.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/method.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/models.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/models.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/particle.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/particle.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/pathway.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/pathway.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/rigidbody.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/rigidbody.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/system.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/system.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/wrapping_geometry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/__pycache__/wrapping_geometry.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/actuator.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/body.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/body_base.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/functions.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/inertia.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/joint.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/jointsmethod.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/kane.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/lagrange.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/linearize.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/loads.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/method.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/models.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/particle.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/pathway.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/rigidbody.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/system.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_actuator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_actuator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_body.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_body.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_inertia.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_inertia.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_joint.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_joint.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_jointsmethod.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_jointsmethod.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane2.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane2.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane3.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane3.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane4.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane4.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane5.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane5.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_lagrange.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_lagrange.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_lagrange2.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_lagrange2.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_linearize.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_linearize.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_loads.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_loads.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_method.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_method.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_models.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_models.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_particle.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_particle.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_pathway.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_pathway.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_rigidbody.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_rigidbody.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_system.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_system.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_system_class.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_system_class.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_wrapping_geometry.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/__pycache__/test_wrapping_geometry.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_actuator.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_body.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_functions.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_inertia.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_joint.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_jointsmethod.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_kane.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_kane2.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_kane3.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_kane4.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_kane5.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_lagrange.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_lagrange2.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_linearize.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_loads.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_method.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_models.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_particle.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_pathway.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_rigidbody.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_system.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_system_class.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/tests/test_wrapping_geometry.py /usr/lib/python3.11/site-packages/sympy/physics/mechanics/wrapping_geometry.py /usr/lib/python3.11/site-packages/sympy/physics/optics /usr/lib/python3.11/site-packages/sympy/physics/optics/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/gaussopt.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/gaussopt.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/medium.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/medium.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/polarization.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/polarization.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/waves.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/__pycache__/waves.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/gaussopt.py /usr/lib/python3.11/site-packages/sympy/physics/optics/medium.py /usr/lib/python3.11/site-packages/sympy/physics/optics/polarization.py /usr/lib/python3.11/site-packages/sympy/physics/optics/tests /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_gaussopt.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_gaussopt.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_medium.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_medium.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_polarization.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_polarization.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_utils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_waves.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/__pycache__/test_waves.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/test_gaussopt.py /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/test_medium.py /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/test_polarization.py /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/test_utils.py /usr/lib/python3.11/site-packages/sympy/physics/optics/tests/test_waves.py /usr/lib/python3.11/site-packages/sympy/physics/optics/utils.py /usr/lib/python3.11/site-packages/sympy/physics/optics/waves.py /usr/lib/python3.11/site-packages/sympy/physics/paulialgebra.py /usr/lib/python3.11/site-packages/sympy/physics/pring.py /usr/lib/python3.11/site-packages/sympy/physics/qho_1d.py /usr/lib/python3.11/site-packages/sympy/physics/quantum /usr/lib/python3.11/site-packages/sympy/physics/quantum/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/anticommutator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/anticommutator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/boson.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/boson.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/cartesian.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/cartesian.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/cg.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/cg.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/circuitplot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/circuitplot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/circuitutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/circuitutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/commutator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/commutator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/constants.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/constants.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/dagger.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/dagger.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/density.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/density.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/fermion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/fermion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/gate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/gate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/grover.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/grover.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/hilbert.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/hilbert.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/identitysearch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/identitysearch.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/innerproduct.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/innerproduct.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/matrixcache.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/matrixcache.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/matrixutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/matrixutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/operator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/operator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/operatorordering.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/operatorordering.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/operatorset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/operatorset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/pauli.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/pauli.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/piab.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/piab.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qapply.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qapply.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qasm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qasm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qexpr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qexpr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qft.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qft.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qubit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/qubit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/represent.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/represent.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/sho1d.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/sho1d.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/shor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/shor.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/spin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/spin.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/state.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/state.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/tensorproduct.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/tensorproduct.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/trace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/__pycache__/trace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/anticommutator.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/boson.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/cartesian.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/cg.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/circuitplot.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/circuitutils.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/commutator.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/constants.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/dagger.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/density.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/fermion.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/gate.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/grover.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/hilbert.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/identitysearch.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/innerproduct.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/matrixcache.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/matrixutils.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/operator.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/operatorordering.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/operatorset.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/pauli.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/piab.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/qapply.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/qasm.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/qexpr.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/qft.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/qubit.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/represent.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/sho1d.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/shor.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/spin.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/state.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tensorproduct.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_anticommutator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_anticommutator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_boson.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_boson.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_cartesian.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_cartesian.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_cg.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_cg.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_circuitplot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_circuitplot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_circuitutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_circuitutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_commutator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_commutator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_constants.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_constants.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_dagger.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_dagger.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_density.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_density.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_fermion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_fermion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_gate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_gate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_grover.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_grover.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_hilbert.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_hilbert.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_identitysearch.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_identitysearch.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_innerproduct.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_innerproduct.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_matrixutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_matrixutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_operator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_operator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_operatorordering.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_operatorordering.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_operatorset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_operatorset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_pauli.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_pauli.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_piab.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_piab.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_printing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_printing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qapply.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qapply.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qasm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qasm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qexpr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qexpr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qft.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qft.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qubit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_qubit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_represent.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_represent.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_sho1d.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_sho1d.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_shor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_shor.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_spin.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_spin.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_state.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_state.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_tensorproduct.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_tensorproduct.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_trace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/__pycache__/test_trace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_anticommutator.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_boson.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_cartesian.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_cg.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_circuitplot.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_circuitutils.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_commutator.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_constants.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_dagger.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_density.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_fermion.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_gate.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_grover.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_hilbert.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_identitysearch.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_innerproduct.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_matrixutils.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_operator.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_operatorordering.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_operatorset.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_pauli.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_piab.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_printing.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_qapply.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_qasm.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_qexpr.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_qft.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_qubit.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_represent.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_sho1d.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_shor.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_spin.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_state.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_tensorproduct.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/tests/test_trace.py /usr/lib/python3.11/site-packages/sympy/physics/quantum/trace.py /usr/lib/python3.11/site-packages/sympy/physics/secondquant.py /usr/lib/python3.11/site-packages/sympy/physics/sho.py /usr/lib/python3.11/site-packages/sympy/physics/tests /usr/lib/python3.11/site-packages/sympy/physics/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_clebsch_gordan.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_clebsch_gordan.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_hydrogen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_hydrogen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_paulialgebra.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_paulialgebra.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_physics_matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_physics_matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_pring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_pring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_qho_1d.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_qho_1d.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_secondquant.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_secondquant.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_sho.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/__pycache__/test_sho.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/tests/test_clebsch_gordan.py /usr/lib/python3.11/site-packages/sympy/physics/tests/test_hydrogen.py /usr/lib/python3.11/site-packages/sympy/physics/tests/test_paulialgebra.py /usr/lib/python3.11/site-packages/sympy/physics/tests/test_physics_matrices.py /usr/lib/python3.11/site-packages/sympy/physics/tests/test_pring.py /usr/lib/python3.11/site-packages/sympy/physics/tests/test_qho_1d.py /usr/lib/python3.11/site-packages/sympy/physics/tests/test_secondquant.py /usr/lib/python3.11/site-packages/sympy/physics/tests/test_sho.py /usr/lib/python3.11/site-packages/sympy/physics/units /usr/lib/python3.11/site-packages/sympy/physics/units/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/dimensions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/dimensions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/prefixes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/prefixes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/quantities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/quantities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/unitsystem.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/unitsystem.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/definitions /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__pycache__/dimension_definitions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__pycache__/dimension_definitions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__pycache__/unit_definitions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/__pycache__/unit_definitions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/dimension_definitions.py /usr/lib/python3.11/site-packages/sympy/physics/units/definitions/unit_definitions.py /usr/lib/python3.11/site-packages/sympy/physics/units/dimensions.py /usr/lib/python3.11/site-packages/sympy/physics/units/prefixes.py /usr/lib/python3.11/site-packages/sympy/physics/units/quantities.py /usr/lib/python3.11/site-packages/sympy/physics/units/systems /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/cgs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/cgs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/length_weight_time.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/length_weight_time.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/mks.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/mks.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/mksa.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/mksa.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/natural.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/natural.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/si.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/__pycache__/si.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/systems/cgs.py /usr/lib/python3.11/site-packages/sympy/physics/units/systems/length_weight_time.py /usr/lib/python3.11/site-packages/sympy/physics/units/systems/mks.py /usr/lib/python3.11/site-packages/sympy/physics/units/systems/mksa.py /usr/lib/python3.11/site-packages/sympy/physics/units/systems/natural.py /usr/lib/python3.11/site-packages/sympy/physics/units/systems/si.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_dimensions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_dimensions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_dimensionsystem.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_dimensionsystem.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_prefixes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_prefixes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_quantities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_quantities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_unit_system_cgs_gauss.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_unit_system_cgs_gauss.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_unitsystem.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_unitsystem.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/__pycache__/test_util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/units/tests/test_dimensions.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests/test_dimensionsystem.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests/test_prefixes.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests/test_quantities.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests/test_unit_system_cgs_gauss.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests/test_unitsystem.py /usr/lib/python3.11/site-packages/sympy/physics/units/tests/test_util.py /usr/lib/python3.11/site-packages/sympy/physics/units/unitsystem.py /usr/lib/python3.11/site-packages/sympy/physics/units/util.py /usr/lib/python3.11/site-packages/sympy/physics/vector /usr/lib/python3.11/site-packages/sympy/physics/vector/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/dyadic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/dyadic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/fieldfunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/fieldfunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/frame.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/frame.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/point.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/point.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/printing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/printing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/vector.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/__pycache__/vector.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/dyadic.py /usr/lib/python3.11/site-packages/sympy/physics/vector/fieldfunctions.py /usr/lib/python3.11/site-packages/sympy/physics/vector/frame.py /usr/lib/python3.11/site-packages/sympy/physics/vector/functions.py /usr/lib/python3.11/site-packages/sympy/physics/vector/point.py /usr/lib/python3.11/site-packages/sympy/physics/vector/printing.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_dyadic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_dyadic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_fieldfunctions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_fieldfunctions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_frame.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_frame.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_output.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_output.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_point.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_point.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_printing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_printing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_vector.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/__pycache__/test_vector.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_dyadic.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_fieldfunctions.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_frame.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_functions.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_output.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_point.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_printing.py /usr/lib/python3.11/site-packages/sympy/physics/vector/tests/test_vector.py /usr/lib/python3.11/site-packages/sympy/physics/vector/vector.py /usr/lib/python3.11/site-packages/sympy/physics/wigner.py /usr/lib/python3.11/site-packages/sympy/plotting /usr/lib/python3.11/site-packages/sympy/plotting/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/experimental_lambdify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/experimental_lambdify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/plot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/plot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/plot_implicit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/plot_implicit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/plotgrid.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/plotgrid.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/series.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/series.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/textplot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/textplot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends /usr/lib/python3.11/site-packages/sympy/plotting/backends/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/backends/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/backends/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/__pycache__/base_backend.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/__pycache__/base_backend.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/base_backend.py /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend/__pycache__/matplotlib.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend/__pycache__/matplotlib.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/matplotlibbackend/matplotlib.py /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend/__pycache__/text.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend/__pycache__/text.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/backends/textbackend/text.py /usr/lib/python3.11/site-packages/sympy/plotting/experimental_lambdify.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/interval_arithmetic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/interval_arithmetic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/interval_membership.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/interval_membership.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/lib_interval.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/__pycache__/lib_interval.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/interval_arithmetic.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/interval_membership.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/lib_interval.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_interval_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_interval_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_interval_membership.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_interval_membership.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_intervalmath.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_intervalmath.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/test_interval_functions.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/test_interval_membership.py /usr/lib/python3.11/site-packages/sympy/plotting/intervalmath/tests/test_intervalmath.py /usr/lib/python3.11/site-packages/sympy/plotting/plot.py /usr/lib/python3.11/site-packages/sympy/plotting/plot_implicit.py /usr/lib/python3.11/site-packages/sympy/plotting/plotgrid.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/color_scheme.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/color_scheme.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/managed_window.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/managed_window.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_axes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_axes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_camera.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_camera.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_controller.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_controller.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_curve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_curve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_interval.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_interval.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_mode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_mode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_mode_base.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_mode_base.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_modes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_modes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_object.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_object.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_rotation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_rotation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_surface.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_surface.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_window.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/plot_window.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/color_scheme.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/managed_window.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_axes.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_camera.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_controller.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_curve.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_interval.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_mode.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_mode_base.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_modes.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_object.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_rotation.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_surface.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/plot_window.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests/__pycache__/test_plotting.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests/__pycache__/test_plotting.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/tests/test_plotting.py /usr/lib/python3.11/site-packages/sympy/plotting/pygletplot/util.py /usr/lib/python3.11/site-packages/sympy/plotting/series.py /usr/lib/python3.11/site-packages/sympy/plotting/tests /usr/lib/python3.11/site-packages/sympy/plotting/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_experimental_lambdify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_experimental_lambdify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_plot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_plot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_plot_implicit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_plot_implicit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_series.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_series.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_textplot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_textplot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/__pycache__/test_utils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_experimental_lambdify.py /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_plot.py /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_plot_implicit.py /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_region_and.png /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_region_not.png /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_region_or.png /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_region_xor.png /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_series.py /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_textplot.py /usr/lib/python3.11/site-packages/sympy/plotting/tests/test_utils.py /usr/lib/python3.11/site-packages/sympy/plotting/textplot.py /usr/lib/python3.11/site-packages/sympy/plotting/utils.py /usr/lib/python3.11/site-packages/sympy/polys /usr/lib/python3.11/site-packages/sympy/polys/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/appellseqs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/appellseqs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/compatibility.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/compatibility.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/constructor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/constructor.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/densearith.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/densearith.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/densebasic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/densebasic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/densetools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/densetools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/dispersion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/dispersion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/distributedmodules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/distributedmodules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/domainmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/domainmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/euclidtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/euclidtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/factortools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/factortools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/fglmtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/fglmtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/fields.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/fields.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/galoistools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/galoistools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/groebnertools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/groebnertools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/heuristicgcd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/heuristicgcd.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/modulargcd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/modulargcd.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/monomials.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/monomials.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/multivariate_resultants.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/multivariate_resultants.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/orderings.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/orderings.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/orthopolys.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/orthopolys.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/partfrac.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/partfrac.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyclasses.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyclasses.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyconfig.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyconfig.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyerrors.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyerrors.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyfuncs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyfuncs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polymatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polymatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyoptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyoptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyquinticconst.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyquinticconst.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyroots.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyroots.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polytools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polytools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/polyutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rationaltools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rationaltools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/ring_series.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/ring_series.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rings.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rings.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rootisolation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rootisolation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rootoftools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/rootoftools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/specialpolys.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/specialpolys.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/sqfreetools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/sqfreetools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/subresultants_qq_zz.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/__pycache__/subresultants_qq_zz.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca /usr/lib/python3.11/site-packages/sympy/polys/agca/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/extensions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/extensions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/homomorphisms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/homomorphisms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/ideals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/ideals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/modules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/__pycache__/modules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/extensions.py /usr/lib/python3.11/site-packages/sympy/polys/agca/homomorphisms.py /usr/lib/python3.11/site-packages/sympy/polys/agca/ideals.py /usr/lib/python3.11/site-packages/sympy/polys/agca/modules.py /usr/lib/python3.11/site-packages/sympy/polys/agca/tests /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_extensions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_extensions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_homomorphisms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_homomorphisms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_ideals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_ideals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_modules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/__pycache__/test_modules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/test_extensions.py /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/test_homomorphisms.py /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/test_ideals.py /usr/lib/python3.11/site-packages/sympy/polys/agca/tests/test_modules.py /usr/lib/python3.11/site-packages/sympy/polys/appellseqs.py /usr/lib/python3.11/site-packages/sympy/polys/benchmarks /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/bench_galoispolys.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/bench_galoispolys.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/bench_groebnertools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/bench_groebnertools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/bench_solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/__pycache__/bench_solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/bench_galoispolys.py /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/bench_groebnertools.py /usr/lib/python3.11/site-packages/sympy/polys/benchmarks/bench_solvers.py /usr/lib/python3.11/site-packages/sympy/polys/compatibility.py /usr/lib/python3.11/site-packages/sympy/polys/constructor.py /usr/lib/python3.11/site-packages/sympy/polys/densearith.py /usr/lib/python3.11/site-packages/sympy/polys/densebasic.py /usr/lib/python3.11/site-packages/sympy/polys/densetools.py /usr/lib/python3.11/site-packages/sympy/polys/dispersion.py /usr/lib/python3.11/site-packages/sympy/polys/distributedmodules.py /usr/lib/python3.11/site-packages/sympy/polys/domainmatrix.py /usr/lib/python3.11/site-packages/sympy/polys/domains /usr/lib/python3.11/site-packages/sympy/polys/domains/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/algebraicfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/algebraicfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/characteristiczero.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/characteristiczero.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/complexfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/complexfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/compositedomain.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/compositedomain.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/domain.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/domain.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/domainelement.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/domainelement.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/expressiondomain.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/expressiondomain.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/expressionrawdomain.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/expressionrawdomain.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/field.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/field.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/finitefield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/finitefield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/fractionfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/fractionfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gaussiandomains.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gaussiandomains.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gmpyfinitefield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gmpyfinitefield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gmpyintegerring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gmpyintegerring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gmpyrationalfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/gmpyrationalfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/groundtypes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/groundtypes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/integerring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/integerring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/modularinteger.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/modularinteger.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/mpelements.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/mpelements.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/old_fractionfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/old_fractionfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/old_polynomialring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/old_polynomialring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/polynomialring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/polynomialring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonfinitefield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonfinitefield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonintegerring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonintegerring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonrational.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonrational.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonrationalfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/pythonrationalfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/quotientring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/quotientring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/rationalfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/rationalfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/realfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/realfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/ring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/ring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/simpledomain.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/__pycache__/simpledomain.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/algebraicfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/characteristiczero.py /usr/lib/python3.11/site-packages/sympy/polys/domains/complexfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/compositedomain.py /usr/lib/python3.11/site-packages/sympy/polys/domains/domain.py /usr/lib/python3.11/site-packages/sympy/polys/domains/domainelement.py /usr/lib/python3.11/site-packages/sympy/polys/domains/expressiondomain.py /usr/lib/python3.11/site-packages/sympy/polys/domains/expressionrawdomain.py /usr/lib/python3.11/site-packages/sympy/polys/domains/field.py /usr/lib/python3.11/site-packages/sympy/polys/domains/finitefield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/fractionfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/gaussiandomains.py /usr/lib/python3.11/site-packages/sympy/polys/domains/gmpyfinitefield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/gmpyintegerring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/gmpyrationalfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/groundtypes.py /usr/lib/python3.11/site-packages/sympy/polys/domains/integerring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/modularinteger.py /usr/lib/python3.11/site-packages/sympy/polys/domains/mpelements.py /usr/lib/python3.11/site-packages/sympy/polys/domains/old_fractionfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/old_polynomialring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/polynomialring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/pythonfinitefield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/pythonintegerring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/pythonrational.py /usr/lib/python3.11/site-packages/sympy/polys/domains/pythonrationalfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/quotientring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/rationalfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/realfield.py /usr/lib/python3.11/site-packages/sympy/polys/domains/ring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/simpledomain.py /usr/lib/python3.11/site-packages/sympy/polys/domains/tests /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/test_domains.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/test_domains.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/test_polynomialring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/test_polynomialring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/test_quotientring.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/__pycache__/test_quotientring.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/test_domains.py /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/test_polynomialring.py /usr/lib/python3.11/site-packages/sympy/polys/domains/tests/test_quotientring.py /usr/lib/python3.11/site-packages/sympy/polys/euclidtools.py /usr/lib/python3.11/site-packages/sympy/polys/factortools.py /usr/lib/python3.11/site-packages/sympy/polys/fglmtools.py /usr/lib/python3.11/site-packages/sympy/polys/fields.py /usr/lib/python3.11/site-packages/sympy/polys/galoistools.py /usr/lib/python3.11/site-packages/sympy/polys/groebnertools.py /usr/lib/python3.11/site-packages/sympy/polys/heuristicgcd.py /usr/lib/python3.11/site-packages/sympy/polys/matrices /usr/lib/python3.11/site-packages/sympy/polys/matrices/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/_dfm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/_dfm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/_typing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/_typing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/ddm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/ddm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/dense.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/dense.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/dfm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/dfm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/domainmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/domainmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/domainscalar.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/domainscalar.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/eigen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/eigen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/linsolve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/linsolve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/lll.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/lll.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/normalforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/normalforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/rref.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/rref.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/sdm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/__pycache__/sdm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/_dfm.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/_typing.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/ddm.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/dense.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/dfm.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/domainmatrix.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/domainscalar.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/eigen.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/exceptions.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/linsolve.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/lll.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/normalforms.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/rref.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/sdm.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_ddm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_ddm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_dense.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_dense.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_domainmatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_domainmatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_domainscalar.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_domainscalar.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_eigen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_eigen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_inverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_inverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_linsolve.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_linsolve.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_lll.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_lll.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_normalforms.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_normalforms.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_nullspace.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_nullspace.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_rref.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_rref.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_sdm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_sdm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_xxm.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/__pycache__/test_xxm.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_ddm.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_dense.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_domainmatrix.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_domainscalar.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_eigen.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_inverse.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_linsolve.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_lll.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_normalforms.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_nullspace.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_rref.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_sdm.py /usr/lib/python3.11/site-packages/sympy/polys/matrices/tests/test_xxm.py /usr/lib/python3.11/site-packages/sympy/polys/modulargcd.py /usr/lib/python3.11/site-packages/sympy/polys/monomials.py /usr/lib/python3.11/site-packages/sympy/polys/multivariate_resultants.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/basis.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/basis.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/galois_resolvents.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/galois_resolvents.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/galoisgroups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/galoisgroups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/minpoly.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/minpoly.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/modules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/modules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/primes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/primes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/resolvent_lookup.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/resolvent_lookup.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/subfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/subfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/utilities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/__pycache__/utilities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/basis.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/exceptions.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/galois_resolvents.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/galoisgroups.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/minpoly.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/modules.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/primes.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/resolvent_lookup.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/subfield.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_basis.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_basis.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_galoisgroups.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_galoisgroups.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_minpoly.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_minpoly.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_modules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_modules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_numbers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_numbers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_primes.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_primes.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_subfield.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_subfield.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_utilities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/__pycache__/test_utilities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_basis.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_galoisgroups.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_minpoly.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_modules.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_numbers.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_primes.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_subfield.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/tests/test_utilities.py /usr/lib/python3.11/site-packages/sympy/polys/numberfields/utilities.py /usr/lib/python3.11/site-packages/sympy/polys/orderings.py /usr/lib/python3.11/site-packages/sympy/polys/orthopolys.py /usr/lib/python3.11/site-packages/sympy/polys/partfrac.py /usr/lib/python3.11/site-packages/sympy/polys/polyclasses.py /usr/lib/python3.11/site-packages/sympy/polys/polyconfig.py /usr/lib/python3.11/site-packages/sympy/polys/polyerrors.py /usr/lib/python3.11/site-packages/sympy/polys/polyfuncs.py /usr/lib/python3.11/site-packages/sympy/polys/polymatrix.py /usr/lib/python3.11/site-packages/sympy/polys/polyoptions.py /usr/lib/python3.11/site-packages/sympy/polys/polyquinticconst.py /usr/lib/python3.11/site-packages/sympy/polys/polyroots.py /usr/lib/python3.11/site-packages/sympy/polys/polytools.py /usr/lib/python3.11/site-packages/sympy/polys/polyutils.py /usr/lib/python3.11/site-packages/sympy/polys/rationaltools.py /usr/lib/python3.11/site-packages/sympy/polys/ring_series.py /usr/lib/python3.11/site-packages/sympy/polys/rings.py /usr/lib/python3.11/site-packages/sympy/polys/rootisolation.py /usr/lib/python3.11/site-packages/sympy/polys/rootoftools.py /usr/lib/python3.11/site-packages/sympy/polys/solvers.py /usr/lib/python3.11/site-packages/sympy/polys/specialpolys.py /usr/lib/python3.11/site-packages/sympy/polys/sqfreetools.py /usr/lib/python3.11/site-packages/sympy/polys/subresultants_qq_zz.py /usr/lib/python3.11/site-packages/sympy/polys/tests /usr/lib/python3.11/site-packages/sympy/polys/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_appellseqs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_appellseqs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_constructor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_constructor.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_densearith.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_densearith.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_densebasic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_densebasic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_densetools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_densetools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_dispersion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_dispersion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_distributedmodules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_distributedmodules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_euclidtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_euclidtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_factortools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_factortools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_fields.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_fields.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_galoistools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_galoistools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_groebnertools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_groebnertools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_heuristicgcd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_heuristicgcd.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_hypothesis.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_hypothesis.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_injections.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_injections.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_modulargcd.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_modulargcd.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_monomials.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_monomials.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_multivariate_resultants.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_multivariate_resultants.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_orderings.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_orderings.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_orthopolys.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_orthopolys.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_partfrac.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_partfrac.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyclasses.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyclasses.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyfuncs.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyfuncs.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polymatrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polymatrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyoptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyoptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyroots.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyroots.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polytools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polytools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_polyutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_pythonrational.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_pythonrational.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rationaltools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rationaltools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_ring_series.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_ring_series.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rings.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rings.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rootisolation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rootisolation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rootoftools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_rootoftools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_specialpolys.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_specialpolys.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_sqfreetools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_sqfreetools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_subresultants_qq_zz.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/__pycache__/test_subresultants_qq_zz.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/polys/tests/test_appellseqs.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_constructor.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_densearith.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_densebasic.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_densetools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_dispersion.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_distributedmodules.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_euclidtools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_factortools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_fields.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_galoistools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_groebnertools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_heuristicgcd.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_hypothesis.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_injections.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_modulargcd.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_monomials.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_multivariate_resultants.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_orderings.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_orthopolys.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_partfrac.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_polyclasses.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_polyfuncs.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_polymatrix.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_polyoptions.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_polyroots.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_polytools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_polyutils.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_pythonrational.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_rationaltools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_ring_series.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_rings.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_rootisolation.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_rootoftools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_solvers.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_specialpolys.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_sqfreetools.py /usr/lib/python3.11/site-packages/sympy/polys/tests/test_subresultants_qq_zz.py /usr/lib/python3.11/site-packages/sympy/printing /usr/lib/python3.11/site-packages/sympy/printing/__init__.py /usr/lib/python3.11/site-packages/sympy/printing/__pycache__ /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/aesaracode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/aesaracode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/c.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/c.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/codeprinter.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/codeprinter.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/conventions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/conventions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/cxx.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/cxx.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/defaults.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/defaults.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/dot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/dot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/fortran.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/fortran.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/glsl.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/glsl.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/gtk.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/gtk.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/jscode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/jscode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/julia.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/julia.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/lambdarepr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/lambdarepr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/latex.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/latex.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/llvmjitcode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/llvmjitcode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/maple.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/maple.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/mathematica.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/mathematica.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/mathml.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/mathml.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/numpy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/numpy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/octave.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/octave.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/precedence.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/precedence.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/preview.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/preview.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/printer.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/printer.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/pycode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/pycode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/python.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/python.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/rcode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/rcode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/repr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/repr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/rust.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/rust.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/smtlib.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/smtlib.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/str.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/str.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/tableform.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/tableform.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/tensorflow.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/tensorflow.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/theanocode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/theanocode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/tree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/__pycache__/tree.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/aesaracode.py /usr/lib/python3.11/site-packages/sympy/printing/c.py /usr/lib/python3.11/site-packages/sympy/printing/codeprinter.py /usr/lib/python3.11/site-packages/sympy/printing/conventions.py /usr/lib/python3.11/site-packages/sympy/printing/cxx.py /usr/lib/python3.11/site-packages/sympy/printing/defaults.py /usr/lib/python3.11/site-packages/sympy/printing/dot.py /usr/lib/python3.11/site-packages/sympy/printing/fortran.py /usr/lib/python3.11/site-packages/sympy/printing/glsl.py /usr/lib/python3.11/site-packages/sympy/printing/gtk.py /usr/lib/python3.11/site-packages/sympy/printing/jscode.py /usr/lib/python3.11/site-packages/sympy/printing/julia.py /usr/lib/python3.11/site-packages/sympy/printing/lambdarepr.py /usr/lib/python3.11/site-packages/sympy/printing/latex.py /usr/lib/python3.11/site-packages/sympy/printing/llvmjitcode.py /usr/lib/python3.11/site-packages/sympy/printing/maple.py /usr/lib/python3.11/site-packages/sympy/printing/mathematica.py /usr/lib/python3.11/site-packages/sympy/printing/mathml.py /usr/lib/python3.11/site-packages/sympy/printing/numpy.py /usr/lib/python3.11/site-packages/sympy/printing/octave.py /usr/lib/python3.11/site-packages/sympy/printing/precedence.py /usr/lib/python3.11/site-packages/sympy/printing/pretty /usr/lib/python3.11/site-packages/sympy/printing/pretty/__init__.py /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__ /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/pretty.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/pretty.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/pretty_symbology.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/pretty_symbology.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/stringpict.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/__pycache__/stringpict.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/pretty.py /usr/lib/python3.11/site-packages/sympy/printing/pretty/pretty_symbology.py /usr/lib/python3.11/site-packages/sympy/printing/pretty/stringpict.py /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests/__pycache__/test_pretty.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests/__pycache__/test_pretty.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/pretty/tests/test_pretty.py /usr/lib/python3.11/site-packages/sympy/printing/preview.py /usr/lib/python3.11/site-packages/sympy/printing/printer.py /usr/lib/python3.11/site-packages/sympy/printing/pycode.py /usr/lib/python3.11/site-packages/sympy/printing/python.py /usr/lib/python3.11/site-packages/sympy/printing/rcode.py /usr/lib/python3.11/site-packages/sympy/printing/repr.py /usr/lib/python3.11/site-packages/sympy/printing/rust.py /usr/lib/python3.11/site-packages/sympy/printing/smtlib.py /usr/lib/python3.11/site-packages/sympy/printing/str.py /usr/lib/python3.11/site-packages/sympy/printing/tableform.py /usr/lib/python3.11/site-packages/sympy/printing/tensorflow.py /usr/lib/python3.11/site-packages/sympy/printing/tests /usr/lib/python3.11/site-packages/sympy/printing/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_aesaracode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_aesaracode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_c.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_c.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_codeprinter.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_codeprinter.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_conventions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_conventions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_cupy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_cupy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_cxx.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_cxx.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_dot.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_dot.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_fortran.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_fortran.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_glsl.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_glsl.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_gtk.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_gtk.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_jax.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_jax.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_jscode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_jscode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_julia.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_julia.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_lambdarepr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_lambdarepr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_latex.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_latex.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_llvmjit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_llvmjit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_maple.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_maple.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_mathematica.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_mathematica.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_mathml.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_mathml.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_numpy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_numpy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_octave.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_octave.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_precedence.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_precedence.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_preview.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_preview.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_pycode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_pycode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_python.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_python.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_rcode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_rcode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_repr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_repr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_rust.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_rust.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_smtlib.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_smtlib.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_str.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_str.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_tableform.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_tableform.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_tensorflow.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_tensorflow.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_theanocode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_theanocode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_tree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/__pycache__/test_tree.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/printing/tests/test_aesaracode.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_c.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_codeprinter.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_conventions.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_cupy.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_cxx.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_dot.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_fortran.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_glsl.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_gtk.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_jax.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_jscode.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_julia.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_lambdarepr.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_latex.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_llvmjit.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_maple.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_mathematica.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_mathml.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_numpy.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_octave.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_precedence.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_preview.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_pycode.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_python.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_rcode.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_repr.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_rust.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_smtlib.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_str.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_tableform.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_tensorflow.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_theanocode.py /usr/lib/python3.11/site-packages/sympy/printing/tests/test_tree.py /usr/lib/python3.11/site-packages/sympy/printing/theanocode.py /usr/lib/python3.11/site-packages/sympy/printing/tree.py /usr/lib/python3.11/site-packages/sympy/release.py /usr/lib/python3.11/site-packages/sympy/sandbox /usr/lib/python3.11/site-packages/sympy/sandbox/__init__.py /usr/lib/python3.11/site-packages/sympy/sandbox/__pycache__ /usr/lib/python3.11/site-packages/sympy/sandbox/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/__pycache__/indexed_integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/__pycache__/indexed_integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/indexed_integrals.py /usr/lib/python3.11/site-packages/sympy/sandbox/tests /usr/lib/python3.11/site-packages/sympy/sandbox/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/sandbox/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/sandbox/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/tests/__pycache__/test_indexed_integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/tests/__pycache__/test_indexed_integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sandbox/tests/test_indexed_integrals.py /usr/lib/python3.11/site-packages/sympy/series /usr/lib/python3.11/site-packages/sympy/series/__init__.py /usr/lib/python3.11/site-packages/sympy/series/__pycache__ /usr/lib/python3.11/site-packages/sympy/series/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/acceleration.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/acceleration.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/approximants.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/approximants.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/aseries.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/aseries.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/formal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/formal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/fourier.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/fourier.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/gruntz.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/gruntz.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/kauers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/kauers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/limits.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/limits.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/limitseq.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/limitseq.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/order.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/order.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/residues.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/residues.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/sequences.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/sequences.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/series.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/series.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/series_class.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/__pycache__/series_class.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/acceleration.py /usr/lib/python3.11/site-packages/sympy/series/approximants.py /usr/lib/python3.11/site-packages/sympy/series/aseries.py /usr/lib/python3.11/site-packages/sympy/series/benchmarks /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__pycache__/bench_limit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__pycache__/bench_limit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__pycache__/bench_order.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/benchmarks/__pycache__/bench_order.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/benchmarks/bench_limit.py /usr/lib/python3.11/site-packages/sympy/series/benchmarks/bench_order.py /usr/lib/python3.11/site-packages/sympy/series/formal.py /usr/lib/python3.11/site-packages/sympy/series/fourier.py /usr/lib/python3.11/site-packages/sympy/series/gruntz.py /usr/lib/python3.11/site-packages/sympy/series/kauers.py /usr/lib/python3.11/site-packages/sympy/series/limits.py /usr/lib/python3.11/site-packages/sympy/series/limitseq.py /usr/lib/python3.11/site-packages/sympy/series/order.py /usr/lib/python3.11/site-packages/sympy/series/residues.py /usr/lib/python3.11/site-packages/sympy/series/sequences.py /usr/lib/python3.11/site-packages/sympy/series/series.py /usr/lib/python3.11/site-packages/sympy/series/series_class.py /usr/lib/python3.11/site-packages/sympy/series/tests /usr/lib/python3.11/site-packages/sympy/series/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_approximants.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_approximants.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_aseries.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_aseries.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_demidovich.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_demidovich.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_formal.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_formal.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_fourier.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_fourier.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_gruntz.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_gruntz.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_kauers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_kauers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_limits.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_limits.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_limitseq.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_limitseq.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_lseries.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_lseries.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_nseries.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_nseries.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_order.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_order.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_residues.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_residues.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_sequences.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_sequences.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_series.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/__pycache__/test_series.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/series/tests/test_approximants.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_aseries.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_demidovich.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_formal.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_fourier.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_gruntz.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_kauers.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_limits.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_limitseq.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_lseries.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_nseries.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_order.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_residues.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_sequences.py /usr/lib/python3.11/site-packages/sympy/series/tests/test_series.py /usr/lib/python3.11/site-packages/sympy/sets /usr/lib/python3.11/site-packages/sympy/sets/__init__.py /usr/lib/python3.11/site-packages/sympy/sets/__pycache__ /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/conditionset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/conditionset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/contains.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/contains.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/fancysets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/fancysets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/ordinals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/ordinals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/powerset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/powerset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/setexpr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/setexpr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/sets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/__pycache__/sets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/conditionset.py /usr/lib/python3.11/site-packages/sympy/sets/contains.py /usr/lib/python3.11/site-packages/sympy/sets/fancysets.py /usr/lib/python3.11/site-packages/sympy/sets/handlers /usr/lib/python3.11/site-packages/sympy/sets/handlers/__init__.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__ /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/add.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/add.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/comparison.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/comparison.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/intersection.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/intersection.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/issubset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/issubset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/mul.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/mul.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/power.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/power.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/union.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/__pycache__/union.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/handlers/add.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/comparison.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/functions.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/intersection.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/issubset.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/mul.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/power.py /usr/lib/python3.11/site-packages/sympy/sets/handlers/union.py /usr/lib/python3.11/site-packages/sympy/sets/ordinals.py /usr/lib/python3.11/site-packages/sympy/sets/powerset.py /usr/lib/python3.11/site-packages/sympy/sets/setexpr.py /usr/lib/python3.11/site-packages/sympy/sets/sets.py /usr/lib/python3.11/site-packages/sympy/sets/tests /usr/lib/python3.11/site-packages/sympy/sets/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_conditionset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_conditionset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_contains.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_contains.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_fancysets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_fancysets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_ordinals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_ordinals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_powerset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_powerset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_setexpr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_setexpr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_sets.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/__pycache__/test_sets.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/sets/tests/test_conditionset.py /usr/lib/python3.11/site-packages/sympy/sets/tests/test_contains.py /usr/lib/python3.11/site-packages/sympy/sets/tests/test_fancysets.py /usr/lib/python3.11/site-packages/sympy/sets/tests/test_ordinals.py /usr/lib/python3.11/site-packages/sympy/sets/tests/test_powerset.py /usr/lib/python3.11/site-packages/sympy/sets/tests/test_setexpr.py /usr/lib/python3.11/site-packages/sympy/sets/tests/test_sets.py /usr/lib/python3.11/site-packages/sympy/simplify /usr/lib/python3.11/site-packages/sympy/simplify/__init__.py /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__ /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/combsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/combsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/cse_main.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/cse_main.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/cse_opts.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/cse_opts.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/epathtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/epathtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/fu.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/fu.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/gammasimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/gammasimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/hyperexpand.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/hyperexpand.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/hyperexpand_doc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/hyperexpand_doc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/powsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/powsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/radsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/radsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/ratsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/ratsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/simplify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/simplify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/sqrtdenest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/sqrtdenest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/traversaltools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/traversaltools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/trigsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/__pycache__/trigsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/combsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/cse_main.py /usr/lib/python3.11/site-packages/sympy/simplify/cse_opts.py /usr/lib/python3.11/site-packages/sympy/simplify/epathtools.py /usr/lib/python3.11/site-packages/sympy/simplify/fu.py /usr/lib/python3.11/site-packages/sympy/simplify/gammasimp.py /usr/lib/python3.11/site-packages/sympy/simplify/hyperexpand.py /usr/lib/python3.11/site-packages/sympy/simplify/hyperexpand_doc.py /usr/lib/python3.11/site-packages/sympy/simplify/powsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/radsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/ratsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/simplify.py /usr/lib/python3.11/site-packages/sympy/simplify/sqrtdenest.py /usr/lib/python3.11/site-packages/sympy/simplify/tests /usr/lib/python3.11/site-packages/sympy/simplify/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_combsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_combsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_cse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_cse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_epathtools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_epathtools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_fu.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_fu.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_function.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_function.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_gammasimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_gammasimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_hyperexpand.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_hyperexpand.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_powsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_powsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_radsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_radsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_ratsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_ratsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_rewrite.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_rewrite.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_simplify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_simplify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_sqrtdenest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_sqrtdenest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_trigsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/__pycache__/test_trigsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_combsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_cse.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_epathtools.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_fu.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_function.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_gammasimp.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_hyperexpand.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_powsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_radsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_ratsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_rewrite.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_simplify.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_sqrtdenest.py /usr/lib/python3.11/site-packages/sympy/simplify/tests/test_trigsimp.py /usr/lib/python3.11/site-packages/sympy/simplify/traversaltools.py /usr/lib/python3.11/site-packages/sympy/simplify/trigsimp.py /usr/lib/python3.11/site-packages/sympy/solvers /usr/lib/python3.11/site-packages/sympy/solvers/__init__.py /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__ /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/bivariate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/bivariate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/decompogen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/decompogen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/deutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/deutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/inequalities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/inequalities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/pde.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/pde.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/polysys.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/polysys.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/recurr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/recurr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/simplex.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/simplex.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/solveset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/__pycache__/solveset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks/__init__.py /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks/__pycache__ /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks/__pycache__/bench_solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks/__pycache__/bench_solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/benchmarks/bench_solvers.py /usr/lib/python3.11/site-packages/sympy/solvers/bivariate.py /usr/lib/python3.11/site-packages/sympy/solvers/decompogen.py /usr/lib/python3.11/site-packages/sympy/solvers/deutils.py /usr/lib/python3.11/site-packages/sympy/solvers/diophantine /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/__init__.py /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/__pycache__ /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/__pycache__/diophantine.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/__pycache__/diophantine.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/diophantine.py /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests/__pycache__/test_diophantine.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests/__pycache__/test_diophantine.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/diophantine/tests/test_diophantine.py /usr/lib/python3.11/site-packages/sympy/solvers/inequalities.py /usr/lib/python3.11/site-packages/sympy/solvers/ode /usr/lib/python3.11/site-packages/sympy/solvers/ode/__init__.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__ /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/hypergeometric.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/hypergeometric.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/lie_group.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/lie_group.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/nonhomogeneous.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/nonhomogeneous.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/ode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/ode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/riccati.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/riccati.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/single.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/single.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/subscheck.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/subscheck.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/systems.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/__pycache__/systems.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/hypergeometric.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/lie_group.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/nonhomogeneous.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/ode.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/riccati.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/single.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/subscheck.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/systems.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_lie_group.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_lie_group.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_ode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_ode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_riccati.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_riccati.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_single.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_single.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_subscheck.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_subscheck.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_systems.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/__pycache__/test_systems.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/test_lie_group.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/test_ode.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/test_riccati.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/test_single.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/test_subscheck.py /usr/lib/python3.11/site-packages/sympy/solvers/ode/tests/test_systems.py /usr/lib/python3.11/site-packages/sympy/solvers/pde.py /usr/lib/python3.11/site-packages/sympy/solvers/polysys.py /usr/lib/python3.11/site-packages/sympy/solvers/recurr.py /usr/lib/python3.11/site-packages/sympy/solvers/simplex.py /usr/lib/python3.11/site-packages/sympy/solvers/solvers.py /usr/lib/python3.11/site-packages/sympy/solvers/solveset.py /usr/lib/python3.11/site-packages/sympy/solvers/tests /usr/lib/python3.11/site-packages/sympy/solvers/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_constantsimp.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_constantsimp.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_decompogen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_decompogen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_inequalities.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_inequalities.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_numeric.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_numeric.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_pde.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_pde.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_polysys.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_polysys.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_recurr.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_recurr.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_simplex.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_simplex.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_solvers.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_solvers.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_solveset.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/__pycache__/test_solveset.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_constantsimp.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_decompogen.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_inequalities.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_numeric.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_pde.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_polysys.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_recurr.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_simplex.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_solvers.py /usr/lib/python3.11/site-packages/sympy/solvers/tests/test_solveset.py /usr/lib/python3.11/site-packages/sympy/stats /usr/lib/python3.11/site-packages/sympy/stats/__init__.py /usr/lib/python3.11/site-packages/sympy/stats/__pycache__ /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/compound_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/compound_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/crv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/crv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/crv_types.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/crv_types.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/drv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/drv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/drv_types.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/drv_types.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/error_prop.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/error_prop.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/frv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/frv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/frv_types.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/frv_types.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/joint_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/joint_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/joint_rv_types.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/joint_rv_types.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/matrix_distributions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/matrix_distributions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/random_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/random_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/random_matrix_models.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/random_matrix_models.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/rv_interface.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/rv_interface.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/stochastic_process.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/stochastic_process.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/stochastic_process_types.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/stochastic_process_types.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/symbolic_multivariate_probability.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/symbolic_multivariate_probability.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/symbolic_probability.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/__pycache__/symbolic_probability.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/compound_rv.py /usr/lib/python3.11/site-packages/sympy/stats/crv.py /usr/lib/python3.11/site-packages/sympy/stats/crv_types.py /usr/lib/python3.11/site-packages/sympy/stats/drv.py /usr/lib/python3.11/site-packages/sympy/stats/drv_types.py /usr/lib/python3.11/site-packages/sympy/stats/error_prop.py /usr/lib/python3.11/site-packages/sympy/stats/frv.py /usr/lib/python3.11/site-packages/sympy/stats/frv_types.py /usr/lib/python3.11/site-packages/sympy/stats/joint_rv.py /usr/lib/python3.11/site-packages/sympy/stats/joint_rv_types.py /usr/lib/python3.11/site-packages/sympy/stats/matrix_distributions.py /usr/lib/python3.11/site-packages/sympy/stats/random_matrix.py /usr/lib/python3.11/site-packages/sympy/stats/random_matrix_models.py /usr/lib/python3.11/site-packages/sympy/stats/rv.py /usr/lib/python3.11/site-packages/sympy/stats/rv_interface.py /usr/lib/python3.11/site-packages/sympy/stats/sampling /usr/lib/python3.11/site-packages/sympy/stats/sampling/__init__.py /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__ /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/sample_numpy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/sample_numpy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/sample_pymc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/sample_pymc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/sample_scipy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/__pycache__/sample_scipy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/sample_numpy.py /usr/lib/python3.11/site-packages/sympy/stats/sampling/sample_pymc.py /usr/lib/python3.11/site-packages/sympy/stats/sampling/sample_scipy.py /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/test_sample_continuous_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/test_sample_continuous_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/test_sample_discrete_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/test_sample_discrete_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/test_sample_finite_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/__pycache__/test_sample_finite_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/test_sample_continuous_rv.py /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/test_sample_discrete_rv.py /usr/lib/python3.11/site-packages/sympy/stats/sampling/tests/test_sample_finite_rv.py /usr/lib/python3.11/site-packages/sympy/stats/stochastic_process.py /usr/lib/python3.11/site-packages/sympy/stats/stochastic_process_types.py /usr/lib/python3.11/site-packages/sympy/stats/symbolic_multivariate_probability.py /usr/lib/python3.11/site-packages/sympy/stats/symbolic_probability.py /usr/lib/python3.11/site-packages/sympy/stats/tests /usr/lib/python3.11/site-packages/sympy/stats/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_compound_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_compound_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_continuous_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_continuous_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_discrete_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_discrete_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_error_prop.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_error_prop.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_finite_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_finite_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_joint_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_joint_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_matrix_distributions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_matrix_distributions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_mix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_mix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_random_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_random_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_rv.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_rv.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_stochastic_process.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_stochastic_process.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_symbolic_multivariate.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_symbolic_multivariate.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_symbolic_probability.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/__pycache__/test_symbolic_probability.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/stats/tests/test_compound_rv.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_continuous_rv.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_discrete_rv.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_error_prop.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_finite_rv.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_joint_rv.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_matrix_distributions.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_mix.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_random_matrix.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_rv.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_stochastic_process.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_symbolic_multivariate.py /usr/lib/python3.11/site-packages/sympy/stats/tests/test_symbolic_probability.py /usr/lib/python3.11/site-packages/sympy/strategies /usr/lib/python3.11/site-packages/sympy/strategies/__init__.py /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__ /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/rl.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/rl.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/tools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/tools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/traverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/traverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/tree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/tree.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch /usr/lib/python3.11/site-packages/sympy/strategies/branch/__init__.py /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__ /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/tools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/tools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/traverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/__pycache__/traverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/core.py /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/test_core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/test_core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/test_tools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/test_tools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/test_traverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/__pycache__/test_traverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/test_core.py /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/test_tools.py /usr/lib/python3.11/site-packages/sympy/strategies/branch/tests/test_traverse.py /usr/lib/python3.11/site-packages/sympy/strategies/branch/tools.py /usr/lib/python3.11/site-packages/sympy/strategies/branch/traverse.py /usr/lib/python3.11/site-packages/sympy/strategies/core.py /usr/lib/python3.11/site-packages/sympy/strategies/rl.py /usr/lib/python3.11/site-packages/sympy/strategies/tests /usr/lib/python3.11/site-packages/sympy/strategies/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_rl.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_rl.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_tools.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_tools.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_traverse.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_traverse.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_tree.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/__pycache__/test_tree.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/strategies/tests/test_core.py /usr/lib/python3.11/site-packages/sympy/strategies/tests/test_rl.py /usr/lib/python3.11/site-packages/sympy/strategies/tests/test_tools.py /usr/lib/python3.11/site-packages/sympy/strategies/tests/test_traverse.py /usr/lib/python3.11/site-packages/sympy/strategies/tests/test_tree.py /usr/lib/python3.11/site-packages/sympy/strategies/tools.py /usr/lib/python3.11/site-packages/sympy/strategies/traverse.py /usr/lib/python3.11/site-packages/sympy/strategies/tree.py /usr/lib/python3.11/site-packages/sympy/strategies/util.py /usr/lib/python3.11/site-packages/sympy/tensor /usr/lib/python3.11/site-packages/sympy/tensor/__init__.py /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__ /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/index_methods.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/index_methods.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/indexed.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/indexed.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/tensor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/tensor.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/toperators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/__pycache__/toperators.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array /usr/lib/python3.11/site-packages/sympy/tensor/array/__init__.py /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__ /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/array_comprehension.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/array_comprehension.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/array_derivatives.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/array_derivatives.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/arrayop.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/arrayop.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/dense_ndim_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/dense_ndim_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/mutable_ndim_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/mutable_ndim_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/ndim_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/ndim_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/sparse_ndim_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/__pycache__/sparse_ndim_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/array_comprehension.py /usr/lib/python3.11/site-packages/sympy/tensor/array/array_derivatives.py /usr/lib/python3.11/site-packages/sympy/tensor/array/arrayop.py /usr/lib/python3.11/site-packages/sympy/tensor/array/dense_ndim_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__init__.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__ /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/array_expressions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/array_expressions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/arrayexpr_derivatives.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/arrayexpr_derivatives.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_array_to_indexed.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_array_to_indexed.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_array_to_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_array_to_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_indexed_to_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_indexed_to_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_matrix_to_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/conv_matrix_to_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_array_to_indexed.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_array_to_indexed.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_array_to_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_array_to_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_indexed_to_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_indexed_to_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_matrix_to_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/from_matrix_to_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/utils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/__pycache__/utils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/array_expressions.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/arrayexpr_derivatives.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/conv_array_to_indexed.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/conv_array_to_matrix.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/conv_indexed_to_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/conv_matrix_to_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/from_array_to_indexed.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/from_array_to_matrix.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/from_indexed_to_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/from_matrix_to_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_array_expressions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_array_expressions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_arrayexpr_derivatives.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_arrayexpr_derivatives.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_as_explicit.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_as_explicit.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_array_to_indexed.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_array_to_indexed.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_array_to_matrix.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_array_to_matrix.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_indexed_to_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_indexed_to_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_matrix_to_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_convert_matrix_to_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_deprecated_conv_modules.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/__pycache__/test_deprecated_conv_modules.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_array_expressions.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_arrayexpr_derivatives.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_as_explicit.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_convert_array_to_indexed.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_convert_array_to_matrix.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_convert_indexed_to_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_convert_matrix_to_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/tests/test_deprecated_conv_modules.py /usr/lib/python3.11/site-packages/sympy/tensor/array/expressions/utils.py /usr/lib/python3.11/site-packages/sympy/tensor/array/mutable_ndim_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/ndim_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/sparse_ndim_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_array_comprehension.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_array_comprehension.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_array_derivatives.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_array_derivatives.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_arrayop.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_arrayop.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_immutable_ndim_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_immutable_ndim_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_mutable_ndim_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_mutable_ndim_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_ndim_array.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_ndim_array.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_ndim_array_conversions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/__pycache__/test_ndim_array_conversions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/test_array_comprehension.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/test_array_derivatives.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/test_arrayop.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/test_immutable_ndim_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/test_mutable_ndim_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/test_ndim_array.py /usr/lib/python3.11/site-packages/sympy/tensor/array/tests/test_ndim_array_conversions.py /usr/lib/python3.11/site-packages/sympy/tensor/functions.py /usr/lib/python3.11/site-packages/sympy/tensor/index_methods.py /usr/lib/python3.11/site-packages/sympy/tensor/indexed.py /usr/lib/python3.11/site-packages/sympy/tensor/tensor.py /usr/lib/python3.11/site-packages/sympy/tensor/tests /usr/lib/python3.11/site-packages/sympy/tensor/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_index_methods.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_index_methods.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_indexed.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_indexed.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_printing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_printing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_tensor.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_tensor.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_tensor_element.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_tensor_element.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_tensor_operators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/__pycache__/test_tensor_operators.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/tensor/tests/test_functions.py /usr/lib/python3.11/site-packages/sympy/tensor/tests/test_index_methods.py /usr/lib/python3.11/site-packages/sympy/tensor/tests/test_indexed.py /usr/lib/python3.11/site-packages/sympy/tensor/tests/test_printing.py /usr/lib/python3.11/site-packages/sympy/tensor/tests/test_tensor.py /usr/lib/python3.11/site-packages/sympy/tensor/tests/test_tensor_element.py /usr/lib/python3.11/site-packages/sympy/tensor/tests/test_tensor_operators.py /usr/lib/python3.11/site-packages/sympy/tensor/toperators.py /usr/lib/python3.11/site-packages/sympy/testing /usr/lib/python3.11/site-packages/sympy/testing/__init__.py /usr/lib/python3.11/site-packages/sympy/testing/__pycache__ /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/matrices.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/matrices.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/pytest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/pytest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/quality_unicode.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/quality_unicode.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/randtest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/randtest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/runtests.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/runtests.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/runtests_pytest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/runtests_pytest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/tmpfiles.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/__pycache__/tmpfiles.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/matrices.py /usr/lib/python3.11/site-packages/sympy/testing/pytest.py /usr/lib/python3.11/site-packages/sympy/testing/quality_unicode.py /usr/lib/python3.11/site-packages/sympy/testing/randtest.py /usr/lib/python3.11/site-packages/sympy/testing/runtests.py /usr/lib/python3.11/site-packages/sympy/testing/runtests_pytest.py /usr/lib/python3.11/site-packages/sympy/testing/tests /usr/lib/python3.11/site-packages/sympy/testing/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/diagnose_imports.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/diagnose_imports.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_code_quality.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_code_quality.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_deprecated.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_deprecated.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_module_imports.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_module_imports.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_pytest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_pytest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_runtests_pytest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/__pycache__/test_runtests_pytest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/testing/tests/diagnose_imports.py /usr/lib/python3.11/site-packages/sympy/testing/tests/test_code_quality.py /usr/lib/python3.11/site-packages/sympy/testing/tests/test_deprecated.py /usr/lib/python3.11/site-packages/sympy/testing/tests/test_module_imports.py /usr/lib/python3.11/site-packages/sympy/testing/tests/test_pytest.py /usr/lib/python3.11/site-packages/sympy/testing/tests/test_runtests_pytest.py /usr/lib/python3.11/site-packages/sympy/testing/tmpfiles.py /usr/lib/python3.11/site-packages/sympy/this.py /usr/lib/python3.11/site-packages/sympy/unify /usr/lib/python3.11/site-packages/sympy/unify/__init__.py /usr/lib/python3.11/site-packages/sympy/unify/__pycache__ /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/core.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/core.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/rewrite.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/rewrite.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/usympy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/__pycache__/usympy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/core.py /usr/lib/python3.11/site-packages/sympy/unify/rewrite.py /usr/lib/python3.11/site-packages/sympy/unify/tests /usr/lib/python3.11/site-packages/sympy/unify/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/test_rewrite.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/test_rewrite.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/test_sympy.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/test_sympy.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/test_unify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/__pycache__/test_unify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/unify/tests/test_rewrite.py /usr/lib/python3.11/site-packages/sympy/unify/tests/test_sympy.py /usr/lib/python3.11/site-packages/sympy/unify/tests/test_unify.py /usr/lib/python3.11/site-packages/sympy/unify/usympy.py /usr/lib/python3.11/site-packages/sympy/utilities /usr/lib/python3.11/site-packages/sympy/utilities/__init__.py /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__ /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/autowrap.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/autowrap.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/codegen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/codegen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/decorator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/decorator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/enumerative.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/enumerative.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/iterables.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/iterables.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/lambdify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/lambdify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/magic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/magic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/matchpy_connector.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/matchpy_connector.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/memoization.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/memoization.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/misc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/misc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/pkgdata.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/pkgdata.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/pytest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/pytest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/randtest.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/randtest.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/runtests.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/runtests.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/source.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/source.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/timeutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/timeutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/tmpfiles.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/__pycache__/tmpfiles.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__init__.py /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__ /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/availability.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/availability.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/compilation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/compilation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/runners.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/runners.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/util.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/__pycache__/util.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/availability.py /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/compilation.py /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/runners.py /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests/__pycache__/test_compilation.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests/__pycache__/test_compilation.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/tests/test_compilation.py /usr/lib/python3.11/site-packages/sympy/utilities/_compilation/util.py /usr/lib/python3.11/site-packages/sympy/utilities/autowrap.py /usr/lib/python3.11/site-packages/sympy/utilities/codegen.py /usr/lib/python3.11/site-packages/sympy/utilities/decorator.py /usr/lib/python3.11/site-packages/sympy/utilities/enumerative.py /usr/lib/python3.11/site-packages/sympy/utilities/exceptions.py /usr/lib/python3.11/site-packages/sympy/utilities/iterables.py /usr/lib/python3.11/site-packages/sympy/utilities/lambdify.py /usr/lib/python3.11/site-packages/sympy/utilities/magic.py /usr/lib/python3.11/site-packages/sympy/utilities/matchpy_connector.py /usr/lib/python3.11/site-packages/sympy/utilities/mathml /usr/lib/python3.11/site-packages/sympy/utilities/mathml/__init__.py /usr/lib/python3.11/site-packages/sympy/utilities/mathml/__pycache__ /usr/lib/python3.11/site-packages/sympy/utilities/mathml/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/mathml/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data/__init__.py /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data/__pycache__ /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data/mmlctop.xsl /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data/mmltex.xsl /usr/lib/python3.11/site-packages/sympy/utilities/mathml/data/simple_mmlctop.xsl /usr/lib/python3.11/site-packages/sympy/utilities/memoization.py /usr/lib/python3.11/site-packages/sympy/utilities/misc.py /usr/lib/python3.11/site-packages/sympy/utilities/pkgdata.py /usr/lib/python3.11/site-packages/sympy/utilities/pytest.py /usr/lib/python3.11/site-packages/sympy/utilities/randtest.py /usr/lib/python3.11/site-packages/sympy/utilities/runtests.py /usr/lib/python3.11/site-packages/sympy/utilities/source.py /usr/lib/python3.11/site-packages/sympy/utilities/tests /usr/lib/python3.11/site-packages/sympy/utilities/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_autowrap.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_autowrap.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen_julia.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen_julia.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen_octave.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen_octave.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen_rust.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_codegen_rust.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_decorator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_decorator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_deprecated.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_deprecated.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_enumerative.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_enumerative.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_exceptions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_exceptions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_iterables.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_iterables.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_lambdify.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_lambdify.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_matchpy_connector.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_matchpy_connector.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_mathml.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_mathml.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_misc.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_misc.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_pickling.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_pickling.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_source.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_source.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_timeutils.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_timeutils.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_wester.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_wester.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_xxe.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/__pycache__/test_xxe.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_autowrap.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_codegen.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_codegen_julia.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_codegen_octave.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_codegen_rust.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_decorator.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_deprecated.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_enumerative.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_exceptions.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_iterables.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_lambdify.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_matchpy_connector.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_mathml.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_misc.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_pickling.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_source.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_timeutils.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_wester.py /usr/lib/python3.11/site-packages/sympy/utilities/tests/test_xxe.py /usr/lib/python3.11/site-packages/sympy/utilities/timeutils.py /usr/lib/python3.11/site-packages/sympy/utilities/tmpfiles.py /usr/lib/python3.11/site-packages/sympy/vector /usr/lib/python3.11/site-packages/sympy/vector/__init__.py /usr/lib/python3.11/site-packages/sympy/vector/__pycache__ /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/basisdependent.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/basisdependent.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/coordsysrect.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/coordsysrect.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/deloperator.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/deloperator.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/dyadic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/dyadic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/implicitregion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/implicitregion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/operators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/operators.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/orienters.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/orienters.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/parametricregion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/parametricregion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/point.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/point.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/scalar.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/scalar.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/vector.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/__pycache__/vector.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/basisdependent.py /usr/lib/python3.11/site-packages/sympy/vector/coordsysrect.py /usr/lib/python3.11/site-packages/sympy/vector/deloperator.py /usr/lib/python3.11/site-packages/sympy/vector/dyadic.py /usr/lib/python3.11/site-packages/sympy/vector/functions.py /usr/lib/python3.11/site-packages/sympy/vector/implicitregion.py /usr/lib/python3.11/site-packages/sympy/vector/integrals.py /usr/lib/python3.11/site-packages/sympy/vector/operators.py /usr/lib/python3.11/site-packages/sympy/vector/orienters.py /usr/lib/python3.11/site-packages/sympy/vector/parametricregion.py /usr/lib/python3.11/site-packages/sympy/vector/point.py /usr/lib/python3.11/site-packages/sympy/vector/scalar.py /usr/lib/python3.11/site-packages/sympy/vector/tests /usr/lib/python3.11/site-packages/sympy/vector/tests/__init__.py /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__ /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/__init__.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/__init__.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_coordsysrect.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_coordsysrect.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_dyadic.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_dyadic.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_field_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_field_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_functions.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_functions.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_implicitregion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_implicitregion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_integrals.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_integrals.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_operators.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_operators.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_parametricregion.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_parametricregion.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_printing.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_printing.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_vector.cpython-311.opt-1.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/__pycache__/test_vector.cpython-311.pyc /usr/lib/python3.11/site-packages/sympy/vector/tests/test_coordsysrect.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_dyadic.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_field_functions.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_functions.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_implicitregion.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_integrals.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_operators.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_parametricregion.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_printing.py /usr/lib/python3.11/site-packages/sympy/vector/tests/test_vector.py /usr/lib/python3.11/site-packages/sympy/vector/vector.py /usr/share/doc/packages/python311-sympy /usr/share/doc/packages/python311-sympy/AUTHORS /usr/share/doc/packages/python311-sympy/README.md /usr/share/doc/packages/python311-sympy/examples-3.11 /usr/share/doc/packages/python311-sympy/examples-3.11/README /usr/share/doc/packages/python311-sympy/examples-3.11/advanced /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/autowrap_integrators.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/autowrap_ufuncify.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/curvilinear_coordinates.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/dense_coding_example.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/fem.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/gibbs_phenomenon.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/grover_example.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/hydrogen.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/pidigits.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/pyglet_plotting.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/qft.py /usr/share/doc/packages/python311-sympy/examples-3.11/advanced/relativity.py /usr/share/doc/packages/python311-sympy/examples-3.11/all.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/basic.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/differentiation.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/expansion.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/functions.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/limits_examples.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/plot_examples.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/plotting_nice_plot.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/precision.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/print_pretty.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/series.py /usr/share/doc/packages/python311-sympy/examples-3.11/beginner/substitution.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/coupled_cluster.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/differential_equations.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/infinite_1d_box.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/mplot2d.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/mplot3d.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/partial_differential_eqs.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/print_gtk.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/sample.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/trees.py /usr/share/doc/packages/python311-sympy/examples-3.11/intermediate/vandermonde.py /usr/share/licenses/python311-sympy /usr/share/licenses/python311-sympy/LICENSE /usr/share/man/man1/isympy-3.11.1.gz /usr/share/man/man1/isympy.1.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Wed Jan 8 00:14:20 2025