TidalPy 0.5.1__tar.gz → 0.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {TidalPy-0.5.1 → tidalpy-0.5.3}/PKG-INFO +4 -3
- {TidalPy-0.5.1 → tidalpy-0.5.3}/README.md +1 -1
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_RadialSolver/test_a_interfaces.py +48 -27
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_RadialSolver/test_e_radial_solver_3layer.py +1 -1
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Utilities/Test_Dimensions/test_nondimensional.py +1 -1
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/boundaries/boundaries.c +60 -42
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/collapse/collapse.c +45 -27
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/derivatives/base.c +114 -96
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/derivatives/base.pxd +1 -1
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/derivatives/base.pyx +2 -2
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/derivatives/odes.c +192 -174
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/derivatives/odes.pxd +1 -1
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/derivatives/odes.pyx +15 -15
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/interfaces/interfaces.c +1136 -921
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/interfaces/interfaces.pxd +2 -3
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/interfaces/interfaces.pyx +120 -103
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/interfaces/reversed.c +571 -184
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/interfaces/reversed.pyx +35 -16
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/love.c +87 -69
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/love.pyx +4 -4
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/solutions.c +46 -28
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/solver.c +2764 -2449
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/solver.pyx +165 -134
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/common.c +74 -56
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/driver.c +59 -41
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/kamata.c +70 -52
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/saito.c +45 -27
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/takeuchi.c +70 -52
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/base.c +83 -65
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/base.pyx +5 -5
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/models.c +91 -73
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/base_x.c +46 -28
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/constants_x.c +45 -27
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/conversions/conversions_x.c +54 -36
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/dimensions/nondimensional.c +836 -764
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/dimensions/nondimensional.pxd +4 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/dimensions/nondimensional.pyx +31 -23
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/complex.c +46 -28
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/special_x.c +46 -28
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/types_x.c +45 -27
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy.egg-info/PKG-INFO +4 -3
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy.egg-info/SOURCES.txt +0 -1
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy.egg-info/requires.txt +1 -1
- {TidalPy-0.5.1 → tidalpy-0.5.3}/pyproject.toml +4 -3
- TidalPy-0.5.1/Benchmarks & Performance/Multilayer - Tobie+2005 - Roberts & Nimmo 2008.py +0 -265
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/multilayer_radial_solver.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/multimode_solver.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/performance_base.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/performance_build_world.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/performance_complex_compliance_func.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/performance_eccentricity_func.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/performance_quick_calcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/performance_tides.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Benchmarks & Performance/Performance/performance suite/run_suite.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Documentation/Issues/Issue35/subproc.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Documentation/Issues/Issue35/test.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/LICENSE.md +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/MANIFEST.in +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Functions/test_rheology.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Math/test_utilities_complex.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Math/test_utilities_special.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetA_Package/test_a_version.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetA_Package/test_io.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetA_Package/test_tidalpy_config.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_functools.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_numpy.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_c_tools_conversions.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_c_tools_timing.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_d_basic_classes.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_g_math_special_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_h_voxel_volume.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetB_Package/test_i_spherical_mass.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetE_Functional/test_a_performance_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_dual_dissipation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_single_dissipation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_compliance_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_partialmelt_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_a_orbital_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_b_dissipation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_c_mode_manipulation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetH_QuickCalc/test_a_quick_dissipation_calc_single_body.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetH_QuickCalc/test_b_quick_dissipation_calc_dual_body.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetK_PlanetBuild/test_a_build_star.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetK_PlanetBuild/test_b_build_layered.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetK_PlanetBuild/test_d_build_burnman_planet.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_a_orbit_construct.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_b_orbit_basic_manipulation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetL_Orbit/test_orbit_averaging.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_oop_rheology.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_radiogenic.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_a_matrix_package.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_b_fundamental.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_c_propagate.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_a_initial_package.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_b_known_initial_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_c_initial_helper_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_d_initial_value_calc.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_a_interfaces_package.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_b_known_interfaces.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_c_interface_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_a_derivatives_package.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_b_known_derivatives.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_c_derivative_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_a_collapse_package.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_b_surface_condition.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_c_generalized_collapse.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_a_numerical_package.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_b_radial_solver.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_d_alma_compare_old.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/test_a_love.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/test_b_sensitivity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetP_RadialSolver/test_c_nondimensional.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetS_Tides/Test_Collapse_Modes/test_collapse_mode_freqs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetS_Tides/Test_Heating/test_heating.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetS_Tides/Test_Unique_Modes/test_unique_freqs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_a_physics_orbit_global_tides.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_b_physics_orbit_layered_tides.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_c_physics_orbit_dual_body_tides.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetX_Potential/test_a_potential.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetX_Potential/test_b_mode_potential.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_d_radial_tidal_heating.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_e_strain.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Numerical_Int/test_m1_multilayer_modes.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Old/Test_SetZA_Multiprocessing/test_multiprocessing.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_RadialSolver/test_a_starting_condtions.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_RadialSolver/test_b_radial_solver_1layer.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_RadialSolver/test_d_alma_compare.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/Tests/Test_Utilities/Test_Exoplanets/test_exoplanet_download.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/build.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/burnman_defaultc.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/burnman_layer.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/burnman_world.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/conversion.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/defaults.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/material/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/material/custom/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/material/custom/constant.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/material/custom/ice.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/material/custom/pyrite.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/material/helper.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/Extending/burnman/package.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/boundaries/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/boundaries/boundaries.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/boundaries/boundaries.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/collapse/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/collapse/collapse.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/collapse/collapse.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/derivatives/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/interfaces/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/interfaces/reversed.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/love.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/solutions.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/solutions.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/solver.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/common.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/common.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/driver.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/driver.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/kamata.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/kamata.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/saito.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/saito.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/takeuchi.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/RadialSolver/starting/takeuchi.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/WorldPack/WorldPack.zip +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/cache.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/configurations.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/constants.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/cooling/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/cooling/cooling.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/cooling/cooling_models.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/defaultc.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/dynamics/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/dynamics/dual_dissipation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/dynamics/single_dissipation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/exceptions.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/initialize.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/logger.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/numba_scipy/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/numba_scipy/special/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/numba_scipy/special/overloads.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/numba_scipy/special/signatures.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/orbit/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/orbit/averaging.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/output.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/paths.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/love.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/matrix/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/matrix/fundamental_solid.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/matrix/propagate.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/nondimensional.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/collapse/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/collapse/generalized_collapse.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/collapse/surface_condition.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/derivatives/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/derivatives/odes.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic_incomp.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static_incomp.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/initial/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/initial/functions.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic_incomp.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/initial/initial_solution_static.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/initial/initial_solution_static_incomp.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/interfaces/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/interfaces/liquid_liquid.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/interfaces/liquid_solid.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/interfaces/solid_liquid.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/interfaces/solid_solid.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/numerical/solver.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radial_solver/sensitivity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radiogenics/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radiogenics/radiogenic_models.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/radiogenics/radiogenics.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/base.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/complex_compliance/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/complex_compliance/complex_compliance.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/complex_compliance/compliance_models.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/models.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/models.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/partial_melt/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/partial_melt/melting_models.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/partial_melt/partialmelt.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/rheology.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/viscosity/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/viscosity/viscosity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/rheology/viscosity/viscosity_models.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/stellar/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/stellar/habitability.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/stellar/insolation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/stellar/stellar.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/helpers/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/helpers/orbit_config.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/layers/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/layers/basic.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/layers/gas.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/layers/helper.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/layers/physics.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/orbit/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/orbit/base.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/orbit/physics.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/physical.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_builder/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_builder/config_handler.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_builder/iterative_builder.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_builder/world_builder.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_types/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_types/basic.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_types/gas.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_types/layered.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_types/stellar.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/structures/world_types/tidal.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/ctl_funcs/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/ctl_funcs/ctl_funcs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/dissipation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/eccentricity_funcs/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/eccentricity_funcs/orderl2.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/eccentricity_funcs/orderl3.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/eccentricity_funcs/orderl4.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/eccentricity_funcs/orderl5.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/eccentricity_funcs/orderl6.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/eccentricity_funcs/orderl7.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/heating.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/inclination_funcs/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/inclination_funcs/orderl2.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/inclination_funcs/orderl3.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/inclination_funcs/orderl4.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/inclination_funcs/orderl5.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/inclination_funcs/orderl6.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/inclination_funcs/orderl7.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/love1d.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/methods/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/methods/base.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/methods/global_approx.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/methods/layered.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/collapse_modes.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl2.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl3.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl4.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl5.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl6.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl7.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl2.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl3.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl4.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl5.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl6.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl7.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/mode_manipulation.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/modes.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/modes/multilayer_modes.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/multilayer/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/multilayer/displacements.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/multilayer/heating.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/multilayer/stress_strain.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/nsr_med_eccen_gen_obliquity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/nsr_med_eccen_med_obliquity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/nsr_med_eccen_no_obliquity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/nsr_modes_low_eccen_gen_obliquity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/nsr_modes_med_eccen_gen_obliquity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/nsr_modes_med_eccen_med_obliquity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/nsr_modes_med_eccen_no_obliquity.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/potential/synchronous_low_e.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/tides/universal_coeffs.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/toolbox/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/toolbox/quick_tides.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/base.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/base_x.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/base_x.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/config/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/config/config.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/model/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/model/functional_utils.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/model/model.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/classes/model/model_utils.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/constants_x.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/constants_x.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/conversions/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/conversions/conversions.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/conversions/conversions_x.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/conversions/conversions_x.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/conversions/timing.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/dictionary_utils.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/dimensions/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/exoplanets/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/exoplanets/data_download.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/global_map.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/grid_plot.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/multilayer/RN08-Data.csv +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/multilayer/T05-Data.csv +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/multilayer/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/multilayer/yplot.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/phasespace_plot.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/graphics/planet_plot.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/integration/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/integration/cyrk_helper.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/integration/julia_helper.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/integration/numbalsoda_helper.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/integration/scipy_helper.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/io/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/io/pathing.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/io/progress.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/complex.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/complex.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/special.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/special_x.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/math/special_x.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/multiprocessing/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/multiprocessing/multiprocessing.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/numpy_helper/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/numpy_helper/array_other.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/numpy_helper/array_shape.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/performance/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/performance/memory.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/performance/numba.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/performance/special/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/performance/special/factorial.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/spherical_helper/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/spherical_helper/mass.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/spherical_helper/volume.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/string_helper/__init__.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/string_helper/string_helper.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/types.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/types_x.pxd +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy/utilities/types_x.pyx +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy.egg-info/dependency_links.txt +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy.egg-info/entry_points.txt +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/TidalPy.egg-info/top_level.txt +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/_build_tidalpy.py +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/cython_extensions.json +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/setup.cfg +0 -0
- {TidalPy-0.5.1 → tidalpy-0.5.3}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: TidalPy
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python
|
|
5
5
|
Author-email: "Joe P. Renaud" <TidalPy@gmail.com>
|
|
6
6
|
License: # License
|
|
@@ -181,6 +181,7 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
181
181
|
Classifier: Operating System :: Microsoft :: Windows
|
|
182
182
|
Classifier: Operating System :: MacOS
|
|
183
183
|
Classifier: Operating System :: POSIX :: Linux
|
|
184
|
+
Classifier: Programming Language :: Cython
|
|
184
185
|
Classifier: Programming Language :: Python :: 3.9
|
|
185
186
|
Classifier: Programming Language :: Python :: 3.10
|
|
186
187
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -207,7 +208,7 @@ Requires-Dist: toml>=0.10.2
|
|
|
207
208
|
Requires-Dist: dill>=0.3.2
|
|
208
209
|
Requires-Dist: psutil>=5.8.0
|
|
209
210
|
Requires-Dist: pathos>=0.2.0
|
|
210
|
-
Requires-Dist: cyrk>=0.8.
|
|
211
|
+
Requires-Dist: cyrk>=0.8.7
|
|
211
212
|
Requires-Dist: astropy
|
|
212
213
|
Requires-Dist: astroquery
|
|
213
214
|
Provides-Extra: dev
|
|
@@ -247,7 +248,7 @@ Requires-Dist: diffeqpy>=1.2.0; extra == "julia"
|
|
|
247
248
|
|
|
248
249
|
---
|
|
249
250
|
|
|
250
|
-
<a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.
|
|
251
|
+
<a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.3 Alpha-orange" alt="TidalPy Version 0.5.3 Alpha" /></a>
|
|
251
252
|
|
|
252
253
|
**Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python**
|
|
253
254
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
<a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.
|
|
14
|
+
<a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.3 Alpha-orange" alt="TidalPy Version 0.5.3 Alpha" /></a>
|
|
15
15
|
|
|
16
16
|
**Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python**
|
|
17
17
|
|
|
@@ -10,52 +10,72 @@ from TidalPy.RadialSolver.interfaces.interfaces import solve_upper_y_at_interfac
|
|
|
10
10
|
|
|
11
11
|
tpy_0p4_results = {
|
|
12
12
|
(True, True, True, True): np.asarray(
|
|
13
|
-
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
13
|
+
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
14
|
+
(-0.1-0.1j), (-0.2-0.2j), (-0.3-0.3j), (-0.4-0.4j), (-0.5-0.5j), (-0.6-0.6j),
|
|
15
|
+
(0.16000000000000003+0.16000000000000003j), (0.34+0.34j), (0.54+0.54j), (0.76+0.76j), (1+1j), (12.06+12.06j)],
|
|
14
16
|
dtype=np.complex128, order="C"),
|
|
15
17
|
(True, True, True, False): np.asarray(
|
|
16
|
-
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
18
|
+
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
19
|
+
(-0.1-0.1j), (-0.2-0.2j), (-0.3-0.3j), (-0.4-0.4j), (-0.5-0.5j), (-0.6-0.6j),
|
|
20
|
+
(0.16000000000000003+0.16000000000000003j), (0.34+0.34j), (0.54+0.54j), (0.76+0.76j), (1+1j), (12.06+12.06j)],
|
|
17
21
|
dtype=np.complex128, order="C"),
|
|
18
22
|
(True, True, False, True): np.asarray(
|
|
19
|
-
[0j, 0j],
|
|
23
|
+
[0j, 0j, np.nan, np.nan, np.nan, np.nan],
|
|
20
24
|
dtype=np.complex128, order="C"),
|
|
21
25
|
(True, True, False, False): np.asarray(
|
|
22
|
-
[(0.01578947368421052+0.01578947368421052j), (0.02105263157894738+0.02105263157894738j), (-0.02631578947368418-0.02631578947368418j), (-5.747368421052632-5.747368421052632j),
|
|
26
|
+
[(0.01578947368421052+0.01578947368421052j), (0.02105263157894738+0.02105263157894738j), (-0.02631578947368418-0.02631578947368418j), (-5.747368421052632-5.747368421052632j), np.nan, np.nan,
|
|
27
|
+
(-0.01578947368421052-0.01578947368421052j), (-0.02105263157894738-0.02105263157894738j), (0.02631578947368418+0.02631578947368418j), (5.747368421052632+5.747368421052632j), np.nan, np.nan],
|
|
23
28
|
dtype=np.complex128, order="C"),
|
|
24
29
|
(True, False, True, True): np.asarray(
|
|
25
|
-
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
30
|
+
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
31
|
+
(-0.1-0.1j), (-0.2-0.2j), (-0.3-0.3j), (-0.4-0.4j), (-0.5-0.5j), (-0.6-0.6j),
|
|
32
|
+
(0.16000000000000003+0.16000000000000003j), (0.34+0.34j), (0.54+0.54j), (0.76+0.76j), (1+1j), (12.06+12.06j)],
|
|
26
33
|
dtype=np.complex128, order="C"),
|
|
27
34
|
(True, False, True, False): np.asarray(
|
|
28
|
-
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
35
|
+
[(0.1+0.1j), (0.2+0.2j), (0.3+0.3j), (0.4+0.4j), (0.5+0.5j), (0.6+0.6j),
|
|
36
|
+
(-0.1-0.1j), (-0.2-0.2j), (-0.3-0.3j), (-0.4-0.4j), (-0.5-0.5j), (-0.6-0.6j),
|
|
37
|
+
(0.16000000000000003+0.16000000000000003j), (0.34+0.34j), (0.54+0.54j), (0.76+0.76j), (1+1j), (12.06+12.06j)],
|
|
29
38
|
dtype=np.complex128, order="C"),
|
|
30
39
|
(True, False, False, True): np.asarray(
|
|
31
|
-
[0j, 0j],
|
|
40
|
+
[0j, 0j, np.nan, np.nan, np.nan, np.nan],
|
|
32
41
|
dtype=np.complex128, order="C"),
|
|
33
42
|
(True, False, False, False): np.asarray(
|
|
34
|
-
[(0.01578947368421052+0.01578947368421052j), (0.02105263157894738+0.02105263157894738j), (-0.02631578947368418-0.02631578947368418j), (-5.747368421052632-5.747368421052632j),
|
|
43
|
+
[(0.01578947368421052+0.01578947368421052j), (0.02105263157894738+0.02105263157894738j), (-0.02631578947368418-0.02631578947368418j), (-5.747368421052632-5.747368421052632j), np.nan, np.nan,
|
|
44
|
+
(-0.01578947368421052-0.01578947368421052j), (-0.02105263157894738-0.02105263157894738j), (0.02631578947368418+0.02631578947368418j), (5.747368421052632+5.747368421052632j), np.nan, np.nan],
|
|
35
45
|
dtype=np.complex128, order="C"),
|
|
36
46
|
(False, True, True, True): np.asarray(
|
|
37
|
-
[0j, (-3800-3800j), 0j, 0j, (0.5+0.5j), (0.600001180416904-9.599998819583096j),
|
|
47
|
+
[0j, (-3800-3800j), 0j, 0j, (0.5+0.5j), (0.600001180416904-9.599998819583096j),
|
|
48
|
+
(1+0j), (20520+0j), 0j, 0j, 0j, (-6.374251281747724e-06+0j),
|
|
49
|
+
0j, 0j, (1+0j), 0j, 0j, 0j],
|
|
38
50
|
dtype=np.complex128, order="C"),
|
|
39
51
|
(False, True, True, False): np.asarray(
|
|
40
|
-
[0j, (-3800-3800j), 0j, 0j, (0.5+0.5j), (0.600001180416904-9.599998819583096j),
|
|
52
|
+
[0j, (-3800-3800j), 0j, 0j, (0.5+0.5j), (0.600001180416904-9.599998819583096j),
|
|
53
|
+
(1+0j), (20520+0j), 0j, 0j, 0j, (-6.374251281747724e-06+0j),
|
|
54
|
+
0j, 0j, (1+0j), 0j, 0j, 0j],
|
|
41
55
|
dtype=np.complex128, order="C"),
|
|
42
56
|
(False, True, False, True): np.asarray(
|
|
43
|
-
[(0.5+0.5j), (0.6-9.6j)],
|
|
57
|
+
[(0.5+0.5j), (0.6-9.6j), np.nan, np.nan, np.nan, np.nan],
|
|
44
58
|
dtype=np.complex128, order="C"),
|
|
45
59
|
(False, True, False, False): np.asarray(
|
|
46
|
-
[0j, (-3800-3800j), (0.5+0.5j), (0.600001180416904-9.599998819583096j),
|
|
60
|
+
[0j, (-3800-3800j), (0.5+0.5j), (0.600001180416904-9.599998819583096j), np.nan, np.nan,
|
|
61
|
+
(1+0j), (20520+0j), 0j, (-6.374251281747724e-06+0j), np.nan, np.nan],
|
|
47
62
|
dtype=np.complex128, order="C"),
|
|
48
63
|
(False, False, True, True): np.asarray(
|
|
49
|
-
[(0.1+0.1j), (0.2+0.2j), 0j, 0j, (0.5+0.5j), (0.6+0.6j),
|
|
64
|
+
[(0.1+0.1j), (0.2+0.2j), 0j, 0j, (0.5+0.5j), (0.6+0.6j),
|
|
65
|
+
(0.16000000000000003+0.16000000000000003j), (0.34+0.34j), 0j, 0j, (1+1j), (12.06+12.06j),
|
|
66
|
+
0j, 0j, (1+0j), 0j, 0j, 0j],
|
|
50
67
|
dtype=np.complex128, order="C"),
|
|
51
68
|
(False, False, True, False): np.asarray(
|
|
52
|
-
[(0.1+0.1j), (0.2+0.2j), 0j, 0j, (0.5+0.5j), (0.6+0.6j),
|
|
69
|
+
[(0.1+0.1j), (0.2+0.2j), 0j, 0j, (0.5+0.5j), (0.6+0.6j),
|
|
70
|
+
(0.16000000000000003+0.16000000000000003j), (0.34+0.34j), 0j, 0j, (1+1j), (12.06+12.06j),
|
|
71
|
+
0j, 0j, (1+0j), 0j, 0j, 0j],
|
|
53
72
|
dtype=np.complex128, order="C"),
|
|
54
73
|
(False, False, False, True): np.asarray(
|
|
55
|
-
[(0.09505598613897154+0.09505598613897154j), (-4.283624807144646-4.283624807144646j)],
|
|
74
|
+
[(0.09505598613897154+0.09505598613897154j), (-4.283624807144646-4.283624807144646j), np.nan, np.nan, np.nan, np.nan],
|
|
56
75
|
dtype=np.complex128, order="C"),
|
|
57
76
|
(False, False, False, False): np.asarray(
|
|
58
|
-
[(0.1+0.1j), (0.2+0.2j), (0.5+0.5j), (0.6+0.6j),
|
|
77
|
+
[(0.1+0.1j), (0.2+0.2j), (0.5+0.5j), (0.6+0.6j), np.nan, np.nan,
|
|
78
|
+
(0.16000000000000003+0.16000000000000003j), (0.34+0.34j), (1+1j), (12.06+12.06j), np.nan, np.nan],
|
|
59
79
|
dtype=np.complex128, order="C")
|
|
60
80
|
}
|
|
61
81
|
|
|
@@ -69,13 +89,15 @@ y_lower_solid = np.asarray(
|
|
|
69
89
|
(1.6*(0.1+0.1j), 1.7*(0.2+0.2j), 1.8*(0.3+0.3j), 1.9*(0.4+0.4j), 2.0*(0.5+0.5j), 20.1*(0.6+0.6j))), dtype=np.complex128
|
|
70
90
|
)
|
|
71
91
|
y_lower_liquid = np.asarray(
|
|
72
|
-
((0.1+0.1j, 0.2+0.2j, 0.5+0.5j, 0.6+0.6j),
|
|
73
|
-
(1.6*(0.1+0.1j), 1.7*(0.2+0.2j), 2.0*(0.5+0.5j), 20.1*(0.6+0.6j))), dtype=np.complex128
|
|
92
|
+
((0.1+0.1j, 0.2+0.2j, 0.5+0.5j, 0.6+0.6j, np.nan, np.nan),
|
|
93
|
+
(1.6*(0.1+0.1j), 1.7*(0.2+0.2j), 2.0*(0.5+0.5j), 20.1*(0.6+0.6j), np.nan, np.nan)), dtype=np.complex128
|
|
74
94
|
)
|
|
75
95
|
y_lower_staticliq = np.asarray(
|
|
76
|
-
((0.5+0.5j, 0.6-9.6j),), dtype=np.complex128
|
|
96
|
+
((0.5+0.5j, 0.6-9.6j, np.nan, np.nan, np.nan, np.nan),), dtype=np.complex128
|
|
77
97
|
)
|
|
78
98
|
|
|
99
|
+
MAX_NUM_Ys = 6
|
|
100
|
+
|
|
79
101
|
@pytest.mark.parametrize('lower_layer_type', (0, 1))
|
|
80
102
|
@pytest.mark.parametrize('lower_is_static', (True, False))
|
|
81
103
|
@pytest.mark.parametrize('upper_layer_type', (0, 1))
|
|
@@ -103,7 +125,7 @@ def test_interface_driver(lower_layer_type, lower_is_static, upper_layer_type, u
|
|
|
103
125
|
lower_y = y_lower_liquid
|
|
104
126
|
|
|
105
127
|
# Create array full of nans for the "output" array. If things worked okay then they should no longer be nan.
|
|
106
|
-
upper_y = np.nan * np.ones((
|
|
128
|
+
upper_y = np.nan * np.ones((3, 6), dtype=np.complex128, order='C')
|
|
107
129
|
|
|
108
130
|
solve_upper_y_at_interface(
|
|
109
131
|
lower_y, upper_y,
|
|
@@ -112,8 +134,8 @@ def test_interface_driver(lower_layer_type, lower_is_static, upper_layer_type, u
|
|
|
112
134
|
interface_gravity, static_liquid_density, G_to_use
|
|
113
135
|
)
|
|
114
136
|
|
|
115
|
-
# Make sure
|
|
116
|
-
assert np.
|
|
137
|
+
# Make sure the correct number of array elements were set.
|
|
138
|
+
assert np.sum(~np.isnan(upper_y)) == (num_sols_upper * num_ys_upper)
|
|
117
139
|
|
|
118
140
|
|
|
119
141
|
@pytest.mark.parametrize('lower_layer_type', (0, 1))
|
|
@@ -150,7 +172,7 @@ def test_interface_accuracy(lower_layer_type, lower_is_static, upper_layer_type,
|
|
|
150
172
|
lower_y = y_lower_liquid
|
|
151
173
|
|
|
152
174
|
# Create array full of nans for the "output" array. If things worked okay then they should no longer be nan.
|
|
153
|
-
upper_y = np.nan * np.ones((
|
|
175
|
+
upper_y = np.nan * np.ones((3, 6), dtype=np.complex128, order='C')
|
|
154
176
|
|
|
155
177
|
solve_upper_y_at_interface(
|
|
156
178
|
lower_y, upper_y,
|
|
@@ -159,9 +181,8 @@ def test_interface_accuracy(lower_layer_type, lower_is_static, upper_layer_type,
|
|
|
159
181
|
interface_gravity, static_liquid_density, G_to_use
|
|
160
182
|
)
|
|
161
183
|
|
|
162
|
-
# Make sure all of the array elements were set.
|
|
163
|
-
assert np.all(np.isnan(upper_y) == False)
|
|
164
|
-
|
|
165
184
|
# Compare results to TidalPy 0.4.0 pre-calculated interface solution.
|
|
166
185
|
comparison_results = tpy_0p4_results[(lower_layer_is_solid, lower_is_static, upper_layer_is_solid, upper_is_static)]
|
|
167
|
-
np.
|
|
186
|
+
comparison_results_no_nan = comparison_results[~np.isnan(comparison_results)]
|
|
187
|
+
upper_y_no_nan = upper_y[~np.isnan(upper_y)]
|
|
188
|
+
np.allclose(upper_y_no_nan.flatten(), comparison_results_no_nan)
|
|
@@ -123,4 +123,4 @@ def test_radial_solver_3layer_solve_for_both(solid_is_static, liquid_is_static,
|
|
|
123
123
|
assert type(out.result) is np.ndarray
|
|
124
124
|
assert out.result.shape == (len(solve_for) * 6, radius_array.size)
|
|
125
125
|
except NotImplementedError as e:
|
|
126
|
-
|
|
126
|
+
pytest.skip(f'function does not currently support requested inputs. Skipping Test. Details: {e}')
|
|
@@ -54,7 +54,7 @@ def test_non_dimensionalize_physicals():
|
|
|
54
54
|
# Check that the redimensionalize function works too.
|
|
55
55
|
# Use the output from the non-dim as inputs to the redim.
|
|
56
56
|
output_freq_redim, G_redim = redimensionalize_physicals(
|
|
57
|
-
|
|
57
|
+
frequency, mean_radius, bulk_density,
|
|
58
58
|
radius_array_out, density_array_out, gravity_array_out, bulk_array_out, shear_array_out)
|
|
59
59
|
|
|
60
60
|
# These should all match the original again.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.10 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"include_dirs": [
|
|
22
22
|
"TidalPy/RadialSolver/boundaries",
|
|
23
|
-
"/tmp/build-env-
|
|
23
|
+
"/tmp/build-env-a4pe7e8f/lib/python3.10/site-packages/numpy/core/include"
|
|
24
24
|
],
|
|
25
25
|
"language": "c",
|
|
26
26
|
"name": "TidalPy.RadialSolver.boundaries.boundaries",
|
|
@@ -56,10 +56,10 @@ END: Cython Metadata */
|
|
|
56
56
|
#else
|
|
57
57
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
58
58
|
#endif
|
|
59
|
-
#define CYTHON_ABI "
|
|
59
|
+
#define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
|
|
60
60
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
61
61
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
62
|
-
#define CYTHON_HEX_VERSION
|
|
62
|
+
#define CYTHON_HEX_VERSION 0x03000AF0
|
|
63
63
|
#define CYTHON_FUTURE_DIVISION 1
|
|
64
64
|
#include <stddef.h>
|
|
65
65
|
#ifndef offsetof
|
|
@@ -151,6 +151,8 @@ END: Cython Metadata */
|
|
|
151
151
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
152
152
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
153
153
|
#endif
|
|
154
|
+
#undef CYTHON_USE_FREELISTS
|
|
155
|
+
#define CYTHON_USE_FREELISTS 0
|
|
154
156
|
#elif defined(PYPY_VERSION)
|
|
155
157
|
#define CYTHON_COMPILING_IN_PYPY 1
|
|
156
158
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -212,6 +214,8 @@ END: Cython Metadata */
|
|
|
212
214
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
213
215
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
214
216
|
#endif
|
|
217
|
+
#undef CYTHON_USE_FREELISTS
|
|
218
|
+
#define CYTHON_USE_FREELISTS 0
|
|
215
219
|
#elif defined(CYTHON_LIMITED_API)
|
|
216
220
|
#ifdef Py_LIMITED_API
|
|
217
221
|
#undef __PYX_LIMITED_VERSION_HEX
|
|
@@ -273,6 +277,8 @@ END: Cython Metadata */
|
|
|
273
277
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
274
278
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
275
279
|
#endif
|
|
280
|
+
#undef CYTHON_USE_FREELISTS
|
|
281
|
+
#define CYTHON_USE_FREELISTS 0
|
|
276
282
|
#elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
|
|
277
283
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
278
284
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -282,11 +288,17 @@ END: Cython Metadata */
|
|
|
282
288
|
#ifndef CYTHON_USE_TYPE_SLOTS
|
|
283
289
|
#define CYTHON_USE_TYPE_SLOTS 1
|
|
284
290
|
#endif
|
|
291
|
+
#ifndef CYTHON_USE_TYPE_SPECS
|
|
292
|
+
#define CYTHON_USE_TYPE_SPECS 0
|
|
293
|
+
#endif
|
|
285
294
|
#undef CYTHON_USE_PYTYPE_LOOKUP
|
|
286
295
|
#define CYTHON_USE_PYTYPE_LOOKUP 0
|
|
287
296
|
#ifndef CYTHON_USE_ASYNC_SLOTS
|
|
288
297
|
#define CYTHON_USE_ASYNC_SLOTS 1
|
|
289
298
|
#endif
|
|
299
|
+
#ifndef CYTHON_USE_PYLONG_INTERNALS
|
|
300
|
+
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
301
|
+
#endif
|
|
290
302
|
#undef CYTHON_USE_PYLIST_INTERNALS
|
|
291
303
|
#define CYTHON_USE_PYLIST_INTERNALS 0
|
|
292
304
|
#ifndef CYTHON_USE_UNICODE_INTERNALS
|
|
@@ -294,8 +306,6 @@ END: Cython Metadata */
|
|
|
294
306
|
#endif
|
|
295
307
|
#undef CYTHON_USE_UNICODE_WRITER
|
|
296
308
|
#define CYTHON_USE_UNICODE_WRITER 0
|
|
297
|
-
#undef CYTHON_USE_PYLONG_INTERNALS
|
|
298
|
-
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
299
309
|
#ifndef CYTHON_AVOID_BORROWED_REFS
|
|
300
310
|
#define CYTHON_AVOID_BORROWED_REFS 0
|
|
301
311
|
#endif
|
|
@@ -307,11 +317,22 @@ END: Cython Metadata */
|
|
|
307
317
|
#endif
|
|
308
318
|
#undef CYTHON_FAST_THREAD_STATE
|
|
309
319
|
#define CYTHON_FAST_THREAD_STATE 0
|
|
320
|
+
#undef CYTHON_FAST_GIL
|
|
321
|
+
#define CYTHON_FAST_GIL 0
|
|
322
|
+
#ifndef CYTHON_METH_FASTCALL
|
|
323
|
+
#define CYTHON_METH_FASTCALL 1
|
|
324
|
+
#endif
|
|
310
325
|
#undef CYTHON_FAST_PYCALL
|
|
311
326
|
#define CYTHON_FAST_PYCALL 0
|
|
327
|
+
#ifndef CYTHON_PEP487_INIT_SUBCLASS
|
|
328
|
+
#define CYTHON_PEP487_INIT_SUBCLASS 1
|
|
329
|
+
#endif
|
|
312
330
|
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
|
|
313
331
|
#define CYTHON_PEP489_MULTI_PHASE_INIT 1
|
|
314
332
|
#endif
|
|
333
|
+
#ifndef CYTHON_USE_MODULE_STATE
|
|
334
|
+
#define CYTHON_USE_MODULE_STATE 0
|
|
335
|
+
#endif
|
|
315
336
|
#ifndef CYTHON_USE_TP_FINALIZE
|
|
316
337
|
#define CYTHON_USE_TP_FINALIZE 1
|
|
317
338
|
#endif
|
|
@@ -319,6 +340,12 @@ END: Cython Metadata */
|
|
|
319
340
|
#define CYTHON_USE_DICT_VERSIONS 0
|
|
320
341
|
#undef CYTHON_USE_EXC_INFO_STACK
|
|
321
342
|
#define CYTHON_USE_EXC_INFO_STACK 0
|
|
343
|
+
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
344
|
+
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
345
|
+
#endif
|
|
346
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
347
|
+
#define CYTHON_USE_FREELISTS 0
|
|
348
|
+
#endif
|
|
322
349
|
#else
|
|
323
350
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
324
351
|
#define CYTHON_COMPILING_IN_CPYTHON 1
|
|
@@ -409,6 +436,9 @@ END: Cython Metadata */
|
|
|
409
436
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
410
437
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
411
438
|
#endif
|
|
439
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
440
|
+
#define CYTHON_USE_FREELISTS 1
|
|
441
|
+
#endif
|
|
412
442
|
#endif
|
|
413
443
|
#if !defined(CYTHON_FAST_PYCCALL)
|
|
414
444
|
#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
|
|
@@ -752,8 +782,13 @@ END: Cython Metadata */
|
|
|
752
782
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
753
783
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
754
784
|
#else
|
|
755
|
-
#
|
|
756
|
-
#define
|
|
785
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
786
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
787
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
788
|
+
#else
|
|
789
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
790
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
791
|
+
#endif
|
|
757
792
|
#endif
|
|
758
793
|
#if CYTHON_METH_FASTCALL
|
|
759
794
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1105,7 +1140,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1105
1140
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1106
1141
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1107
1142
|
#endif
|
|
1108
|
-
#if
|
|
1143
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1109
1144
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1110
1145
|
#else
|
|
1111
1146
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1192,7 +1227,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1192
1227
|
#endif
|
|
1193
1228
|
|
|
1194
1229
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1195
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1230
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1196
1231
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1197
1232
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1198
1233
|
|
|
@@ -1296,24 +1331,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1296
1331
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1297
1332
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1298
1333
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1299
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1300
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1301
|
-
{
|
|
1302
|
-
const wchar_t *u_end = u;
|
|
1303
|
-
while (*u_end++) ;
|
|
1304
|
-
return (size_t)(u_end - u - 1);
|
|
1305
|
-
}
|
|
1306
|
-
#else
|
|
1307
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1308
|
-
{
|
|
1309
|
-
const Py_UNICODE *u_end = u;
|
|
1310
|
-
while (*u_end++) ;
|
|
1311
|
-
return (size_t)(u_end - u - 1);
|
|
1312
|
-
}
|
|
1313
|
-
#endif
|
|
1314
1334
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1315
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1316
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1317
1335
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1318
1336
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1319
1337
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1509,7 +1527,7 @@ static const char *__pyx_f[] = {
|
|
|
1509
1527
|
/* #### Code section: utility_code_proto_before_types ### */
|
|
1510
1528
|
/* #### Code section: numeric_typedefs ### */
|
|
1511
1529
|
|
|
1512
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1530
|
+
/* "scipy/linalg/cython_lapack.pxd":17
|
|
1513
1531
|
* # The original libraries should be linked directly.
|
|
1514
1532
|
*
|
|
1515
1533
|
* ctypedef float s # <<<<<<<<<<<<<<
|
|
@@ -1518,7 +1536,7 @@ static const char *__pyx_f[] = {
|
|
|
1518
1536
|
*/
|
|
1519
1537
|
typedef float __pyx_t_5scipy_6linalg_13cython_lapack_s;
|
|
1520
1538
|
|
|
1521
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1539
|
+
/* "scipy/linalg/cython_lapack.pxd":18
|
|
1522
1540
|
*
|
|
1523
1541
|
* ctypedef float s
|
|
1524
1542
|
* ctypedef double d # <<<<<<<<<<<<<<
|
|
@@ -1555,7 +1573,7 @@ static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(floa
|
|
|
1555
1573
|
|
|
1556
1574
|
/*--- Type declarations ---*/
|
|
1557
1575
|
|
|
1558
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1576
|
+
/* "scipy/linalg/cython_lapack.pxd":24
|
|
1559
1577
|
* # Function pointer type declarations for
|
|
1560
1578
|
* # gees and gges families of functions.
|
|
1561
1579
|
* ctypedef bint cselect1(c*) # <<<<<<<<<<<<<<
|
|
@@ -1564,7 +1582,7 @@ static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(floa
|
|
|
1564
1582
|
*/
|
|
1565
1583
|
typedef int __pyx_t_5scipy_6linalg_13cython_lapack_cselect1(__pyx_t_float_complex *);
|
|
1566
1584
|
|
|
1567
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1585
|
+
/* "scipy/linalg/cython_lapack.pxd":25
|
|
1568
1586
|
* # gees and gges families of functions.
|
|
1569
1587
|
* ctypedef bint cselect1(c*)
|
|
1570
1588
|
* ctypedef bint cselect2(c*, c*) # <<<<<<<<<<<<<<
|
|
@@ -1573,7 +1591,7 @@ typedef int __pyx_t_5scipy_6linalg_13cython_lapack_cselect1(__pyx_t_float_comple
|
|
|
1573
1591
|
*/
|
|
1574
1592
|
typedef int __pyx_t_5scipy_6linalg_13cython_lapack_cselect2(__pyx_t_float_complex *, __pyx_t_float_complex *);
|
|
1575
1593
|
|
|
1576
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1594
|
+
/* "scipy/linalg/cython_lapack.pxd":26
|
|
1577
1595
|
* ctypedef bint cselect1(c*)
|
|
1578
1596
|
* ctypedef bint cselect2(c*, c*)
|
|
1579
1597
|
* ctypedef bint dselect2(d*, d*) # <<<<<<<<<<<<<<
|
|
@@ -1582,7 +1600,7 @@ typedef int __pyx_t_5scipy_6linalg_13cython_lapack_cselect2(__pyx_t_float_comple
|
|
|
1582
1600
|
*/
|
|
1583
1601
|
typedef int __pyx_t_5scipy_6linalg_13cython_lapack_dselect2(__pyx_t_5scipy_6linalg_13cython_lapack_d *, __pyx_t_5scipy_6linalg_13cython_lapack_d *);
|
|
1584
1602
|
|
|
1585
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1603
|
+
/* "scipy/linalg/cython_lapack.pxd":27
|
|
1586
1604
|
* ctypedef bint cselect2(c*, c*)
|
|
1587
1605
|
* ctypedef bint dselect2(d*, d*)
|
|
1588
1606
|
* ctypedef bint dselect3(d*, d*, d*) # <<<<<<<<<<<<<<
|
|
@@ -1591,7 +1609,7 @@ typedef int __pyx_t_5scipy_6linalg_13cython_lapack_dselect2(__pyx_t_5scipy_6lina
|
|
|
1591
1609
|
*/
|
|
1592
1610
|
typedef int __pyx_t_5scipy_6linalg_13cython_lapack_dselect3(__pyx_t_5scipy_6linalg_13cython_lapack_d *, __pyx_t_5scipy_6linalg_13cython_lapack_d *, __pyx_t_5scipy_6linalg_13cython_lapack_d *);
|
|
1593
1611
|
|
|
1594
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1612
|
+
/* "scipy/linalg/cython_lapack.pxd":28
|
|
1595
1613
|
* ctypedef bint dselect2(d*, d*)
|
|
1596
1614
|
* ctypedef bint dselect3(d*, d*, d*)
|
|
1597
1615
|
* ctypedef bint sselect2(s*, s*) # <<<<<<<<<<<<<<
|
|
@@ -1600,7 +1618,7 @@ typedef int __pyx_t_5scipy_6linalg_13cython_lapack_dselect3(__pyx_t_5scipy_6lina
|
|
|
1600
1618
|
*/
|
|
1601
1619
|
typedef int __pyx_t_5scipy_6linalg_13cython_lapack_sselect2(__pyx_t_5scipy_6linalg_13cython_lapack_s *, __pyx_t_5scipy_6linalg_13cython_lapack_s *);
|
|
1602
1620
|
|
|
1603
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1621
|
+
/* "scipy/linalg/cython_lapack.pxd":29
|
|
1604
1622
|
* ctypedef bint dselect3(d*, d*, d*)
|
|
1605
1623
|
* ctypedef bint sselect2(s*, s*)
|
|
1606
1624
|
* ctypedef bint sselect3(s*, s*, s*) # <<<<<<<<<<<<<<
|
|
@@ -1609,7 +1627,7 @@ typedef int __pyx_t_5scipy_6linalg_13cython_lapack_sselect2(__pyx_t_5scipy_6lina
|
|
|
1609
1627
|
*/
|
|
1610
1628
|
typedef int __pyx_t_5scipy_6linalg_13cython_lapack_sselect3(__pyx_t_5scipy_6linalg_13cython_lapack_s *, __pyx_t_5scipy_6linalg_13cython_lapack_s *, __pyx_t_5scipy_6linalg_13cython_lapack_s *);
|
|
1611
1629
|
|
|
1612
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1630
|
+
/* "scipy/linalg/cython_lapack.pxd":30
|
|
1613
1631
|
* ctypedef bint sselect2(s*, s*)
|
|
1614
1632
|
* ctypedef bint sselect3(s*, s*, s*)
|
|
1615
1633
|
* ctypedef bint zselect1(z*) # <<<<<<<<<<<<<<
|
|
@@ -1618,7 +1636,7 @@ typedef int __pyx_t_5scipy_6linalg_13cython_lapack_sselect3(__pyx_t_5scipy_6lina
|
|
|
1618
1636
|
*/
|
|
1619
1637
|
typedef int __pyx_t_5scipy_6linalg_13cython_lapack_zselect1(__pyx_t_double_complex *);
|
|
1620
1638
|
|
|
1621
|
-
/* "scipy/linalg/cython_lapack.pxd":
|
|
1639
|
+
/* "scipy/linalg/cython_lapack.pxd":31
|
|
1622
1640
|
* ctypedef bint sselect3(s*, s*, s*)
|
|
1623
1641
|
* ctypedef bint zselect1(z*)
|
|
1624
1642
|
* ctypedef bint zselect2(z*, z*) # <<<<<<<<<<<<<<
|
|
@@ -1973,7 +1991,7 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
|
|
|
1973
1991
|
static int __Pyx_ExportFunction(const char *name, void (*f)(void), const char *sig);
|
|
1974
1992
|
|
|
1975
1993
|
/* FunctionImport.proto */
|
|
1976
|
-
static int
|
|
1994
|
+
static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
1977
1995
|
|
|
1978
1996
|
/* InitStrings.proto */
|
|
1979
1997
|
static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
|
|
@@ -2642,7 +2660,7 @@ static int __Pyx_modinit_function_import_code(void) {
|
|
|
2642
2660
|
/*--- Function import code ---*/
|
|
2643
2661
|
__pyx_t_1 = PyImport_ImportModule("scipy.linalg.cython_lapack"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
2644
2662
|
__Pyx_GOTREF(__pyx_t_1);
|
|
2645
|
-
if (
|
|
2663
|
+
if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "zgesv", (void (**)(void))&__pyx_f_5scipy_6linalg_13cython_lapack_zgesv, "void (int *, int *, __pyx_t_double_complex *, int *, int *, __pyx_t_double_complex *, int *, int *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
2646
2664
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
2647
2665
|
__Pyx_RefNannyFinishContext();
|
|
2648
2666
|
return 0;
|
|
@@ -4649,9 +4667,9 @@ bad:
|
|
|
4649
4667
|
}
|
|
4650
4668
|
|
|
4651
4669
|
/* FunctionImport */
|
|
4652
|
-
#ifndef
|
|
4653
|
-
#define
|
|
4654
|
-
static int
|
|
4670
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_0_10
|
|
4671
|
+
#define __PYX_HAVE_RT_ImportFunction_3_0_10
|
|
4672
|
+
static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
4655
4673
|
PyObject *d = 0;
|
|
4656
4674
|
PyObject *cobj = 0;
|
|
4657
4675
|
union {
|