myokit 1.35.4__py3-none-any.whl → 1.36.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. myokit/__init__.py +5 -3
  2. myokit/__main__.py +9 -159
  3. myokit/_config.py +2 -2
  4. myokit/_expressions.py +6 -6
  5. myokit/_model_api.py +11 -7
  6. myokit/_myokit_version.py +1 -1
  7. myokit/_protocol.py +4 -0
  8. myokit/_sim/__init__.py +1 -0
  9. myokit/_sim/cvodessim.c +321 -177
  10. myokit/_sim/cvodessim.py +107 -43
  11. myokit/_sim/mcl.h +54 -0
  12. myokit/formats/__init__.py +63 -12
  13. myokit/formats/ansic/__init__.py +2 -1
  14. myokit/formats/ansic/_ewriter.py +159 -40
  15. myokit/formats/cpp/_ewriter.py +12 -1
  16. myokit/formats/cuda/_ewriter.py +15 -51
  17. myokit/formats/easyml/_ewriter.py +26 -54
  18. myokit/formats/heka/_patchmaster.py +15 -3
  19. myokit/formats/latex/_ewriter.py +103 -88
  20. myokit/formats/latex/_exporter.py +1 -1
  21. myokit/formats/mathml/_ewriter.py +2 -2
  22. myokit/formats/matlab/_ewriter.py +50 -28
  23. myokit/formats/opencl/_ewriter.py +61 -78
  24. myokit/formats/python/_ewriter.py +81 -50
  25. myokit/formats/stan/_ewriter.py +29 -37
  26. myokit/gui/source.py +1 -1
  27. myokit/lib/hh.py +3 -0
  28. myokit/lib/markov.py +6 -0
  29. myokit/tests/__init__.py +70 -0
  30. myokit/tests/data/decker.model +59 -59
  31. myokit/tests/test_formats.py +115 -7
  32. myokit/tests/test_formats_ansic.py +344 -0
  33. myokit/tests/test_formats_axon.py +17 -0
  34. myokit/tests/test_formats_cpp.py +97 -0
  35. myokit/tests/test_formats_cuda.py +226 -0
  36. myokit/tests/test_formats_easyml.py +169 -152
  37. myokit/tests/{test_formats_exporters.py → test_formats_exporters_run.py} +1 -69
  38. myokit/tests/test_formats_html.py +1 -3
  39. myokit/tests/test_formats_latex.py +211 -0
  40. myokit/tests/test_formats_mathml_content.py +13 -0
  41. myokit/tests/test_formats_mathml_presentation.py +54 -42
  42. myokit/tests/test_formats_matlab.py +218 -0
  43. myokit/tests/test_formats_opencl.py +206 -380
  44. myokit/tests/test_formats_python.py +557 -0
  45. myokit/tests/test_formats_stan.py +175 -0
  46. myokit/tests/test_formats_sympy.py +9 -2
  47. myokit/tests/test_lib_hh.py +36 -0
  48. myokit/tests/test_lib_plots.py +0 -16
  49. myokit/tests/test_model.py +21 -1
  50. myokit/tests/test_simulation_cvodes.py +137 -56
  51. myokit/tools.py +3 -2
  52. {myokit-1.35.4.dist-info → myokit-1.36.1.dist-info}/LICENSE.txt +1 -1
  53. {myokit-1.35.4.dist-info → myokit-1.36.1.dist-info}/METADATA +19 -8
  54. {myokit-1.35.4.dist-info → myokit-1.36.1.dist-info}/RECORD +57 -52
  55. {myokit-1.35.4.dist-info → myokit-1.36.1.dist-info}/WHEEL +1 -1
  56. myokit/tests/test_formats_expression_writers.py +0 -1281
  57. myokit/tests/test_formats_importers.py +0 -53
  58. {myokit-1.35.4.dist-info → myokit-1.36.1.dist-info}/entry_points.txt +0 -0
  59. {myokit-1.35.4.dist-info → myokit-1.36.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: myokit
3
- Version: 1.35.4
3
+ Version: 1.36.1
4
4
  Summary: A modeling and simulation tool for cardiac cellular electrophysiology
5
5
  Home-page: http://myokit.org
6
6
  Author: Michael Clerx
@@ -52,19 +52,19 @@ Requires-Dist: pyside6 ; extra == 'pyside'
52
52
  [![codecov](https://codecov.io/gh/myokit/myokit/branch/main/graph/badge.svg)](https://codecov.io/gh/myokit/myokit)
53
53
  [![Documentation Status](https://readthedocs.org/projects/myokit/badge/?version=latest)](https://myokit.readthedocs.io/?badge=latest)
54
54
 
55
- ![Myokit](http://myokit.org/static/img/logo.png)
55
+ ![Myokit](https://myokit.org/static/img/logo.png)
56
56
 
57
- [Myokit](http://myokit.org) is a tool for modeling and simulation of cardiac cellular electrophysiology.
57
+ [Myokit](https://myokit.org) is a tool for modeling and simulation of cardiac cellular electrophysiology.
58
58
  It's [open-source](https://github.com/myokit/myokit/blob/main/LICENSE.txt), written in Python, hosted on [GitHub](https://github.com/myokit/myokit/) and available on [PyPi](https://pypi.org/project/myokit/).
59
59
  For the latest documentation, see [myokit.readthedocs.io](https://myokit.readthedocs.io/).
60
60
 
61
- More information, including examples and an installation guide, is available on [myokit.org](http://myokit.org).
61
+ More information, including examples and an installation guide, is available on [myokit.org](https://myokit.org).
62
62
  A list of changes introduced in each Myokit release is provided in the [Changelog](https://github.com/myokit/myokit/blob/main/CHANGELOG.md).
63
63
 
64
64
 
65
65
  ## Install
66
66
 
67
- For full installation details (on linux, mac, or windows), please see [http://myokit.org/install](http://myokit.org/install).
67
+ For full installation details (on linux, mac, or windows), please see [https://myokit.org/install](https://myokit.org/install).
68
68
  A shorter installation guide for experienced users is given below.
69
69
 
70
70
  To install Myokit, using PyQt5 for Myokit's GUI components, run:
@@ -112,12 +112,23 @@ To see what else Myokit can do, type
112
112
 
113
113
  ## Contributing to Myokit
114
114
 
115
- You can contribute to Myokit by [reporting issues](https://github.com/myokit/myokit/issues), but code contributions (bugfixes, new formats, new features etc.) are also very welcome!
116
- New features are best discussed in an issue before starting any implementation work, and guidelines for code style (and more) can be found in [CONTRIBUTING.md](https://github.com/myokit/myokit/blob/main/CONTRIBUTING.md).
115
+ Contributing to Myokit is as easy as [asking questions](https://github.com/myokit/myokit/discussions) or posting [issues and feature requests](https://github.com/myokit/myokit/issues), and we have [pledged](./CODE_OF_CONDUCT.md) to make this an inclusive experience.
116
+
117
+ We are always looking for people to contribute code too!
118
+ Guidelines to help you do this are provided in [CONTRIBUTING.md](./CONTRIBUTING.md), but before diving in please [open an issue](https://github.com/myokit/myokit/issues) so that we can first discuss what needs to be done.
119
+
120
+ A high-level plan for Myokit's future is provided in the [roadmap](./ROADMAP.md).
121
+
122
+
123
+ ### Meet the team!
124
+
125
+ Myokit's development is driven by a [team](https://github.com/orgs/myokit/people) at the Universities of Nottingham, Oxford, and Macao, led by Michael Clerx (Nottingham).
126
+ It is guided by an external advisory board composed of Jordi Heijman (Maastricht University), Trine Krogh-Madsen (Weill Cornell Medicine), and David Gavaghan (Oxford).
117
127
 
118
128
 
119
129
  ## Citing Myokit
120
130
 
121
131
  If you use Myokit in your research, please cite it using the information in our [CITATION file](https://github.com/myokit/myokit/blob/main/CITATION).
122
132
 
123
- I like to [keep track of who's using Myokit](http://myokit.org/publications/) (for my CV!). If you are using Myokit for teaching, I'd love to hear about it. You can drop me a line at michael[at]myokit.org.
133
+ We like to [keep track of who's using Myokit](https://myokit.org/publications/) for research (based on publications) and teaching (based on peronsal correspondence).
134
+ If you've used Myokit in teaching, we're always happy to hear about it so please get in touch via the [discussion board](https://github.com/myokit/myokit/discussions)!
@@ -1,23 +1,23 @@
1
- myokit/__init__.py,sha256=IqXc71vb7Y-o0sL1isxmizU_bsgTGHR5VJcz6v_Dsg4,14196
2
- myokit/__main__.py,sha256=WbcUsKX1ur_jtqxzLqNv2WS1wGvWy8W0c38ibQoYDso,57965
1
+ myokit/__init__.py,sha256=PQYSbdoMCmZyC1n7tgqZyZ7VgBzQ9onVjrnmnopXuuQ,14272
2
+ myokit/__main__.py,sha256=VXyt8m2GG62pz32H-qATT4tw988p-LlIKih0mkVYlJk,53688
3
3
  myokit/_aux.py,sha256=M9T00aqX5Q90xGxhP85uwH-C9tlY8dzDjiSjKv8l3IY,23743
4
- myokit/_config.py,sha256=Q2LGzo6HPSGMlinDj6lG1z0-q7167JLAYZKsw3YH-S4,11987
4
+ myokit/_config.py,sha256=WoUMTcHOO9oerqtad7AnQgXAND41YO-WfqlSSyCuHgU,11989
5
5
  myokit/_datablock.py,sha256=UZGPVYBFZojuKY5q6Cn3U4euvZRs6qhmxNZXDnDBrxw,89061
6
6
  myokit/_datalog.py,sha256=CVOSFhFFhfU8E0Ov4r74YbwpgE0RPo8pZm84PvO6gW8,75852
7
7
  myokit/_err.py,sha256=PZJFrb3KGqW8XiT466UDtSTsW83M2J02T96Vm2CaCto,11060
8
- myokit/_expressions.py,sha256=H-pz28J0dNmeh9aq0EdI4VgeXgsmPGRllKP8VnJa_90,103962
8
+ myokit/_expressions.py,sha256=7We9a830pV7bvQziZcjwab-96p0LXg4AfawZhvvdR8U,103902
9
9
  myokit/_io.py,sha256=2ll5Yb-sbP4tvc3pPmzhNuv_PaRMPJlNRWb1TzXfELg,8948
10
- myokit/_model_api.py,sha256=CN6-QW4f7FgWHfTLs7zoNA06f-LQhcbi5cB7Auu3_Ck,194095
11
- myokit/_myokit_version.py,sha256=BVehfIkKDm-vGeFRvvdMIWMvVNz5pAeFv9B00Um5ISE,726
10
+ myokit/_model_api.py,sha256=I93WLjstvikqpkqQ5KC4PjNVlSz3nrxms_aKDgSEZ2c,194214
11
+ myokit/_myokit_version.py,sha256=Tj0x0hW2n9taFBS4CUqW6b_QI-kKolONZiG692DKLek,726
12
12
  myokit/_parsing.py,sha256=GTVUwJvqjkQ3rc6BiwMFnzanLivbSUzW796gHCTJrNg,74065
13
13
  myokit/_progress.py,sha256=Mi2QU6Vqj4qudhXc76amXM31iID2Mo8Gljw5OH2COZ4,4410
14
- myokit/_protocol.py,sha256=7__8Caz1mpsx2-GsW2M6lF0LL42lOD2ftxu7U0zRQzI,30595
14
+ myokit/_protocol.py,sha256=_N16LGHppIv4yCSPjy0q2f-Oed0yG1wMk0ipTtXnMck,30756
15
15
  myokit/_system.py,sha256=IX3Q7_7f9X9aYsxSL2CXJc9bTcFJsJbfq_e2w-OkhOI,4602
16
16
  myokit/_unit.py,sha256=wbBT2UnFuxh1_d7rqvVLiL4xeYnjJ7ZORtqJcWS6dk4,29849
17
17
  myokit/float.py,sha256=7-BqdABN5Vm4HIgRMHSgcZ4O4Vd085-5hMB6z8zJZtg,3066
18
18
  myokit/pacing.py,sha256=_My0GwIPJh4DuUiK_kYDNBcacUaOKsffjbK5LvgK6z8,4552
19
19
  myokit/pype.py,sha256=JTKuoiwxGui6iqBXK4gxNlCdtH_IGY0FiZLtmaJ580c,8230
20
- myokit/tools.py,sha256=Nidyx09bDOsn3qrSe0xS98JaC_qDGLgUyFoKLOuGVBU,16868
20
+ myokit/tools.py,sha256=H_NPVxH3R1JLuvFhTlGf6o069r21jwEz-SS8C-yTsmc,16942
21
21
  myokit/units.py,sha256=2xcqL8pXTr743CaffNmrC0XkPy-Kh1mlKgIKDmTUnY8,8503
22
22
  myokit/_bin/example.mmt,sha256=ktX9nvyP5c-wfoxCu-8vrL8cCxeH0JIjWKPeUr7Zl4k,6226
23
23
  myokit/_bin/gui/find.png,sha256=59ceueuoUZGumOEsLDNfsrFdkT7--3W2hiOFntXQe_w,784
@@ -78,21 +78,21 @@ myokit/_bin/sundials-win-vs/lib/sundials_cvodes.dll,sha256=tzX49QEVUgQ5N77t4y1bw
78
78
  myokit/_bin/sundials-win-vs/lib/sundials_cvodes.lib,sha256=FEmPq4BcmyOZReaM68pMDBZ0tW7NPOzTO7SztUhKwMM,169196
79
79
  myokit/_bin/sundials-win-vs/lib/sundials_nvecserial.dll,sha256=QwCosLqDBV0YIYvxfTGm0h5rM6iDNNXt5apu3hMZDiY,160768
80
80
  myokit/_bin/sundials-win-vs/lib/sundials_nvecserial.lib,sha256=UmH8HCEFT_A8hsIw9Mj-ZgXeqNJJNadHnvQj9RJsfQg,59576
81
- myokit/_sim/__init__.py,sha256=XRqs-eD2WeNR7eXqJXn6gnErIua3a-uRbmrkHgD5ePA,13449
81
+ myokit/_sim/__init__.py,sha256=CuO1se4k-kpyh0muzBjdTrVfm31ZjXRLAZYhBg8P0I4,13488
82
82
  myokit/_sim/cable.c,sha256=57FecqBgVnYTnqcH0F5ocA8O4zO2iwpkHBYBV7qW5Qg,19156
83
83
  myokit/_sim/cable.py,sha256=GF1LJhoR9iSjVi16n7PhKYvSn1bDJVzSws1i8nJwM4c,18908
84
84
  myokit/_sim/cmodel.h,sha256=PlXRNDWV5JDsl28G-k3UlzwFCF5_crkAeWpRgPO8a0s,38795
85
85
  myokit/_sim/cmodel.py,sha256=9amSihccWepI1SGI98b5tvvSq2cmAMLX-ecgHoXnc0Y,15775
86
86
  myokit/_sim/compiler.c,sha256=yahdqeQhEU4Uduy3xP2NS21k8h2rQXEQTWYpsE6NEFk,4047
87
87
  myokit/_sim/compiler.py,sha256=80Qwk7_LOjbu0jt9_aeMLQMEvYj3H4xIoE525zUUEK8,2664
88
- myokit/_sim/cvodessim.c,sha256=kEwY8PGix5c7FrjA0XtE9D6jJB4k_gTndnfSxnUldXQ,72386
89
- myokit/_sim/cvodessim.py,sha256=pFD15AI_pL0NqQCQ18FdiaC12TJ-HE0WsIjy1RFqAw8,43186
88
+ myokit/_sim/cvodessim.c,sha256=iWXHVSNTN2VqGGu24N8QFRWwpUUxDo17fTIP0Fv0Ikg,78062
89
+ myokit/_sim/cvodessim.py,sha256=EtFixQFg84qQy134TWOAgFd__cUrWs1LdXiJ_YJ-e_Y,46122
90
90
  myokit/_sim/differential.hpp,sha256=LiaFNQks_4RkWeNEnUc48XjbdYyGSsxfWo35leygM68,15446
91
91
  myokit/_sim/fiber_tissue.c,sha256=mKtNy3Qs2Tg917hgCryaftwJGHqFn7WZAOuJWG3VVpY,47444
92
92
  myokit/_sim/fiber_tissue.py,sha256=A3zyGPGHNjFdGgbIzCiKYN8o4L2nq7W_ZjO996jF9Kc,50780
93
93
  myokit/_sim/jacobian.cpp,sha256=mvuxHnxiyg4GW-ik1qOgOGbaj-sb-DbtidsRDXfRIjc,8012
94
94
  myokit/_sim/jacobian.py,sha256=5Gmli0knQUozhYyarOrMBFnvytKnrufOh3HrGiycUMM,12957
95
- myokit/_sim/mcl.h,sha256=psbSuBr38bEBhS3CqNfgBjnQflqGny5uDZfL1bpb558,32352
95
+ myokit/_sim/mcl.h,sha256=B8k6eur1VsvnYO2bV94Zm2-B66sCZMgPmzCUQnfelqA,34114
96
96
  myokit/_sim/opencl.c,sha256=jQ3eJNldvX-sOnbIrexUSnOmIfEFSL9ceHNYkW18y80,5037
97
97
  myokit/_sim/opencl.py,sha256=cHJ4CeqAmDLEik0WSuZ46UJYKmpaq2i0wuEZu_ZC7ng,16446
98
98
  myokit/_sim/openclsim.c,sha256=St0P93K0mcYt2oabR7-XRsVFRsrL6kGW-b_kA-P6TsE,46541
@@ -103,9 +103,9 @@ myokit/_sim/rhs.c,sha256=ZR-S_MLdqY-Pk0FwAzz6d8JzBip8DVGk7N3RJhF_DMY,10914
103
103
  myokit/_sim/rhs.py,sha256=2yXVUrsi5cqJi6sOL87JWq7sq5E0BmoeCgZ9ksCCQYg,7392
104
104
  myokit/_sim/sundials.c,sha256=vcFNBVKuUtASV_sNoCP41bgSz_cO8PJ_wxAXoezpwYw,1720
105
105
  myokit/_sim/sundials.py,sha256=KwS7NpIHmvxcOh9ZQyxtxXO5j_tuWX8sXlGpv9eBDyE,2972
106
- myokit/formats/__init__.py,sha256=xg_MY9btxczfBziT8IcQfkY4Kr9Nx2j1TNiTJj1zOsQ,26714
107
- myokit/formats/ansic/__init__.py,sha256=adS6Eqrmo2MSZAAH9b1S3lWdZ9qSRvsxJ5OSmW6STds,3347
108
- myokit/formats/ansic/_ewriter.py,sha256=W4tj_W2F33mufifZwyuBrpx1afLlUJfEQx_nPU4B_5g,3566
106
+ myokit/formats/__init__.py,sha256=Fbc2dyNXmBLh8nE67QD9L8Azav5wgM2S8lkj9ery0iM,29248
107
+ myokit/formats/ansic/__init__.py,sha256=p30cNpKbsKJozlE-SGcTF4CqGpp3UfCS3FxjKVakPqI,3424
108
+ myokit/formats/ansic/_ewriter.py,sha256=6BNs4roR1_k7-WSF3ZnLWTRSxbM8ieb1vOcMksUUHNs,7360
109
109
  myokit/formats/ansic/_exporter.py,sha256=BFFATH_4Bxi0jLkg7qUgPI2LC0GMxUXQacDO_HbRWLE,5361
110
110
  myokit/formats/ansic/template/cable.c,sha256=e7V4CVeoIN0N8MSVenPmtst31HkiZb5Jfx15Qd3yxHU,11965
111
111
  myokit/formats/ansic/template/euler.c,sha256=_ENsjDV-J0P7JEIeZBRO3L_kjyWZWiORyH5uFJXmB0Q,6044
@@ -129,28 +129,28 @@ myokit/formats/cellml/v2/_writer.py,sha256=RF4xFxE4XKDV54evn-ap5DOYZmusFNHZt1GXe
129
129
  myokit/formats/channelml/__init__.py,sha256=4_eTw8dxPdqcgNWiYI306M7wJncmB4mwY4hUPPqRMFI,443
130
130
  myokit/formats/channelml/_importer.py,sha256=azb8xs2WB3L_fgBHnHbiXIKHPgqzVq883mxlKiqx_Bc,14605
131
131
  myokit/formats/cpp/__init__.py,sha256=5sAQjRza7kihH3y9_O5NpR3Sm5HZK-5R4skDCkEDwWU,526
132
- myokit/formats/cpp/_ewriter.py,sha256=haT8oHGH8xSqvNpxy7TTWkObEc2WUzs7mxsqo9O9Lw0,421
132
+ myokit/formats/cpp/_ewriter.py,sha256=zy_vX4-S2YY6jYQG0NXjyi1iQA7o4oJ3JNkw63gIpxk,930
133
133
  myokit/formats/cuda/__init__.py,sha256=GEoJ66dMi3ODPnsxttaHhKuZNdi7R5YnzXdbZAH63wo,816
134
- myokit/formats/cuda/_ewriter.py,sha256=AP7s-tZ-y3nY0KUUraiE0USRFrIELB88Pa_zSmhwjMM,4472
134
+ myokit/formats/cuda/_ewriter.py,sha256=nS3uPYRiurOpQNobFaT5dZhscU-dJ4kIbVJNNAa26mg,3102
135
135
  myokit/formats/cuda/_exporter.py,sha256=roe-z3Ia4YpronFAG5qS0gnFni49XnEix9unm1tjEc0,2059
136
136
  myokit/formats/cuda/template/kernel.cu,sha256=uGDeCxYBOPysBl7UoQlehU-fMGgUwbRK2hAL7oRH7Hc,8863
137
137
  myokit/formats/easyml/__init__.py,sha256=sWn5_QQTbUzTwEB_RqsqiEGQDhNJwYQEg5ad52P0Ovg,836
138
- myokit/formats/easyml/_ewriter.py,sha256=xcU0dqF2gFIJn2SVsaVw1hrveAUXtwpCUSni8QEiy7I,3482
138
+ myokit/formats/easyml/_ewriter.py,sha256=5T1GoiMtotlKMY3ZaYKcoWUeUZtWIbh3Xii8x0vis_Y,2597
139
139
  myokit/formats/easyml/_exporter.py,sha256=lGUJBO3ZAJfVcbTBQUEkGqUqdmtMXDzfGGtVda54Bx0,15771
140
140
  myokit/formats/heka/__init__.py,sha256=57KwM4D8TWD6DJXQrflBXAaEPsmuDIJak7Qtft6GX_g,847
141
141
  myokit/formats/heka/_importer.py,sha256=4HaxswB8Uvngahsh34eEXaQnE9SYakpugFo3jc6VNrA,1154
142
- myokit/formats/heka/_patchmaster.py,sha256=bnC4QScPabSS_F_69eRb35FXWECUQJhHCTeiKQhpKs4,105825
142
+ myokit/formats/heka/_patchmaster.py,sha256=Ye04aQtlRIS3NEmbbfuX4_CTq5Rty7JWYIjdozMsMYQ,106500
143
143
  myokit/formats/html/__init__.py,sha256=pFJtVdw_SIaZZO0dfYUH9XyqPO46CuxSTL4iwvcC-4U,457
144
144
  myokit/formats/html/_exporter.py,sha256=kWTB_6peG1MoxWPnGjm35Axkmw1tONSX1dCwWt0_arE,2343
145
145
  myokit/formats/html/_flatten.py,sha256=kosDcmr6KKrZbaIsXewGNiIAlpVq4N9POdPrKygcvQs,6606
146
146
  myokit/formats/latex/__init__.py,sha256=Wc1rI-KdXgs9_tDHnhhmAN5yA0S3mM3VPKWoxT4M1RA,682
147
- myokit/formats/latex/_ewriter.py,sha256=p39GqPYtJbdEQRyMCCu0FELMMZ2YVTrQMiyFboYcYK8,6690
148
- myokit/formats/latex/_exporter.py,sha256=Yd7ZmPlroqrAAqGMwk1gLetl6gDN_D9Ka-2noSa8L4w,5117
147
+ myokit/formats/latex/_ewriter.py,sha256=zal1J4LV-syi5dJnvmliJEM7uEj7-r6x6NQzqgPYDgM,7904
148
+ myokit/formats/latex/_exporter.py,sha256=Qn6dif3R2PMj3RIJ21Hgo2mvoRDMktloHjMfCC062Bk,5118
149
149
  myokit/formats/mathml/__init__.py,sha256=02X0oL2U_x-TXTGhe26OSxnNIghqMPKkQrr-_jybEYk,637
150
- myokit/formats/mathml/_ewriter.py,sha256=y0chc_sSgJh-aOc-lTiSel8qeGFW3tvZjC0V5CEc9oM,12194
150
+ myokit/formats/mathml/_ewriter.py,sha256=XfG0HrgoDsRc6OstaKFewxEXu7pFEBr0tPUjX2rmuZE,12194
151
151
  myokit/formats/mathml/_parser.py,sha256=Q166GdhGeYVLCkh4koib21JsHlBy0dw-5BuSKKTHKw8,34289
152
152
  myokit/formats/matlab/__init__.py,sha256=HA6hllc-ZaeYTA89KRbp2jq5wkif4ooTnYS6LJ9MUOw,695
153
- myokit/formats/matlab/_ewriter.py,sha256=-dfl2SD3HVR_5WRZFnxEMk88exKBs6xOZBr16cXuBTM,3172
153
+ myokit/formats/matlab/_ewriter.py,sha256=tksQOzD0rIfwshalaRpotA-_zrH4tV9WyWrKxkloiBU,4096
154
154
  myokit/formats/matlab/_exporter.py,sha256=rEgmq7cc04tSxMi6LuDLFmMP6FaQLnRYhxXAWGzEuAc,2868
155
155
  myokit/formats/matlab/template/constants.m,sha256=Aokt-xLcYMpkPNvugVaJ_EWS5baebSObV1irszV0TBc,528
156
156
  myokit/formats/matlab/template/ifthenelse.m,sha256=bGWWKclsLjg3unwy1xl1x1j3785ydZjiylSBEg2dBtc,374
@@ -158,7 +158,7 @@ myokit/formats/matlab/template/main.m,sha256=KUadSI7VoGEdfo1fHxGgbTvTe_aHswgf7sV
158
158
  myokit/formats/matlab/template/model.m,sha256=agem1bvNpTwZTBagGLBi3YR2VIMpINzRAgMR2fB9lSQ,861
159
159
  myokit/formats/matlab/template/model_wrapper.m,sha256=E71mYPv5LOAO4yUkSazMOsjVPh3ZWEQ3qtmHjD5FyN0,461
160
160
  myokit/formats/opencl/__init__.py,sha256=0mmRnX1jNQHeq79dYuymOP34uw0Uqgim9pMXaR0Zk24,6962
161
- myokit/formats/opencl/_ewriter.py,sha256=qYb4m9omjRsJw2nY-nNVz53Q0oMoEEzLht0iobnBPUU,5261
161
+ myokit/formats/opencl/_ewriter.py,sha256=pZtMi6FeiyB29-lzsz-RxOkm2D8PIE_pZkNQN60cxIQ,4944
162
162
  myokit/formats/opencl/_exporter.py,sha256=ask5Zt_T4BaRC4Dfx2aP_Q4FYqocLV-FtSGn_2WSpKo,3903
163
163
  myokit/formats/opencl/template/cable.c,sha256=nuRErxugHVJEQQs4CMNCYo730G3T_RUTB-wLu0Swz8Y,11633
164
164
  myokit/formats/opencl/template/kernel.cl,sha256=5FgX37uPpH9Ahb5vUXLMWcUM2rHLdwZjaOuhH0FiuPo,8158
@@ -166,7 +166,7 @@ myokit/formats/opencl/template/minilog.py,sha256=1lYY0eqVtnZ__eFt-Nb19uFnEphWNot
166
166
  myokit/formats/opencl/template/plot.py,sha256=kgLwMvMJB-oNxsl5POGP0vdclHwyQoHWEHnbREAWBIQ,1042
167
167
  myokit/formats/opencl/template/test.sh,sha256=S4Jtu9t3cdoAnONJJDPwY06KWmyJhJ1Aa4pZ5ronGMA,162
168
168
  myokit/formats/python/__init__.py,sha256=mbDDQu845wQVLwc6t0ycR0yi9muL66q6XXmqMOQ_YjI,1049
169
- myokit/formats/python/_ewriter.py,sha256=0KK3158TPhdLr7o5D49fT_YwkhP3E9qD34x5XlDoQOM,6751
169
+ myokit/formats/python/_ewriter.py,sha256=bdW3YrZLO7a_A_aqfnPQHAnyjU7EQBCG490oUF3JOpo,8251
170
170
  myokit/formats/python/_exporter.py,sha256=_qgRV1mFDZxhjhWG5rUsCkhaoGh-mxiZPwYA_6RHNRA,969
171
171
  myokit/formats/python/template/sim.py,sha256=HHQMZUFKC0711AFgaA8mgYc75O576PMIsujjm00MZcM,10311
172
172
  myokit/formats/sbml/__init__.py,sha256=DoVaUPAII9rMA3_umTKXOcGbKk8ESfHjh7XXVt6Zh3Y,653
@@ -174,7 +174,7 @@ myokit/formats/sbml/_api.py,sha256=ABu9gF9YMNUm-bWdIMXiI3aYYtQid2rx_9LZWUKzi6A,5
174
174
  myokit/formats/sbml/_importer.py,sha256=CiejktBXOsVmq6FuP4ayBztUJ6d4peSqjxGltTBvn38,987
175
175
  myokit/formats/sbml/_parser.py,sha256=ZEchxxsd7IdS-PDnIDppULiUmCUlvPDYBM98cXkLTzs,29181
176
176
  myokit/formats/stan/__init__.py,sha256=u90KilozTsG00LpWAXUPGBNztYuLfrdRk5T3j8m2z0c,2877
177
- myokit/formats/stan/_ewriter.py,sha256=Uqp6081Vj7p9XadmX7KUsW8WukQJ1Sm1KIgXLgEWuGU,3102
177
+ myokit/formats/stan/_ewriter.py,sha256=ro-4Dc3h_c2IxQYFeggQLOToq6Zxa_je4uAcSCjM1nY,2998
178
178
  myokit/formats/stan/_exporter.py,sha256=ROnxBItJm4QnANbvApAyHDNvvoI_pdpsF9AfnB-2Zb0,3745
179
179
  myokit/formats/stan/template/cell.stan,sha256=q478Q7tV9J0CWIrgCMeIQUtVPRt7wnrjRZLmXiJmT8g,5305
180
180
  myokit/formats/stan/template/run.py,sha256=1-1Kd6EZiz-nuI7nXHABjrvbp1Shdav9P5a1k89Mm2A,92
@@ -192,16 +192,16 @@ myokit/gui/datalog_viewer.py,sha256=7z5nrjrdDieQ2b1ii4inyoEvd7birYzUbdtJLrOI--8,
192
192
  myokit/gui/explorer.py,sha256=WCAU9g7lPKxddIgp9Sr4nTfQ2wTzN9faVvIxg1D1PVA,8676
193
193
  myokit/gui/ide.py,sha256=T-Acv6bPt0TVADxhGeBjiASzISwjjpUabZ_Z-p3VKZ4,108238
194
194
  myokit/gui/progress.py,sha256=kzm7QsnoNySi9f2oosUcvIOGq9eGi0Pt4QfMl4EViPA,2157
195
- myokit/gui/source.py,sha256=C3aYmDZh6yTMEF35zoP11CxtMDgiU90lVPU_KC3spJA,52366
195
+ myokit/gui/source.py,sha256=w4LM-DeeMedQsQwwPNht2Mdvd6Q2FQwX-JV2uoEW770,52367
196
196
  myokit/gui/vargrapher.py,sha256=GALPOZjQ0ShOBu_qd_RwVRRQla0t2ctgQ25Jb8NmuJ8,6072
197
197
  myokit/lib/__init__.py,sha256=GWvBrLDJHdbobXjt9WMFAd1td2Ml7dnvtzsDmYfuVFM,216
198
198
  myokit/lib/deps.py,sha256=gB-W7LFZK6gAzf00mXvu6ws44Yua06Gd9HsKMe0lpXM,23859
199
199
  myokit/lib/guess.py,sha256=BW_wOeStFKpjdZWRZpaO5PLEj8KGSdy_1kc3FM36zfk,28056
200
- myokit/lib/hh.py,sha256=TR9ENse4bG5uvh-7r5_LyEo7m5IJBcoTP3KEXp1EYIs,46678
201
- myokit/lib/markov.py,sha256=RjQLaj7AzLY7A3GtIg12DYNgdG_TQgmi8ZLp80Rm_jw,67773
200
+ myokit/lib/hh.py,sha256=8wMRnjrjZ8gNeErKz0KYQSqUeljJPPC2G339jPjNFXw,46813
201
+ myokit/lib/markov.py,sha256=VNXvrRdnATILxvuXm-VPw7S_L1Jtd9rRJPtOHKYtxZQ,67940
202
202
  myokit/lib/multi.py,sha256=WDYvoAaVsMqnshk1NoVnH1zyVeVZ0GtsdHplZlkG86A,4408
203
203
  myokit/lib/plots.py,sha256=tRyM4DhcZzlPLBs-VxdsZ7MJXvqLlDWmC12WhL7pP44,13875
204
- myokit/tests/__init__.py,sha256=-0MpTesHgJGmJ75MIveGUyDhAcy7vhP39VtkLlZQEng,7752
204
+ myokit/tests/__init__.py,sha256=jdnVnTVd5sO0Y6bbD-vcZ8kZUkVSlVqJExfSzkJ5GXE,10233
205
205
  myokit/tests/ansic_event_based_pacing.py,sha256=UYq-18UzolgJflpHJ2UyKKnARa5Ekc1OGoQ5jiH0qqU,2738
206
206
  myokit/tests/ansic_time_series_pacing.py,sha256=ky8__D-FNE957xoLDWSYF1C67bXEU3DRMErK3ed55Yk,1250
207
207
  myokit/tests/test_aux.py,sha256=d3Tn8qi8ErC9E6LNFd10NzRacekbVoyEGzvcZ9udrMc,22536
@@ -220,32 +220,37 @@ myokit/tests/test_datalog.py,sha256=-fGonuTGZwbfpUweAsTJel_V_ljJUHvkbIjwAajCa0U,
220
220
  myokit/tests/test_dependency_checking.py,sha256=OQgJB2ei3r1KnBHfoZZe6JE2-I_xjLhJTuMPaYR7j64,60654
221
221
  myokit/tests/test_expressions.py,sha256=58xNm_5cekcANfhyYKWYP5LiPKkrjZqW4h0E7E_sw8I,138508
222
222
  myokit/tests/test_float.py,sha256=s4GpsSHDSmmstPTpXCFCLE-44lvZqM71OtVTooZBDSA,4882
223
- myokit/tests/test_formats.py,sha256=vmgvAiH8EiDBtaMmMgi3vSoAT6PuCMBv1C7-sBZkDPc,4236
224
- myokit/tests/test_formats_axon.py,sha256=lrbb-3ETXarrLItuAWgGBJItzGz7FIsenTEM9Y-o3Fo,32603
223
+ myokit/tests/test_formats.py,sha256=UfxN8d2SkEip9SLZ4aBIE95WnY1LaGvnxd2xh8RWIA4,8085
224
+ myokit/tests/test_formats_ansic.py,sha256=2WUT1SeulwyPNE9Zx1eI8Id-WWRp8xf-8CvTBbgLouw,13260
225
+ myokit/tests/test_formats_axon.py,sha256=PMn7waANp-k7vXKgEOgwyGfgn89aUFy56gg0RmBipH0,33181
225
226
  myokit/tests/test_formats_cellml.py,sha256=WeNecMsTWubIBq6C0QMU4-cR-ZpNk69dJ7aHldb22zE,19078
226
227
  myokit/tests/test_formats_channelml.py,sha256=BS90euUpWN1DgkShTYK7fdwuP8qIt3CzUAXoiY5YZYc,6703
227
- myokit/tests/test_formats_easyml.py,sha256=o4FzwC6t0pqFzC4bz4r7soHX0DAo0rjFm2gboR3lYw4,11358
228
- myokit/tests/test_formats_exporters.py,sha256=hnpnvDTsbvwCqPuCHqR3GlMfYzzRA77OfY3fN3pPtsg,9169
229
- myokit/tests/test_formats_expression_writers.py,sha256=eaKX7yv3nzDeisnsfvwB-4xevJbtjXx1OOPIBk1wrrA,40800
230
- myokit/tests/test_formats_html.py,sha256=5iWqGH5NcDpTE4qVTE1Vm1Dqi7dXe_1CcuAAwdwKKkM,3539
231
- myokit/tests/test_formats_importers.py,sha256=wLZpDu2-5DUB5MKWBeYDRi8u7qJff9PCMN3oB1Cfv9s,1531
232
- myokit/tests/test_formats_mathml_content.py,sha256=zZxUk5jpxcLoW3U7S1XpHOCD88IMOcV1Xo5AWh8rJ84,37444
233
- myokit/tests/test_formats_mathml_presentation.py,sha256=XOBTx2gNEAMiH4FWtq82ANAoqAyoqFZ64QNEpjHfdn0,8726
234
- myokit/tests/test_formats_opencl.py,sha256=KPESZu5UZ36VXSJotY176s1XjATIhHPVlE0_opMLBOI,17298
228
+ myokit/tests/test_formats_cpp.py,sha256=KHDxjkEz90LbIMYT1YXhY4u_dsrQYUjIF-2m2T9U2Lg,3762
229
+ myokit/tests/test_formats_cuda.py,sha256=RerVGIGv1yns8TKuuRp-XhHM8mF0avzaq-1dwho_YSY,8695
230
+ myokit/tests/test_formats_easyml.py,sha256=SOpTrUdfOXZRcJQsCYxK19zge4znkrYrz9ByMEzVjGU,13211
231
+ myokit/tests/test_formats_exporters_run.py,sha256=22-apJswBM2CsuVXDGaU69m7fINJjNs7YtkvnaS9IAw,6647
232
+ myokit/tests/test_formats_html.py,sha256=k2atyU5L9krTv1fMIcHyRPftjGeRA-axT4SnPjfwkMs,3520
233
+ myokit/tests/test_formats_latex.py,sha256=Mfk1AjIpx93qD-OujXdS9tbzm-freb2F8seBCkWH2Ws,8546
234
+ myokit/tests/test_formats_mathml_content.py,sha256=4QRrvEaaAjw9h8waF4NbAY7ofsx-zNiMq2oO7rhYREs,38093
235
+ myokit/tests/test_formats_mathml_presentation.py,sha256=cndbxwgNetfYXw8PMbnSbT54VhaS1jPIUFUavER7vKw,9076
236
+ myokit/tests/test_formats_matlab.py,sha256=M5uDMKZLbdNVjBWhngbLvmyrcDFO9LWL-Qd01xM-gew,8021
237
+ myokit/tests/test_formats_opencl.py,sha256=Tj6xWgxcDHZjaHDiR6CxQmwppbA57Zj9ElKaZtlm8mI,8844
238
+ myokit/tests/test_formats_python.py,sha256=-LCa5VbUagLy2miX-CZ0u9keQHgejuawkjEJpc9vrFE,22761
235
239
  myokit/tests/test_formats_sbml.py,sha256=QujY6HGngAOuLdSnTmj7yUCC5oMIpzr65OmNOLaurtM,4672
236
- myokit/tests/test_formats_sympy.py,sha256=L52YIFGQI-u0FWWBZjpsp2vRmnlsPpPoDXdAUGqrdlY,10324
240
+ myokit/tests/test_formats_stan.py,sha256=C5ogbR8Oq0TAqJKTEVvV4XeTaBPAdTnQP44jlxzeg44,6310
241
+ myokit/tests/test_formats_sympy.py,sha256=9fDYA6_8ZSmqnaAigJ16gr3Y9Es2A5eGvwBiuLnW2ts,10709
237
242
  myokit/tests/test_formats_wcp.py,sha256=qL0_IqRFcjHTgXacTHUJaqqFgnnbIRu-XnWQFaRY_5Y,7658
238
243
  myokit/tests/test_io.py,sha256=2-lpcNeOmyxAqACLaSZDLhmGMdJPfjCDjMoj7rvRcx8,14334
239
244
  myokit/tests/test_jacobian_calculator.py,sha256=_nBJdNI0L6tspWX7RgZcM-WW9CJ8oxZpSNyh4PHMAgE,1821
240
245
  myokit/tests/test_jacobian_tracer.py,sha256=SoT6pOXKtzsDHPY2krHVCTtu7BDBtYobhFqejj77q4M,1767
241
246
  myokit/tests/test_lib_deps.py,sha256=0Hgw_ncakKuKOe8awVezmTdxIIoVMZz4JjTEFsIOakc,7476
242
247
  myokit/tests/test_lib_guess.py,sha256=IqbElIMWQN_FxiGj4tohZq9JZLpSAFzn4d9lo0-WKOE,42333
243
- myokit/tests/test_lib_hh.py,sha256=rbNtnT_JXGIEbM-nN82IfntHAz7W2XbRW9CCMo7fOB8,31014
248
+ myokit/tests/test_lib_hh.py,sha256=f6QUvPpsJlRQ5gnULlQQUO9yh4sRSYr7rsqQCURNi3o,32591
244
249
  myokit/tests/test_lib_markov.py,sha256=Rg_jqgSiKtlpaE6pLiCcmYlCTqyVkPkQ5SIGfyPRv2I,39983
245
250
  myokit/tests/test_lib_multi.py,sha256=XL2qxtgNeO2aRaaM1VEzYBo1H3FTBY7-cftqsKwoNHo,5145
246
- myokit/tests/test_lib_plots.py,sha256=sV33SS2SGALZ_jG3QlT3dUL0wdDycHMeZqu1i0nLRx8,6062
251
+ myokit/tests/test_lib_plots.py,sha256=_t1QucHdCoy6fALOZDY9DL0cMRJYB0nflk68LFSwU7U,5754
247
252
  myokit/tests/test_meta.py,sha256=PogngkYjRyZyA5tsf0KNqx1b1k1SNjysFye61f67pho,2829
248
- myokit/tests/test_model.py,sha256=nUCoOptyawu26ikiwwBloOafk1jG6Gq72k00BHGkpc4,86195
253
+ myokit/tests/test_model.py,sha256=rsBSw1hFCcdTwDg-5IssNWc476eYd2AtPvQiUXbKTT0,87008
249
254
  myokit/tests/test_model_building.py,sha256=-WSdpbfE4KkAW6hFZpncTvZqLss2L4F2TLMl4YcxdFs,16716
250
255
  myokit/tests/test_opencl_info.py,sha256=FlqRD1WZacypbbQ1wvO1f0Y279MiCDOE7ZkDDzAVOGk,3834
251
256
  myokit/tests/test_pacing_factory.py,sha256=DoZKUiltq8crk06pJVgCfoZCBhkjoOf4q8zT_XzYhL8,8193
@@ -262,7 +267,7 @@ myokit/tests/test_rhs_benchmarker.py,sha256=Gb3LaAiu8SW__BBM3l0TbMzxML1PpEqm3g8T
262
267
  myokit/tests/test_sbml_api.py,sha256=jXLarqmGorr9SpS7ULlOuf3nH3iIQTJJI0JdXYtI0NE,71633
263
268
  myokit/tests/test_sbml_parser.py,sha256=ipiFs8VHcXq1-yC_9XUuonMQPLhlrYdkqvQ05BdtYiw,54542
264
269
  myokit/tests/test_simulation_1d.py,sha256=YIjqVoyOgxrvAabpSOfLfUAOBR6dIKJoqac92VjL4ww,19281
265
- myokit/tests/test_simulation_cvodes.py,sha256=4EYzloKSIUS1j5WWp-Zl_ZKHxoeZXZdGkRhOPhtslLw,44343
270
+ myokit/tests/test_simulation_cvodes.py,sha256=wqjp8D8ksINWmC1tyYeSpAaAzGqrpXVOYvqip1FObSI,48408
266
271
  myokit/tests/test_simulation_cvodes_from_disk.py,sha256=FqBBvR4I40gDA3-RNlT0w2dhYNNVGStMfp4F5XN6JSs,1853
267
272
  myokit/tests/test_simulation_fiber_tissue.py,sha256=a4Mu4HHzx3XcG0wLpy21bztRpRA2BASW0BOHd4Wl3fU,36596
268
273
  myokit/tests/test_simulation_log_interval.py,sha256=URVzBXBjbsHqNn5JBHs7HEVsemgRxaWBg4f9jla8b6c,14033
@@ -286,7 +291,7 @@ myokit/tests/data/conditional.mmt,sha256=rMI-bVtvsg_vRw21IuwuEw_LQrxUXzFcpN7kbsT
286
291
  myokit/tests/data/cv1d.mmt,sha256=lYaTbihfohLxeHsEyjHR-C67JH6Oj4s3kQSJCr6Q7ho,6067
287
292
  myokit/tests/data/cv1d.zip,sha256=zges9iwt5feQSYxKUcc_sEP5GyvryxVtHLi6j0b1JNs,109483
288
293
  myokit/tests/data/decker-2009.mmt,sha256=WGBmXlEsNLbCgbWYQv-VGLNomac2eedov6yhCjqjyPM,23916
289
- myokit/tests/data/decker.model,sha256=DQiySHwuhFSY3Ldd9mFgR9__tID6h-7w27ruUs0Uvps,18350
294
+ myokit/tests/data/decker.model,sha256=ZIlCAGnL3UrS-QbdgSQLjRjGZZGu3fxRWLBR5d37K6I,18227
290
295
  myokit/tests/data/dn-1985-normalised.mmt,sha256=KfNKoemzy25vUwAoEdBVuc4w1uzlv758KBx-1qPEpLA,10416
291
296
  myokit/tests/data/dom-markov.mmt,sha256=JGBC54hUVVpHNIYxaQ8wUBnySrdlJln1mPwMOriVQh4,800
292
297
  myokit/tests/data/lr-1991-dep.mmt,sha256=ppyK00rW6NbydHozfTHZgoq5QK9LCP2W98zmpVfivtg,4992
@@ -386,9 +391,9 @@ myokit/tests/data/multi/beeler-no-name.mmt,sha256=tBeWcTVag1gAQAvxWlUqH6GQhF1D4D
386
391
  myokit/tests/data/multi/lr-1991.mmt,sha256=9jzHRAy1nLiBOPioiEpXmsRvIqwEezRY_ve2eHMDbTQ,6013
387
392
  myokit/tests/data/multi/not-a-model.csv,sha256=7ek3pQXr2fpjNjFTs-B-T_kEehx8IQ-evdcg24dtMEs,109
388
393
  myokit/tests/data/multi/subdir/beeler-no-name.mmt,sha256=tBeWcTVag1gAQAvxWlUqH6GQhF1D4DMnlmuePQn1vBY,3008
389
- myokit-1.35.4.dist-info/LICENSE.txt,sha256=se00mO5HZwoBBvmfBehoYe5teY6asOaDKXgGTfqqZBE,1833
390
- myokit-1.35.4.dist-info/METADATA,sha256=O1cEcWiXeguS1Ta_wHcA5JR__PswKETU_6vM7omASdg,5558
391
- myokit-1.35.4.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
392
- myokit-1.35.4.dist-info/entry_points.txt,sha256=yP9wy3w0YAAYUD5PYGliYKhnKvEp5l6p4S_XvXsqreM,48
393
- myokit-1.35.4.dist-info/top_level.txt,sha256=vopnhGEticqud7tKy6L6dvi_n_AMXoiYBEiboRTnsWY,7
394
- myokit-1.35.4.dist-info/RECORD,,
394
+ myokit-1.36.1.dist-info/LICENSE.txt,sha256=19_GtuJ-mvPSB1zH9rF_uKVK-bs5bEXFc7PISIRF1KI,1833
395
+ myokit-1.36.1.dist-info/METADATA,sha256=bCxAeMCjxz2LrlwPK6TPNKOUBXlZhfr_Jtqfn_GMBOA,6279
396
+ myokit-1.36.1.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
397
+ myokit-1.36.1.dist-info/entry_points.txt,sha256=yP9wy3w0YAAYUD5PYGliYKhnKvEp5l6p4S_XvXsqreM,48
398
+ myokit-1.36.1.dist-info/top_level.txt,sha256=vopnhGEticqud7tKy6L6dvi_n_AMXoiYBEiboRTnsWY,7
399
+ myokit-1.36.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: bdist_wheel (0.40.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5