bngsim 0.11.32__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.
Files changed (1238) hide show
  1. bngsim-0.11.32/.clang-format +3 -0
  2. bngsim-0.11.32/.github/workflows/release.yml +84 -0
  3. bngsim-0.11.32/.github/workflows/wheels.yml +68 -0
  4. bngsim-0.11.32/.gitignore +2 -0
  5. bngsim-0.11.32/.pre-commit-config.yaml +128 -0
  6. bngsim-0.11.32/.readthedocs.yaml +31 -0
  7. bngsim-0.11.32/ACKNOWLEDGMENTS.md +207 -0
  8. bngsim-0.11.32/CHANGELOG.md +5543 -0
  9. bngsim-0.11.32/CMakeLists.txt +886 -0
  10. bngsim-0.11.32/CONTRIBUTING.md +36 -0
  11. bngsim-0.11.32/LICENSE +9 -0
  12. bngsim-0.11.32/NOTICE +803 -0
  13. bngsim-0.11.32/PKG-INFO +160 -0
  14. bngsim-0.11.32/README.md +107 -0
  15. bngsim-0.11.32/REPRODUCING.md +128 -0
  16. bngsim-0.11.32/SUPPORT_MATRIX.md +146 -0
  17. bngsim-0.11.32/ci/build_suitesparse.ps1 +96 -0
  18. bngsim-0.11.32/ci/build_suitesparse.sh +94 -0
  19. bngsim-0.11.32/docs/about/architecture.md +26 -0
  20. bngsim-0.11.32/docs/about/benchmarks.md +154 -0
  21. bngsim-0.11.32/docs/bngsim-coyote-logo/bngsim-favicon.svg +7 -0
  22. bngsim-0.11.32/docs/bngsim-coyote-logo/bngsim-logo.svg +7 -0
  23. bngsim-0.11.32/docs/bngsim-coyote-logo/bngsim-readme-card-sienna.svg +7 -0
  24. bngsim-0.11.32/docs/bngsim-coyote-logo/coyote.png +0 -0
  25. bngsim-0.11.32/docs/conf.py +71 -0
  26. bngsim-0.11.32/docs/development/building.md +67 -0
  27. bngsim-0.11.32/docs/development/extending.md +60 -0
  28. bngsim-0.11.32/docs/index.md +67 -0
  29. bngsim-0.11.32/docs/installation.md +214 -0
  30. bngsim-0.11.32/docs/quickstart.md +150 -0
  31. bngsim-0.11.32/docs/reference/api.md +212 -0
  32. bngsim-0.11.32/docs/reference/expressions.md +127 -0
  33. bngsim-0.11.32/docs/requirements.txt +6 -0
  34. bngsim-0.11.32/docs/user-guide/codegen.md +156 -0
  35. bngsim-0.11.32/docs/user-guide/conservation-laws.md +72 -0
  36. bngsim-0.11.32/docs/user-guide/events.md +111 -0
  37. bngsim-0.11.32/docs/user-guide/interchange.md +201 -0
  38. bngsim-0.11.32/docs/user-guide/loading-models.md +108 -0
  39. bngsim-0.11.32/docs/user-guide/network-free.md +109 -0
  40. bngsim-0.11.32/docs/user-guide/pybnf.md +83 -0
  41. bngsim-0.11.32/docs/user-guide/results.md +87 -0
  42. bngsim-0.11.32/docs/user-guide/sensitivities.md +297 -0
  43. bngsim-0.11.32/docs/user-guide/simulation.md +77 -0
  44. bngsim-0.11.32/docs/user-guide/solvers.md +87 -0
  45. bngsim-0.11.32/docs/user-guide/steady-state.md +190 -0
  46. bngsim-0.11.32/docs/user-guide/table-functions.md +165 -0
  47. bngsim-0.11.32/include/bngsim/bngsim.hpp +23 -0
  48. bngsim-0.11.32/include/bngsim/bngsim_api.h +96 -0
  49. bngsim-0.11.32/include/bngsim/cc_jit.hpp +120 -0
  50. bngsim-0.11.32/include/bngsim/dynamic_library.hpp +147 -0
  51. bngsim-0.11.32/include/bngsim/expr_compat.hpp +54 -0
  52. bngsim-0.11.32/include/bngsim/expression.hpp +132 -0
  53. bngsim-0.11.32/include/bngsim/function_columns.hpp +95 -0
  54. bngsim-0.11.32/include/bngsim/functional_jac_scatter.hpp +106 -0
  55. bngsim-0.11.32/include/bngsim/lapack_dense_linsol.hpp +114 -0
  56. bngsim-0.11.32/include/bngsim/mir_jit.hpp +361 -0
  57. bngsim-0.11.32/include/bngsim/mm_jacobian.hpp +49 -0
  58. bngsim-0.11.32/include/bngsim/model.hpp +366 -0
  59. bngsim-0.11.32/include/bngsim/model_builder.hpp +266 -0
  60. bngsim-0.11.32/include/bngsim/net_file_loader.hpp +27 -0
  61. bngsim-0.11.32/include/bngsim/nfsim_simulator.hpp +257 -0
  62. bngsim-0.11.32/include/bngsim/platform_compat.hpp +43 -0
  63. bngsim-0.11.32/include/bngsim/result.hpp +267 -0
  64. bngsim-0.11.32/include/bngsim/rulemonkey_simulator.hpp +98 -0
  65. bngsim-0.11.32/include/bngsim/simulator.hpp +98 -0
  66. bngsim-0.11.32/include/bngsim/steady_state.hpp +22 -0
  67. bngsim-0.11.32/include/bngsim/sundials_guards.hpp +226 -0
  68. bngsim-0.11.32/include/bngsim/table_function.hpp +140 -0
  69. bngsim-0.11.32/include/bngsim/types.hpp +837 -0
  70. bngsim-0.11.32/include/bngsim/wallclock.hpp +87 -0
  71. bngsim-0.11.32/parity_checks/README.md +126 -0
  72. bngsim-0.11.32/parity_checks/_core/README.md +33 -0
  73. bngsim-0.11.32/parity_checks/_core/__init__.py +51 -0
  74. bngsim-0.11.32/parity_checks/_core/differ.py +270 -0
  75. bngsim-0.11.32/parity_checks/_core/fingerprint.py +104 -0
  76. bngsim-0.11.32/parity_checks/_core/oracles.py +87 -0
  77. bngsim-0.11.32/parity_checks/_core/schema.py +253 -0
  78. bngsim-0.11.32/parity_checks/_core/taxonomy.py +74 -0
  79. bngsim-0.11.32/parity_checks/_core/versions.py +115 -0
  80. bngsim-0.11.32/parity_checks/amici_parity/.gitignore +6 -0
  81. bngsim-0.11.32/parity_checks/amici_parity/AMICI_KNOWN_ISSUES.md +69 -0
  82. bngsim-0.11.32/parity_checks/amici_parity/AMICI_PIN.json +20 -0
  83. bngsim-0.11.32/parity_checks/amici_parity/README.md +172 -0
  84. bngsim-0.11.32/parity_checks/amici_parity/_amici_common.py +522 -0
  85. bngsim-0.11.32/parity_checks/amici_parity/amici_ode_jobs.json +1192 -0
  86. bngsim-0.11.32/parity_checks/amici_parity/amici_run.py +578 -0
  87. bngsim-0.11.32/parity_checks/amici_parity/build_amici_jobs.py +209 -0
  88. bngsim-0.11.32/parity_checks/amici_parity/generate_amici_matrix.py +3588 -0
  89. bngsim-0.11.32/parity_checks/bng_parity/.gitignore +2 -0
  90. bngsim-0.11.32/parity_checks/bng_parity/README.md +353 -0
  91. bngsim-0.11.32/parity_checks/bng_parity/_bng_common.py +2864 -0
  92. bngsim-0.11.32/parity_checks/bng_parity/bng_ode_run.py +720 -0
  93. bngsim-0.11.32/parity_checks/bng_parity/bng_stoch_run.py +1198 -0
  94. bngsim-0.11.32/parity_checks/bng_parity/bngsim_backend.py +215 -0
  95. bngsim-0.11.32/parity_checks/bng_parity/bootstrap_parity_env.py +160 -0
  96. bngsim-0.11.32/parity_checks/bng_parity/build_jobs.py +191 -0
  97. bngsim-0.11.32/parity_checks/bng_parity/generate_bng_matrix.py +1557 -0
  98. bngsim-0.11.32/parity_checks/bng_parity/golden/README.md +134 -0
  99. bngsim-0.11.32/parity_checks/bng_parity/golden/golden.json +2621 -0
  100. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__aktsignaling__akt-signaling.json +1 -0
  101. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__brusselatoroscillator__brusselator-oscillator.json +1 -0
  102. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__e2frbcellcycleswitch__e2f-rb-cell-cycle-switch.json +1 -0
  103. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Examples__biology__sonichedgehoggradient__sonic-hedgehog-gradient.json +1 -0
  104. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__Hat2016__Hat_2016.json +1 -0
  105. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__Lang2024__Lang_2024.json +1 -0
  106. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__Pekalski2013__Pekalski_2013.json +1 -0
  107. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Published__PyBioNetGen__core__polynomialground__polynomial_ground.json +1 -0
  108. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/fast__rulehub__Tutorials__nfkb__nfkb.json +1 -0
  109. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/glacial__rulehub__Published__Goldstein1980__blbr_heterogeneity_goldstein1980.json +1 -0
  110. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/original__bngl_models__my_models__ssa__gk_simple.json +1 -0
  111. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/original__bngl_models__my_models__ssa__oscillatory_system.json +1 -0
  112. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/slow__rulehub__Tutorials__NativeTutorials__ABCssa__ABC_ssa.json +1 -0
  113. bngsim-0.11.32/parity_checks/bng_parity/golden/trajectories/slow__rulehub__Tutorials__NativeTutorials__CircadianOscillator__CircadianOscillator.json +1 -0
  114. bngsim-0.11.32/parity_checks/bng_parity/jobs.json +944 -0
  115. bngsim-0.11.32/parity_checks/bng_parity/manifest.csv +896 -0
  116. bngsim-0.11.32/parity_checks/bng_parity/manifest.json +22529 -0
  117. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/aktsignaling/akt-signaling.bngl +100 -0
  118. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/allostericactivation/allosteric-activation.bngl +69 -0
  119. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ampksignaling/ampk-signaling.bngl +101 -0
  120. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/apoptosiscascade/apoptosis-cascade.bngl +111 -0
  121. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/autoactivationloop/auto-activation-loop.bngl +103 -0
  122. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/autophagyregulation/autophagy-regulation.bngl +102 -0
  123. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bcrsignaling/bcr-signaling.bngl +112 -0
  124. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/betaadrenergicresponse/beta-adrenergic-response.bngl +109 -0
  125. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bistabletoggleswitch/bistable-toggle-switch.bngl +110 -0
  126. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bloodcoagulationthrombin/blood-coagulation-thrombin.bngl +102 -0
  127. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/bmpsignaling/bmp-signaling.bngl +106 -0
  128. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/brusselatoroscillator/brusselator-oscillator.bngl +95 -0
  129. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/calcineurinnfatpathway/calcineurin-nfat-pathway.bngl +107 -0
  130. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/caspaseactivationloop/caspase-activation-loop.bngl +92 -0
  131. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/cd40signaling/cd40-signaling.bngl +99 -0
  132. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/cellcyclecheckpoint/cell-cycle-checkpoint.bngl +118 -0
  133. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/checkpointkinasesignaling/checkpoint-kinase-signaling.bngl +109 -0
  134. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/chemotaxissignaltransduction/chemotaxis-signal-transduction.bngl +105 -0
  135. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/circadianoscillator/circadian-oscillator.bngl +93 -0
  136. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/clockbmal1genecircuit/clock-bmal1-gene-circuit.bngl +99 -0
  137. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/competitiveenzymeinhibition/competitive-enzyme-inhibition.bngl +73 -0
  138. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/complementactivationcascade/complement-activation-cascade.bngl +103 -0
  139. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/contactinhibitionhippoyap/contact-inhibition-hippo-yap.bngl +102 -0
  140. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/cooperativebinding/cooperative-binding.bngl +67 -0
  141. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dnadamagerepair/dna-damage-repair.bngl +91 -0
  142. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dnamethylationdynamics/dna-methylation-dynamics.bngl +102 -0
  143. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dr5apoptosissignaling/dr5-apoptosis-signaling.bngl +96 -0
  144. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/dualsitephosphorylation/dual-site-phosphorylation.bngl +74 -0
  145. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/e2frbcellcycleswitch/e2f-rb-cell-cycle-switch.bngl +100 -0
  146. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/egfrsignalingpathway/egfr-signaling-pathway.bngl +94 -0
  147. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/eif2astressresponse/eif2a-stress-response.bngl +98 -0
  148. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/endosomalsortingrab/endosomal-sorting-rab.bngl +88 -0
  149. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/erknucleartranslocation/erk-nuclear-translocation.bngl +93 -0
  150. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/erstressresponse/er-stress-response.bngl +59 -0
  151. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/geneexpressiontoggle/gene-expression-toggle.bngl +49 -0
  152. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/glioblastomaegfrviiisignaling/glioblastoma-egfrviii-signaling.bngl +94 -0
  153. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/glycolysisbranchpoint/glycolysis-branch-point.bngl +45 -0
  154. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/gpcrdesensitizationarrestin/gpcr-desensitization-arrestin.bngl +93 -0
  155. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hedgehogsignalingpathway/hedgehog-signaling-pathway.bngl +99 -0
  156. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hematopoieticgrowthfactor/hematopoietic-growth-factor.bngl +63 -0
  157. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hif1adegradationloop/hif1a_degradation_loop.bngl +92 -0
  158. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/hypoxiaresponsesignaling/hypoxia-response-signaling.bngl +57 -0
  159. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/il1bsignaling/il1b-signaling.bngl +95 -0
  160. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/il6jakstatpathway/il6-jak-stat-pathway.bngl +101 -0
  161. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/immunesynapseformation/immune-synapse-formation.bngl +54 -0
  162. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/inflammasomeactivation/inflammasome-activation.bngl +59 -0
  163. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/inositolphosphatemetabolism/inositol-phosphate-metabolism.bngl +99 -0
  164. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/insulinglucosehomeostasis/insulin-glucose-homeostasis.bngl +100 -0
  165. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/interferonsignaling/interferon-signaling.bngl +58 -0
  166. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ire1axbp1erstress/ire1a-xbp1-er-stress.bngl +101 -0
  167. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/jakstatcytokinesignaling/jak-stat-cytokine-signaling.bngl +59 -0
  168. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/jnkmapksignaling/jnk-mapk-signaling.bngl +88 -0
  169. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/kirchannelregulation/kir-channel-regulation.bngl +82 -0
  170. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/lacoperonregulation/lac-operon-regulation.bngl +73 -0
  171. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/lipidmediatedpip3signaling/lipid-mediated-pip3-signaling.bngl +59 -0
  172. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ltypecalciumchanneldynamics/l-type-calcium-channel-dynamics.bngl +114 -0
  173. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/mapksignalingcascade/mapk-signaling-cascade.bngl +67 -0
  174. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/michaelismentenkinetics/michaelis-menten-kinetics.bngl +40 -0
  175. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/mtorc2signaling/mtorc2-signaling.bngl +98 -0
  176. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/mtorsignaling/mtor-signaling.bngl +65 -0
  177. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/myogenicdifferentiation/myogenic-differentiation.bngl +57 -0
  178. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/negativefeedbackloop/negative-feedback-loop.bngl +52 -0
  179. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/neurotransmitterrelease/neurotransmitter-release.bngl +61 -0
  180. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/nfkbfeedback/nfkb-feedback.bngl +114 -0
  181. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/nocgmpsignaling/no-cgmp-signaling.bngl +98 -0
  182. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/notchdeltalateralinhibition/notch-delta-lateral-inhibition.bngl +49 -0
  183. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/p38mapksignaling/p38-mapk-signaling.bngl +78 -0
  184. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/p53mdm2oscillator/p53-mdm2-oscillator.bngl +37 -0
  185. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/parp1mediateddnarepair/parp1-mediated-dna-repair.bngl +86 -0
  186. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/phosphorelaychain/phosphorelay-chain.bngl +38 -0
  187. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/plateletactivation/platelet-activation.bngl +51 -0
  188. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/predatorpreydynamics/predator-prey-dynamics.bngl +35 -0
  189. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/quorumsensingcircuit/quorum-sensing-circuit.bngl +45 -0
  190. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/rabgtpasecycle/rab-gtpase-cycle.bngl +46 -0
  191. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/ranklranksignaling/rankl-rank-signaling.bngl +81 -0
  192. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/rasgefgapcycle/ras-gef-gap-cycle.bngl +79 -0
  193. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/repressilatoroscillator/repressilator-oscillator.bngl +61 -0
  194. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/retinoicacidsignaling/retinoic-acid-signaling.bngl +45 -0
  195. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/rhogtpaseactincytoskeleton/rho-gtpase-actin-cytoskeleton.bngl +92 -0
  196. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/shp2phosphataseregulation/shp2-phosphatase-regulation.bngl +74 -0
  197. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/signalamplificationcascade/signal-amplification-cascade.bngl +43 -0
  198. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/simpledimerization/simple-dimerization.bngl +32 -0
  199. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/sirepidemicmodel/sir-epidemic-model.bngl +33 -0
  200. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/smadtgfbetasignaling/smad-tgf-beta-signaling.bngl +45 -0
  201. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/sonichedgehoggradient/sonic-hedgehog-gradient.bngl +79 -0
  202. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/stat3mediatedtranscription/stat3-mediated-transcription.bngl +92 -0
  203. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/stressresponseadaptation/stress-response-adaptation.bngl +37 -0
  204. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/tnfinducedapoptosis/tnf-induced-apoptosis.bngl +50 -0
  205. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/twocomponentsystem/two-component-system.bngl +40 -0
  206. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/vegfangiogenesis/vegf-angiogenesis.bngl +97 -0
  207. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/viralsensinginnateimmunity/viral-sensing-innate-immunity.bngl +50 -0
  208. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/wntbetacateninsignaling/wnt-beta-catenin-signaling.bngl +90 -0
  209. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/biology/woundhealingpdgfsignaling/wound-healing-pdgf-signaling.bngl +46 -0
  210. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentendocytosis/compartment_endocytosis.bngl +84 -0
  211. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentmembranebound/compartment_membrane_bound.bngl +57 -0
  212. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentnestedtransport/compartment_nested_transport.bngl +57 -0
  213. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentnucleartransport/compartment_nuclear_transport.bngl +58 -0
  214. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/compartments/compartmentorganelleexchange/compartment_organelle_exchange.bngl +65 -0
  215. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/csdiffiehellman/cs_diffie_hellman.bngl +70 -0
  216. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cshashfunction/cs_hash_function.bngl +138 -0
  217. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cshuffman/cs_huffman.bngl +56 -0
  218. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/csmontecarlopi/cs_monte_carlo_pi.bngl +51 -0
  219. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cspagerank/cs_pagerank.bngl +74 -0
  220. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/cs/cspidcontroller/cs_pid_controller.bngl +118 -0
  221. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ecology/ecocoevolutionhostparasite/eco_coevolution_host_parasite.bngl +73 -0
  222. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ecology/ecolotkavolterragrid/eco_lotka_volterra_grid.bngl +62 -0
  223. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ecology/ecorockpaperscissorsspatial/eco_rock_paper_scissors_spatial.bngl +57 -0
  224. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energyallosterymwc/energy_allostery_mwc.bngl +84 -0
  225. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energycatalysismm/energy_catalysis_mm.bngl +76 -0
  226. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energycooperativityadh/energy_cooperativity_adh.bngl +71 -0
  227. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energylinearchain/energy_linear_chain.bngl +57 -0
  228. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/energy/energytransportpump/energy_transport_pump.bngl +85 -0
  229. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featurefunctionalratesvolume/feature_functional_rates_volume.bngl +53 -0
  230. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featureglobalfunctionsscan/feature_global_functions_scan.bngl +59 -0
  231. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featuresymmetryfactorscyclic/feature_symmetry_factors_cyclic.bngl +39 -0
  232. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/feature-demos/featuresynthesisdegradationss/feature_synthesis_degradation_ss.bngl +38 -0
  233. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/generative/gmraymarcher/gm_ray_marcher.bngl +136 -0
  234. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticbistabilityenergy/genetic_bistability_energy.bngl +91 -0
  235. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticdnareplicationstochastic/genetic_dna_replication_stochastic.bngl +84 -0
  236. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticgoodwinoscillator/genetic_goodwin_oscillator.bngl +69 -0
  237. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/genetictranslationkinetics/genetic_translation_kinetics.bngl +66 -0
  238. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/genetics/geneticturingpattern1d/genetic_turing_pattern_1d.bngl +120 -0
  239. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/metaformalgametheory/meta_formal_game_theory.bngl +73 -0
  240. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/metaformalmolecularclock/meta_formal_molecular_clock.bngl +50 -0
  241. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/metaformalpetrinet/meta_formal_petri_net.bngl +53 -0
  242. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtarithmeticcompiler/mt_arithmetic_compiler.bngl +75 -0
  243. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtbnglinterpreter/mt_bngl_interpreter.bngl +59 -0
  244. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtmusicsequencer/mt_music_sequencer.bngl +131 -0
  245. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtpascaltriangle/mt_pascal_triangle.bngl +59 -0
  246. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/meta/mtquine/mt_quine.bngl +56 -0
  247. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlgradientdescent/ml_gradient_descent.bngl +103 -0
  248. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlhopfield/ml_hopfield.bngl +75 -0
  249. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlkmeans/ml_kmeans.bngl +101 -0
  250. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlqlearning/ml_q_learning.bngl +119 -0
  251. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/mlsvm/ml_svm.bngl +79 -0
  252. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/ml/nnxor/nn_xor.bngl +189 -0
  253. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phlorenzattractor/ph_lorenz_attractor.bngl +90 -0
  254. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phnbodygravity/ph_nbody_gravity.bngl +83 -0
  255. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phschrodinger/ph_schrodinger.bngl +127 -0
  256. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/physics/phwaveequation/ph_wave_equation__PATCHED.bngl +96 -0
  257. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processautophagyflux/process_autophagy_flux.bngl +65 -0
  258. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processcelladhesionstrength/process_cell_adhesion_strength.bngl +60 -0
  259. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processkineticproofreadingtcr/process_kinetic_proofreading_tcr.bngl +67 -0
  260. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/processes/processquorumsensingswitch/process_quorum_sensing_switch.bngl +73 -0
  261. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/signal-processing/spfouriersynthesizer/sp_fourier_synthesizer.bngl +135 -0
  262. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/signal-processing/spimageconvolution/sp_image_convolution.bngl +151 -0
  263. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/signal-processing/spkalmanfilter/sp_kalman_filter.bngl +126 -0
  264. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiobandpassfilter/synbio_band_pass_filter.bngl +59 -0
  265. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiocountermolecular/synbio_counter_molecular.bngl +54 -0
  266. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbioedgedetector/synbio_edge_detector.bngl +74 -0
  267. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiologicgatesenzymatic/synbio_logic_gates_enzymatic.bngl +64 -0
  268. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/synbio/synbiooscillatorsynchronization/synbio_oscillator_synchronization.bngl +59 -0
  269. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackyalchemystone/wacky_alchemy_stone.bngl +53 -0
  270. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackyblackhole/wacky_black_hole.bngl +61 -0
  271. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackybouncingball/wacky_bouncing_ball.bngl +68 -0
  272. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackytrafficjamasep/wacky_traffic_jam_asep.bngl +50 -0
  273. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Examples/wacky/wackyzombieinfection/wacky_zombie_infection.bngl +58 -0
  274. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/An2009/An_2009.bngl +248 -0
  275. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Barua2009/Barua_2009__PATCHED.bngl +52 -0
  276. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/CheemalavaguJAKSTAT/Cheemalavagu_JAK_STAT.bngl +229 -0
  277. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hat2016/Hat_2016.bngl +744 -0
  278. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek1999/steric_effects_hlavacek1999.bngl +231 -0
  279. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2001/kinetic_proofreading_hlavacek2001.bngl +246 -0
  280. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Egg/egg.bngl +64 -0
  281. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Elephant/elephant_EFA.bngl +153 -0
  282. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Elephant/elephant_fit.bngl +234 -0
  283. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Hlavacek2018Restructuration/after_scaling.bngl +52 -0
  284. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Lang2024/Lang_2024.bngl +354 -0
  285. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/LinERK2019/Lin_ERK_2019.bngl +496 -0
  286. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/05-threestep/m1_ground.bngl +52 -0
  287. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/07-egg/fit_de/egg_gen99ind7.bngl +54 -0
  288. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/07-egg/fit_pso/egg_iter94p25.bngl +54 -0
  289. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_ade/RAFi_gen1ind9.bngl +123 -0
  290. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_de/RAFi_gen3ind25.bngl +123 -0
  291. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_pso/RAFi_iter1p15.bngl +123 -0
  292. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/19-raf-constraint/fit_ss/RAFi_iter2p5h1.bngl +123 -0
  293. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/20-raf-constraint4/fit_ade/RAFi_gen7ind22.bngl +125 -0
  294. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/20-raf-constraint4/fit_pso/RAFi_iter4p27.bngl +125 -0
  295. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/20-raf-constraint4/fit_ss/RAFi_iter2p0h1.bngl +125 -0
  296. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/24-jnk/fit_ss/JNKmodel_180724_bnf_iter29p0h4.bngl +263 -0
  297. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_ade/elephant_simplex_iter29_pt43-2.bngl +265 -0
  298. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_de/elephant_simplex_iter2_pt53-2.bngl +265 -0
  299. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_pso/elephant_simplex_init0.bngl +265 -0
  300. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019/31-elephant/fit_ss/elephant_simplex_init0.bngl +265 -0
  301. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019Likelihood/model_ground.bngl +363 -0
  302. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Mitra2019Rab/rab_rab7_ox.bngl +496 -0
  303. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/Pekalski2013/Pekalski_2013.bngl +281 -0
  304. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/PyBioNetGen/core/parabolaground/parabola_ground.bngl +49 -0
  305. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Published/PyBioNetGen/core/polynomialground/polynomial_ground.bngl +47 -0
  306. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/General/quasiequilibrium/quasi_equilibrium.bngl +57 -0
  307. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/AB/AB.bngl +26 -0
  308. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/ABC/ABC.bngl +14 -0
  309. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/ABp/ABp.bngl +42 -0
  310. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/ABpapprox/ABp_approx.bngl +42 -0
  311. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/BAB/BAB.bngl +30 -0
  312. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/BABcoop/BAB_coop.bngl +34 -0
  313. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/GK/GK.bngl +32 -0
  314. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LR/LR.bngl +43 -0
  315. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LRR/LRR.bngl +53 -0
  316. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LRRcomp/LRR_comp.bngl +58 -0
  317. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LRcomp/LR_comp.bngl +54 -0
  318. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LV/LV.bngl +35 -0
  319. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/LVcomp/LV_comp.bngl +42 -0
  320. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/Lisman/Lisman.bngl +45 -0
  321. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/SIR/SIR.bngl +30 -0
  322. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/birthdeath/birth-death.bngl +25 -0
  323. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/egfrsimple/egfr_simple.bngl +82 -0
  324. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/organelletransport/organelle_transport.bngl +90 -0
  325. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/NativeTutorials/organelletransportstruct/organelle_transport_struct.bngl +86 -0
  326. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/egfrnetred/egfr_net_red.bngl +180 -0
  327. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/energyexample1/energy_example1.bngl +168 -0
  328. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/example1/example1.bngl +58 -0
  329. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/localfunc/localfunc.bngl +65 -0
  330. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/mwc/mwc.bngl +120 -0
  331. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/nfkb/nfkb.bngl +238 -0
  332. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/simplesystem/simple_system.bngl +133 -0
  333. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testANGsynthesissimple/test_ANG_synthesis_simple.bngl +31 -0
  334. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testmratio/test_mratio.bngl +40 -0
  335. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testsat/test_sat.bngl +32 -0
  336. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testsynthesiscBNGLsimple/test_synthesis_cBNGL_simple.bngl +37 -0
  337. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/testsynthesiscomplexsourcecBNGL/test_synthesis_complex_source_cBNGL.bngl +62 -0
  338. bngsim-0.11.32/parity_checks/bng_parity/models/fast/rulehub/Tutorials/univsynth/univ_synth.bngl +48 -0
  339. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/curated/Creamer_2012.bngl +1931 -0
  340. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Goldstein1980/blbr_heterogeneity_goldstein1980.bngl +303 -0
  341. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/ERK_model.bngl +496 -0
  342. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/ERK_model.net +177 -0
  343. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/prion_model.bngl +160 -0
  344. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Lin2019/prion_model.net +2945 -0
  345. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/14-receptor-nf/fit_pso/receptor_nf_iter91p28.bngl +183 -0
  346. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/30-jobs/fit_ade/jobs_tofit_gen48ind13.bngl +70 -0
  347. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/30-jobs/fit_de/jobs_tofit_gen34ind26.bngl +70 -0
  348. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Mitra2019/30-jobs/fit_pso/jobs_tofit_iter44p17.bngl +70 -0
  349. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Rulebasedegfrtutorial/Rule_based_egfr_tutorial.bngl +55 -0
  350. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Thomas2016/example6_ground_truth.bngl +170 -0
  351. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Yang2008/tlbr_yang2008.bngl +144 -0
  352. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Published/Yang2008/tlbr_yang2008_nfr.species +42 -0
  353. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/Tutorials/NativeTutorials/BLBR/BLBR.bngl +50 -0
  354. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/example3_fit__PATCHED.bngl +107 -0
  355. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/tcr_gen20ind9.bngl +668 -0
  356. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/tcr_iter28p4h2.bngl +668 -0
  357. bngsim-0.11.32/parity_checks/bng_parity/models/glacial/rulehub/bench_rulehub/tcr_iter9p44.bngl +668 -0
  358. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BA_MMA_v1.bngl +226 -0
  359. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BLBR_immobilization_simple.bngl +142 -0
  360. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BSA_v10.bngl +907 -0
  361. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/BSA_v9.bngl +785 -0
  362. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/EGFR_oligo_v2.bngl +149 -0
  363. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/IL7_Carmen.bngl +188 -0
  364. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/Rab_01.bngl +57 -0
  365. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/Rag_Ragulator_assembly.bngl +407 -0
  366. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/actin_branch_forFitToData.bngl +301 -0
  367. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/bug_states_break_RB_plotting.bngl +61 -0
  368. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/checkring.bngl +82 -0
  369. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/cleavage_mechanism_v1.bngl +190 -0
  370. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/demo.bngl +50 -0
  371. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e1_1.bngl +57 -0
  372. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e2_1.bngl +66 -0
  373. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e3_1.bngl +74 -0
  374. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e4_1.bngl +81 -0
  375. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e5_1.bngl +92 -0
  376. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/e6_1.bngl +99 -0
  377. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/fcr.bngl +100 -0
  378. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/gene_expr_func_2.bngl +97 -0
  379. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/immob_equiv_lig_sites.bngl +298 -0
  380. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/local_func_bug.bngl +109 -0
  381. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/mm_approx.bngl +47 -0
  382. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/nLbR_v2.bngl +116 -0
  383. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/oscillator.bngl +93 -0
  384. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/prion2_YTLedits.bngl +58 -0
  385. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/probsp.bngl +69 -0
  386. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/rings.bngl +102 -0
  387. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/rings_v2_bnf_min.bngl +101 -0
  388. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/simple_model_1.bngl +185 -0
  389. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/testTLBR_v2.bngl +132 -0
  390. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/test_8.bngl +29 -0
  391. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/test_tfun_2.bngl +49 -0
  392. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/tlbr_8.bngl +49 -0
  393. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/xlink_v4_1.bngl +86 -0
  394. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/nf/zeroOrderRxn.bngl +22 -0
  395. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/4var_model.bngl +95 -0
  396. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/4var_model_with_FDC.bngl +105 -0
  397. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AD 3 State FREE Expanding nfs.bngl +272 -0
  398. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AMPK_MTORC1_ULK1_v2.bngl +4892 -0
  399. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AMPK_assembly_v1.bngl +491 -0
  400. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_Model_v7.bngl +293 -0
  401. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_activation_v1.bngl +644 -0
  402. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_activation_v2.bngl +754 -0
  403. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_model_v12.bngl +897 -0
  404. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_model_v14.bngl +928 -0
  405. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_model_v16.bngl +867 -0
  406. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_update_mTORC1_assembly_more_complete_scheme.bngl +112 -0
  407. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ATG_update_mTORC1_assembly_v1.bngl +79 -0
  408. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn.bngl +73 -0
  409. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn2_ok.bngl +113 -0
  410. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn4.bngl +94 -0
  411. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AVdyn6.bngl +170 -0
  412. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/AZD8055.bngl +100 -0
  413. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/A_plus_B_2.bngl +81 -0
  414. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BNGL_book_testing.bngl +28 -0
  415. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BP.bngl +93 -0
  416. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BP_DCT.bngl +86 -0
  417. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BP_theory_DCT.bngl +122 -0
  418. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BSA_v4.bngl +395 -0
  419. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BSA_v6.bngl +540 -0
  420. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BergPurcell_v2.bngl +108 -0
  421. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BergPurcell_v3.bngl +108 -0
  422. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/BergPurcell_v4.bngl +117 -0
  423. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Boris_Model2_CHECK_v1.bngl +56 -0
  424. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Boris_Model3_CHECK_v1.bngl +81 -0
  425. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CD3_CD28_bispecificAb_v1.bngl +71 -0
  426. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaM_Ca_interaction_v1_1.bngl +71 -0
  427. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaM_KRas4B_PI3K_v1.bngl +104 -0
  428. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaM_KRas4B_PI3K_v5.bngl +248 -0
  429. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/CaOscillate_Sat_2.bngl +77 -0
  430. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Compressed_model_Hela.bngl +560 -0
  431. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/DF3 assembly surface.bngl +141 -0
  432. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/DF3_dissociation.bngl +78 -0
  433. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/EID_v2_current_code_params.bngl +308 -0
  434. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/EID_vs_RBM_18Feb2022.bngl +587 -0
  435. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ErrNoFrees.bngl +166 -0
  436. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ExampleModel3.bngl +180 -0
  437. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ExampleModel4_v6.bngl +106 -0
  438. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/FDC_aCD21_v1.bngl +256 -0
  439. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/GW80_2.bngl +92 -0
  440. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HIV_v1.bngl +40 -0
  441. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HIV_v1_1.bngl +121 -0
  442. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HIV_v2.bngl +51 -0
  443. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/HarmonicOscillator_redo_v1__PATCHED.bngl +302 -0
  444. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Haugh2b.bngl +78 -0
  445. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Haugh2b_1.bngl +75 -0
  446. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Homodimerization.bngl +47 -0
  447. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IGF1R_model_v1.bngl +401 -0
  448. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE.bngl +82 -0
  449. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE_v3_it_works.bngl +188 -0
  450. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE_v3_naturalOnly.bngl +126 -0
  451. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/IgE_v3_restructOnly.bngl +157 -0
  452. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ItalyModel_v7.bngl +315 -0
  453. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Kholodenko_2000.bngl +106 -0
  454. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Kholodenko_2000_wsh.bngl +95 -0
  455. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/LR_binding.bngl +159 -0
  456. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/LV_1.bngl +30 -0
  457. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/L_plus_R_v2.bngl +135 -0
  458. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/L_plus_R_v3b.bngl +219 -0
  459. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MAPK_v1.bngl +270 -0
  460. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MAPK_v3.bngl +396 -0
  461. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MI_2nd_demo_v1.bngl +131 -0
  462. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MI_2nd_demo_v2b.bngl +189 -0
  463. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MI_demo_v2.bngl +91 -0
  464. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v1.bngl +442 -0
  465. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v2.bngl +608 -0
  466. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v3.bngl +935 -0
  467. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MTORC1_assembly_v3b.bngl +970 -0
  468. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MWC_v1.bngl +93 -0
  469. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/MacdonaldPike_29Sep2010.bngl +176 -0
  470. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/McMillen_2002.bngl +91 -0
  471. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Meyer.bngl +82 -0
  472. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Model_V600E_BRAF_v4.bngl +871 -0
  473. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Model_V600E_BRAF_v5.bngl +1023 -0
  474. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_b.bngl +267 -0
  475. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_c.bngl +224 -0
  476. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_c_smallest.bngl +199 -0
  477. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_f.bngl +242 -0
  478. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_n.bngl +225 -0
  479. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Models_n_smallest.bngl +201 -0
  480. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Motivating_example_2.bngl +262 -0
  481. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Motivating_example_cBNGL_2.bngl +226 -0
  482. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/NsrR_NO.bngl +48 -0
  483. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ODE_model.bngl +101 -0
  484. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/PBPK_v1.bngl +125 -0
  485. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/PBPK_v2.bngl +170 -0
  486. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Post.bngl +82 -0
  487. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAF_dimerization_only_v1.bngl +224 -0
  488. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAF_v1.bngl +124 -0
  489. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAF_v2.bngl +230 -0
  490. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAFi_ground_1.bngl +120 -0
  491. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAS_effectors_v1b.bngl +293 -0
  492. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAS_effectors_v2.bngl +754 -0
  493. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RAS_module.bngl +204 -0
  494. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RBM_covid_v2.bngl +110 -0
  495. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RBM_covid_v3.bngl +178 -0
  496. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_endosome_dynamics.bngl +251 -0
  497. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_v15.mlrules.bngl +459 -0
  498. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_v3.bngl +271 -0
  499. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rab_v5_4.bngl +564 -0
  500. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rag_Ragulator_assembly_v2.bngl +551 -0
  501. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Rag_Ragulator_assembly_v4.bngl +703 -0
  502. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasRaf_cBNGL_eBNGL_v3.bngl +118 -0
  503. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasRaf_stdBNGL_v3.bngl +79 -0
  504. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasSosGDP_v2.bngl +449 -0
  505. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/RasSosGDP_v3_copy_fit11.bngl +449 -0
  506. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Ras_WT_in_vitro.bngl +253 -0
  507. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Ras_bistability_v2.bngl +424 -0
  508. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Reduced_IGF1R_hela_cell_specific_model.bngl +673 -0
  509. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Repressilator_3.bngl +82 -0
  510. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SAVE_human_IgE_FceRI_binding.bngl +182 -0
  511. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SEIAR_model_22Jun2022.bngl +40 -0
  512. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SEIR_ex_v21Jun2022.bngl +35 -0
  513. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SHP2_base_model_2.bngl +156 -0
  514. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SIR_3.bngl +63 -0
  515. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SIR_v4.bngl +139 -0
  516. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SIR_v5.bngl +145 -0
  517. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/SOS_with_4_PRS_sites.bngl +135 -0
  518. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Sayak.bngl +45 -0
  519. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Scaff_22_ground_1.bngl +80 -0
  520. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Simple_muliLigand_Model_SS_1.bngl +150 -0
  521. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Steric_v1.bngl +162 -0
  522. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Susan.bngl +262 -0
  523. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/TACE_module.bngl +170 -0
  524. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/TC.bngl +36 -0
  525. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/THEM.bngl +140 -0
  526. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/THEM_and_NM.bngl +442 -0
  527. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/THEM_v1.bngl +272 -0
  528. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/TRIAD_with_drugs.bngl +101 -0
  529. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/V600E_BRAF_v1.bngl +325 -0
  530. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/Vdyn.bngl +40 -0
  531. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/actCells_v11b.bngl +438 -0
  532. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/after_bunching.bngl +47 -0
  533. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/after_decoupling.bngl +39 -0
  534. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/after_scaling_test.bngl +52 -0
  535. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/air_travel_model.bngl +42 -0
  536. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/all_data_v3_scatter_search.bngl +338 -0
  537. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/asymp.bngl +54 -0
  538. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/atg_model_v2.bngl +299 -0
  539. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/basal_EGFR_signaling_HeLa_S3.bngl +84 -0
  540. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/basal_receptor_signaling.bngl +202 -0
  541. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/before_bunching.bngl +46 -0
  542. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/before_decoupling.bngl +29 -0
  543. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/before_scaling.bngl +45 -0
  544. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/bertalanffy.bngl +34 -0
  545. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/binding_DNP_BSA.bngl +36 -0
  546. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/blbr_with_immobilization_2ndtest.bngl +175 -0
  547. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/bogdan_1.bngl +58 -0
  548. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/calcium2.bngl +133 -0
  549. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/catalysis.bngl +82 -0
  550. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/check_scaling.bngl +70 -0
  551. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/compartments.bngl +177 -0
  552. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/compression_v1.bngl +76 -0
  553. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/continue.bngl +46 -0
  554. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/corrected_MAPK.bngl +495 -0
  555. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/db_3rd_order_EnergyBNGL_v1.bngl +88 -0
  556. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/debug.bngl +73 -0
  557. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/debug_v3.bngl +67 -0
  558. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/decay.bngl +42 -0
  559. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/degradation_test_2.bngl +90 -0
  560. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/detailed_balance.bngl +112 -0
  561. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/dimer_phos2.bngl +130 -0
  562. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/diversity.bngl +100 -0
  563. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/double_exp.bngl +42 -0
  564. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/eff_val.bngl +91 -0
  565. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/eff_val_v4.bngl +171 -0
  566. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_net_6.bngl +170 -0
  567. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_net_red_1.bngl +180 -0
  568. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_path.bngl +152 -0
  569. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/egfr_path_1.bngl +153 -0
  570. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/elephant_9.bngl +236 -0
  571. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/erlang.bngl +39 -0
  572. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/error.bngl +62 -0
  573. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/error_with_too-much-nesting_5.bngl +32 -0
  574. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/example.bngl +99 -0
  575. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/exclude_test.bngl +82 -0
  576. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fceri_ji.bngl +117 -0
  577. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fceri_ji_4.bngl +117 -0
  578. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fceri_ji_red_3.bngl +116 -0
  579. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/filamentation_blue_v1.bngl +273 -0
  580. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/file.bngl +37 -0
  581. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fixedabundance.bngl +108 -0
  582. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/flu_dynamics_v1.bngl +123 -0
  583. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/forward_sens_anal.bngl +43 -0
  584. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/fqual_v1.bngl +83 -0
  585. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/full_model_v1.bngl +158 -0
  586. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/gardner2000_toggle_swtich.bngl +82 -0
  587. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/geneModel.bngl +62 -0
  588. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/harmonicOscillator.bngl +248 -0
  589. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/heise.bngl +46 -0
  590. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_compart_v1.bngl +348 -0
  591. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_unavailR_v2.bngl +334 -0
  592. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_unavailR_v4.bngl +367 -0
  593. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/immob_unavailR_v6.bngl +420 -0
  594. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/inhibitors.bngl +45 -0
  595. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/inhibitors_1.bngl +591 -0
  596. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/inhibitors_v2.bngl +577 -0
  597. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/issue_198_short.bngl +21 -0
  598. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/junk.bngl +576 -0
  599. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/junk_2.bngl +354 -0
  600. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/kinetics_mb1n.bngl +202 -0
  601. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/kp.bngl +124 -0
  602. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/length.bngl +35 -0
  603. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/lengthDist.bngl +134 -0
  604. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/lifetime.bngl +63 -0
  605. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/line_continuation.bngl +53 -0
  606. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/linear.bngl +22 -0
  607. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/localfunc_2.bngl +52 -0
  608. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/localfunc_3.bngl +63 -0
  609. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/m15.bngl +260 -0
  610. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/m_vs_p_v1.bngl +131 -0
  611. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/michment.bngl +64 -0
  612. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model.bngl +400 -0
  613. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model1.bngl +112 -0
  614. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_1.bngl +367 -0
  615. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_NAC_phase1_v6.bngl +501 -0
  616. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_for_phase2_v12.bngl +324 -0
  617. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_for_phase2_v2.bngl +319 -0
  618. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_phase1_SVD_v1.bngl +505 -0
  619. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_step1_v1.bngl +292 -0
  620. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_step2_v1.bngl +504 -0
  621. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/model_with_ActivatedCells_PyBNF_v8.bngl +286 -0
  622. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/modified_THEM_v1_1.bngl +935 -0
  623. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/monoBE_plusInh.bngl +112 -0
  624. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/motor_1.bngl +91 -0
  625. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/multi_bonds.bngl +44 -0
  626. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/multiple_bonds_per_site.bngl +67 -0
  627. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/mwc.bngl +120 -0
  628. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/normal.bngl +41 -0
  629. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/ode_vs_nf_discrepancy.bngl +34 -0
  630. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/oscillator_1.bngl +31 -0
  631. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/overlap_rules2.bngl +69 -0
  632. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/overlapping_rules.bngl +110 -0
  633. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pattern_counting.bngl +47 -0
  634. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pattern_test.bngl +75 -0
  635. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/person_v1.bngl +225 -0
  636. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/poly.bngl +85 -0
  637. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/poly_net_truncated.bngl +42 -0
  638. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/population_scaling.bngl +117 -0
  639. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/primary_infection_v4.bngl +167 -0
  640. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/primary_infection_withFDCs.bngl +130 -0
  641. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/proliferation.bngl +27 -0
  642. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pt20485.bngl +194 -0
  643. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/pulses_demo_fixed.bngl +89 -0
  644. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/race.bngl +70 -0
  645. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/random_synthesis.bngl +39 -0
  646. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/rapamycin_v1.bngl +280 -0
  647. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/residence_time.bngl +115 -0
  648. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/scaffold.bngl +51 -0
  649. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/scaling_example.bngl +120 -0
  650. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/secant.bngl +47 -0
  651. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/secant2.bngl +41 -0
  652. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sensitivity.bngl +299 -0
  653. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sensitivity_1.bngl +135 -0
  654. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sensitivity_2ndtry_v0.bngl +108 -0
  655. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple1.bngl +160 -0
  656. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple_1.bngl +129 -0
  657. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple_Syk_tuning_phos.bngl +274 -0
  658. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simple_cBNGL.bngl +176 -0
  659. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/simplifications_v1.bngl +276 -0
  660. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/sir_2.bngl +31 -0
  661. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/specialconstants.bngl +60 -0
  662. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/state_change.bngl +21 -0
  663. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/study.bngl +95 -0
  664. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/synthesis.bngl +65 -0
  665. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/synthesis_v3.bngl +146 -0
  666. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/temp.bngl +50 -0
  667. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test.bngl +88 -0
  668. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test2.bngl +244 -0
  669. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_07Feb2018.bngl +31 -0
  670. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_2.bngl +103 -0
  671. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_5.bngl +108 -0
  672. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_6.bngl +138 -0
  673. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_7.bngl +32 -0
  674. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_ANG_synthesis_simple.bngl +30 -0
  675. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_BW_reset.bngl +40 -0
  676. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_MM.bngl +31 -0
  677. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_Mratio_1.bngl +44 -0
  678. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_continue_1.bngl +97 -0
  679. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_fixed.bngl +24 -0
  680. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_fixed_1.bngl +84 -0
  681. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_func.bngl +39 -0
  682. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_network_gen.bngl +118 -0
  683. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_paramname.bngl +17 -0
  684. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_synthesis_complex.bngl +32 -0
  685. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_synthesis_complex_0_cBNGL.bngl +56 -0
  686. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/test_whitespace.bngl +45 -0
  687. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/testrings_wsh.bngl +83 -0
  688. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/time_var_demo.bngl +38 -0
  689. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/tlmr.bngl +25 -0
  690. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/toy-jim.bngl +117 -0
  691. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/toy-jim_1.bngl +108 -0
  692. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/toy-jim_2.bngl +111 -0
  693. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/trafficking_v2.bngl +158 -0
  694. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/transport_v2.bngl +47 -0
  695. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/transport_v3.bngl +93 -0
  696. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/v18.bngl +42 -0
  697. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/v19.bngl +62 -0
  698. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/vaccine_v01.bngl +187 -0
  699. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/voodoo.bngl +50 -0
  700. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/waiting_time.bngl +50 -0
  701. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/wofsy_goldstein.bngl +145 -0
  702. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ode/x3_2.bngl +165 -0
  703. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/ExampleModel5_v2.bngl +163 -0
  704. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/Hawse_full.bngl +331 -0
  705. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/Hawse_reduced.bngl +87 -0
  706. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/PushPull.bngl +45 -0
  707. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/PushPull_1.bngl +50 -0
  708. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/agentCellSystem.bngl +194 -0
  709. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/cover.bngl +25 -0
  710. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/gk_simple.bngl +72 -0
  711. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/isomerization.bngl +54 -0
  712. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/model2_1.bngl +124 -0
  713. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/oscillatory_system.bngl +84 -0
  714. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/simple_system_5.bngl +55 -0
  715. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/special_constants.bngl +33 -0
  716. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/tcr_signaling.bngl +201 -0
  717. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v01.bngl +32 -0
  718. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v02.bngl +34 -0
  719. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v03.bngl +31 -0
  720. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v04.bngl +26 -0
  721. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v05.bngl +24 -0
  722. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v06.bngl +31 -0
  723. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v07.bngl +35 -0
  724. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v08.bngl +37 -0
  725. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v09.bngl +26 -0
  726. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v10.bngl +28 -0
  727. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v11.bngl +25 -0
  728. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v12.bngl +30 -0
  729. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v13.bngl +27 -0
  730. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v14.bngl +23 -0
  731. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v15.bngl +24 -0
  732. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/v16.bngl +28 -0
  733. bngsim-0.11.32/parity_checks/bng_parity/models/original/bngl_models/my_models/ssa/volterra.bngl +53 -0
  734. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Bergman1989.bngl +83 -0
  735. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/DN2015b_michaelis_menten.bngl +55 -0
  736. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Dreisigmeyer2008.bngl +122 -0
  737. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Gardner2000.bngl +69 -0
  738. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Goldbeter1996.bngl +105 -0
  739. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/HBF1998_semiconductor_exciton.bngl +75 -0
  740. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/I1988_metabolic_pathway.bngl +159 -0
  741. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Kholodenko2000.bngl +172 -0
  742. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Krishna2006.bngl +90 -0
  743. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Lander2009.bngl +94 -0
  744. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/MS2007_MM_to_GMA.bngl +65 -0
  745. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/MS2007_tryptophan_operon.bngl +100 -0
  746. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Mangan2003_CoherentFFL_AND.bngl +86 -0
  747. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Mueller2006_RepLeaky_n3.bngl +117 -0
  748. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Ozbudak2004_LacOperon_Simplified.bngl +73 -0
  749. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/P2011_branched_SC.bngl +126 -0
  750. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/P2011_linear_pathway_MM.bngl +72 -0
  751. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Rosenfeld2002_NegativeAutoregulation_2D.bngl +76 -0
  752. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_A1_exponential.bngl +49 -0
  753. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_A4_logistic.bngl +62 -0
  754. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_B1_lotka_volterra.bngl +68 -0
  755. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_B2_linear_chain.bngl +66 -0
  756. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_B3_nonlinear_chain.bngl +72 -0
  757. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_C1_decay_chain.bngl +100 -0
  758. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_C2_decay_chain2.bngl +107 -0
  759. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1987_C3_parabolic_pde.bngl +115 -0
  760. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/S1988_Monod_chemostat.bngl +73 -0
  761. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Selkov1968_GlycolyticOscillator.bngl +73 -0
  762. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/V1988b_gma_to_ssystem.bngl +68 -0
  763. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/V2005_bistable_gene.bngl +99 -0
  764. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/Xiong2018_ContactKilling_Inhibitor.bngl +105 -0
  765. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m01_exp_decay.bngl +51 -0
  766. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m02_logistic.bngl +61 -0
  767. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m03_Lotka_Volterra.bngl +75 -0
  768. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m04_mass_action_branch.bngl +75 -0
  769. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m06_feedback.bngl +69 -0
  770. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m07_SIR.bngl +79 -0
  771. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m08_Bertalanffy.bngl +66 -0
  772. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m09_A_plus_B_to_C.bngl +70 -0
  773. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m11_Monod_chemostat.bngl +77 -0
  774. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m12_toy_mass_action.bngl +82 -0
  775. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m14_Michaelis_Menten_prod_deg.bngl +66 -0
  776. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m15_tryptophan_operon.bngl +116 -0
  777. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m18_Goodwin.bngl +89 -0
  778. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m19_RM_predator_prey.bngl +84 -0
  779. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m20_Briggs_Haldane.bngl +69 -0
  780. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m21_Haldane_chemostat.bngl +85 -0
  781. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m22_Brusselator.bngl +80 -0
  782. bngsim-0.11.32/parity_checks/bng_parity/models/slow/bngl_library/m23_MWC.bngl +232 -0
  783. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/fgfsignalingpathway/fgf-signaling-pathway.bngl +99 -0
  784. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/gas6axlsignaling/gas6-axl-signaling.bngl +107 -0
  785. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/oxidativestressresponse/oxidative-stress-response.bngl +64 -0
  786. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/synapticplasticityltp/synaptic-plasticity-ltp.bngl +82 -0
  787. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/tcellactivation/t-cell-activation.bngl +39 -0
  788. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/biology/tlr3dsrnasensing/tlr3-dsrna-sensing.bngl +120 -0
  789. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/cs/csregexnfa/cs_regex_nfa.bngl +64 -0
  790. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/ecology/ecofoodwebchaos3sp/eco_food_web_chaos_3sp.bngl +77 -0
  791. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/ecology/ecomutualismobligate/eco_mutualism_obligate.bngl +54 -0
  792. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/feature-demos/featurelocalfunctionsexplicit/feature_local_functions_explicit.bngl +68 -0
  793. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/generative/gmgameoflife/gm_game_of_life.bngl +127 -0
  794. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Examples/processes/processactintreadmilling/process_actin_treadmilling.bngl +84 -0
  795. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Barua2007/Barua_2007.bngl +155 -0
  796. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Barua2013/Barua_2013__PATCHED.bngl +130 -0
  797. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/BaruaBCR2012/BaruaBCR_2012.bngl +379 -0
  798. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Blinov2006/Blinov_2006.bngl +171 -0
  799. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Chattaraj2021/Chattaraj_2021.bngl +74 -0
  800. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/ChylekFceRI2014/ChylekFceRI_2014.bngl +746 -0
  801. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/ChylekTCR2014/ChylekTCR_2014.bngl +607 -0
  802. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Dreisigmeyer2008/lac_operon_dreisigmeyer2008.bngl +226 -0
  803. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Gardner2000/genetic_switch_gardner2000.bngl +152 -0
  804. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Harmon2017/antigen_pulses_harmon2017.bngl +331 -0
  805. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/JaruszewiczBlonska2023/Jaruszewicz-Blonska_2023.bngl +478 -0
  806. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Kocieniewski2012/Kocieniewski_2012.bngl +60 -0
  807. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Korwek2023/Korwek_2023.bngl +726 -0
  808. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Lin2019/TCR_model.bngl +250 -0
  809. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Lin2019/TCR_model.net +179 -0
  810. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/LinTCR2019/Lin_TCR_2019.bngl +250 -0
  811. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Macken1982/tlbr_solution_macken1982.bngl +190 -0
  812. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Macken1982/tlbr_solution_macken1982_nfr.species +72 -0
  813. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Massole2023/Massole_2023.bngl +27 -0
  814. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/02-egfr/egfr_ground.bngl +162 -0
  815. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_ade/m1_gen95ind15.bngl +39 -0
  816. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_de/m1_gen97ind4.bngl +39 -0
  817. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_pso/m1_iter95p18.bngl +39 -0
  818. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/05-threestep/fit_ss/m1_iter74p0h2.bngl +39 -0
  819. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/fit_ade/model_tofit_gen157ind72.bngl +400 -0
  820. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/fit_de/model_tofit_gen212ind104.bngl +400 -0
  821. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/fit_ss/model_tofit_iter137p1h5.bngl +400 -0
  822. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/output_mcmc/model_tofit_iter120596run2.bngl +400 -0
  823. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/06-degranulation/output_pt/model_tofit_iter176262run23.bngl +400 -0
  824. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/07-egg/fit_ade/egg_gen99ind23.bngl +54 -0
  825. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/07-egg/fit_ss/egg_iter99p7h0.bngl +54 -0
  826. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/13-receptor/example5_starting_point.bngl +189 -0
  827. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_ade/IGF1R_fit_all_gen20ind12.bngl +265 -0
  828. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_de/IGF1R_fit_all_gen19ind47.bngl +265 -0
  829. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_pso/IGF1R_fit_all_iter16p0.bngl +265 -0
  830. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/15-igf1r/fit_ss/IGF1R_fit_all_iter6p1h4.bngl +265 -0
  831. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/Scaff-22_ground.bngl +80 -0
  832. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_ade/Scaff-22_tofit_gen25ind40.bngl +96 -0
  833. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_de/Scaff-22_tofit_gen11ind20.bngl +96 -0
  834. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_pso/Scaff-22_tofit_iter17p14.bngl +96 -0
  835. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/18-mapk/fit_ss/Scaff-22_tofit_iter28p2h5.bngl +96 -0
  836. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/20-raf-constraint4/fit_de/RAFi_gen0ind36.bngl +125 -0
  837. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/24-jnk/fit_ade/JNKmodel_180724_bnf_gen22ind34.bngl +263 -0
  838. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/24-jnk/fit_de/JNKmodel_180724_bnf_gen43ind6.bngl +263 -0
  839. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/24-jnk/fit_pso/JNKmodel_180724_bnf_iter127p71.bngl +263 -0
  840. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/26-tcr-sens/fit_ss/fit_edited.bngl +178 -0
  841. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019/30-jobs/jobs_ground.bngl +63 -0
  842. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019Rab/rab_mon1ccz1_ox.bngl +497 -0
  843. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019Rab/rab_rab5_ox.bngl +496 -0
  844. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mitra2019Rab/rab_wt.bngl +499 -0
  845. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/ModelZAP/Model_ZAP.bngl +300 -0
  846. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Mukhopadhyay2013/Mukhopadhyay_2013.bngl +107 -0
  847. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Ordyan2020/mCaMKIICaSpike/mCaMKII_Ca_Spike.bngl +215 -0
  848. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Posner1995/blbr_rings_posner1995.bngl +178 -0
  849. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Posner1995/blbr_rings_posner1995_nfr.species +103 -0
  850. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Posner2004/blbr_cooperativity_posner2004.bngl +196 -0
  851. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/PyBioNetGen/core/RAFiground/RAFi_ground.bngl +120 -0
  852. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/PyBioNetGen/core/model/model.bngl +405 -0
  853. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_EGFR_Epigen.bngl +336 -0
  854. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_EGFR_best-fit.bngl +358 -0
  855. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_EGFR_sensitivity.bngl +478 -0
  856. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_CHO_HA_EGFR_L858R.bngl +334 -0
  857. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_HMEC.bngl +313 -0
  858. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_HeLa.bngl +313 -0
  859. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Salazar-Cavazos2019/190127_MCF10A.bngl +313 -0
  860. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/Zhang2021/Zhang_2021.bngl +760 -0
  861. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/fcerifyn/fceri_fyn.bngl +125 -0
  862. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/vilar2002b/vilar_2002b.bngl +75 -0
  863. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Published/vilar2002c/vilar_2002c.bngl +85 -0
  864. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/CaOscillateFunc/CaOscillate_Func.bngl +62 -0
  865. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/CaOscillateSat/CaOscillate_Sat.bngl +62 -0
  866. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/Motivatingexample/Motivating_example.bngl +262 -0
  867. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/MotivatingexamplecBNGL/Motivating_example_cBNGL.bngl +226 -0
  868. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/ABCscan/ABC_scan.bngl +24 -0
  869. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/ABCssa/ABC_ssa.bngl +14 -0
  870. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/BABscan/BAB_scan.bngl +32 -0
  871. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/Chyleklibrary/Chylek_library.bngl +369 -0
  872. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/CircadianOscillator/CircadianOscillator.bngl +93 -0
  873. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/ComplexDegradation/ComplexDegradation.bngl +36 -0
  874. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/FceRIji/FceRI_ji.bngl +134 -0
  875. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/FceRIviz/FceRI_viz.bngl +107 -0
  876. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/Lismanbifurcate/Lisman_bifurcate.bngl +37 -0
  877. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/Suderman2013/Suderman_2013.bngl +387 -0
  878. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/toggle/toggle.bngl +81 -0
  879. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/NativeTutorials/visualize/visualize.bngl +54 -0
  880. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/egfrnet/egfr_net.bngl +174 -0
  881. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulehub/Tutorials/nfkbillustratingprotocols/nfkb_illustrating_protocols.bngl +247 -0
  882. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulemonkey/Testing/issue_05_timing_horizon/models/HBF1998_brusselator.bngl +76 -0
  883. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulemonkey/Testing/issue_05_timing_horizon/models/Lipniacki2006.bngl +77 -0
  884. bngsim-0.11.32/parity_checks/bng_parity/models/slow/rulemonkey/Testing/issue_05_timing_horizon/models/Samoilov2005_FutileCycle.bngl +85 -0
  885. bngsim-0.11.32/parity_checks/bng_parity/overrides.py +253 -0
  886. bngsim-0.11.32/parity_checks/bng_parity/parity_diff.py +118 -0
  887. bngsim-0.11.32/parity_checks/bng_parity/parity_golden.py +623 -0
  888. bngsim-0.11.32/parity_checks/bng_parity/parity_sweep.py +1138 -0
  889. bngsim-0.11.32/parity_checks/bng_parity/vendor_corpus.py +546 -0
  890. bngsim-0.11.32/parity_checks/manifest.schema.json +144 -0
  891. bngsim-0.11.32/parity_checks/manifest_schema.md +229 -0
  892. bngsim-0.11.32/parity_checks/requirements-pybionetgen.txt +27 -0
  893. bngsim-0.11.32/parity_checks/rr_parity/.gitignore +3 -0
  894. bngsim-0.11.32/parity_checks/rr_parity/INSTRUMENTED_ROADRUNNER.md +217 -0
  895. bngsim-0.11.32/parity_checks/rr_parity/README.md +398 -0
  896. bngsim-0.11.32/parity_checks/rr_parity/_rr_common.py +981 -0
  897. bngsim-0.11.32/parity_checks/rr_parity/_sbml_features.py +199 -0
  898. bngsim-0.11.32/parity_checks/rr_parity/build_instrumented_roadrunner.sh +111 -0
  899. bngsim-0.11.32/parity_checks/rr_parity/build_ode_jobs.py +225 -0
  900. bngsim-0.11.32/parity_checks/rr_parity/build_ssa_candidates.py +561 -0
  901. bngsim-0.11.32/parity_checks/rr_parity/build_ssa_jobs.py +158 -0
  902. bngsim-0.11.32/parity_checks/rr_parity/cbngl_bng2_validate.py +147 -0
  903. bngsim-0.11.32/parity_checks/rr_parity/convert_sweep.py +151 -0
  904. bngsim-0.11.32/parity_checks/rr_parity/data/.gitignore +7 -0
  905. bngsim-0.11.32/parity_checks/rr_parity/data/README.md +18 -0
  906. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/BIOMD0000000883/Giani2019.xml +7446 -0
  907. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/BIOMD0000001102/BIOMD0000001102.xml +1574 -0
  908. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/BIOMD0000001103/BIOMD0000001103.xml +992 -0
  909. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003030002/MODEL2003030002.xml +583 -0
  910. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003030003/MODEL2003030003.xml +559 -0
  911. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003050001/MODEL2003050001.xml +1587 -0
  912. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2003050002/MODEL2003050002.xml +1086 -0
  913. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2009230001/MODEL2009230001.xml +1818 -0
  914. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2306210001/MODEL2306210001.xml +1697 -0
  915. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2306220001/MODEL2306220001.xml +1333 -0
  916. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2502210001/MODEL2502210001.xml +504 -0
  917. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2503310002/MODEL2503310002.xml +345 -0
  918. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2506160001/MODEL2506160001.xml +1594 -0
  919. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL2506160002/MODEL2506160002.xml +1594 -0
  920. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/MODEL8236441887/MODEL8236441887.xml +1724 -0
  921. bngsim-0.11.32/parity_checks/rr_parity/data/sbml_overrides/README.md +26 -0
  922. bngsim-0.11.32/parity_checks/rr_parity/diff_ssa_baseline.py +150 -0
  923. bngsim-0.11.32/parity_checks/rr_parity/fetch_sedml.py +196 -0
  924. bngsim-0.11.32/parity_checks/rr_parity/generate_matrix.py +3441 -0
  925. bngsim-0.11.32/parity_checks/rr_parity/generate_sedml_manifest.py +232 -0
  926. bngsim-0.11.32/parity_checks/rr_parity/make_ssa_baseline.py +61 -0
  927. bngsim-0.11.32/parity_checks/rr_parity/materialize.py +147 -0
  928. bngsim-0.11.32/parity_checks/rr_parity/models/.gitignore +8 -0
  929. bngsim-0.11.32/parity_checks/rr_parity/ode_jobs.json +1346 -0
  930. bngsim-0.11.32/parity_checks/rr_parity/overrides.py +565 -0
  931. bngsim-0.11.32/parity_checks/rr_parity/rr_golden.py +383 -0
  932. bngsim-0.11.32/parity_checks/rr_parity/rr_run.py +912 -0
  933. bngsim-0.11.32/parity_checks/rr_parity/smoke/README.md +32 -0
  934. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000001/BIOMD0000000001_url.sedml +634 -0
  935. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000001/BIOMD0000000001_url.xml +1314 -0
  936. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000003/BIOMD0000000003_url.sedml +184 -0
  937. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000003/BIOMD0000000003_url.xml +469 -0
  938. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000004/BIOMD0000000004_url.sedml +204 -0
  939. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000004/BIOMD0000000004_url.xml +451 -0
  940. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000005/BIOMD0000000005.sedml +208 -0
  941. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000005/BIOMD0000000005_url.xml +588 -0
  942. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000006/BIOMD0000000006_url.sedml +158 -0
  943. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000006/BIOMD0000000006_url.xml +334 -0
  944. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000010/BIOMD0000000010_url.sedml +304 -0
  945. bngsim-0.11.32/parity_checks/rr_parity/smoke/models/BIOMD0000000010/BIOMD0000000010_url.xml +704 -0
  946. bngsim-0.11.32/parity_checks/rr_parity/smoke/ode_jobs_smoke.json +158 -0
  947. bngsim-0.11.32/parity_checks/rr_parity/snapshots/README.md +33 -0
  948. bngsim-0.11.32/parity_checks/rr_parity/ssa_attribution.py +416 -0
  949. bngsim-0.11.32/parity_checks/rr_parity/ssa_baseline.json +372 -0
  950. bngsim-0.11.32/parity_checks/rr_parity/ssa_candidates.json +1853 -0
  951. bngsim-0.11.32/parity_checks/rr_parity/ssa_jobs.json +387 -0
  952. bngsim-0.11.32/parity_checks/rr_parity/ssa_screen.py +1772 -0
  953. bngsim-0.11.32/parity_checks/rr_parity/ssa_spec.json +18 -0
  954. bngsim-0.11.32/parity_checks/rr_parity/temp_biomodels_manifest.json +1992 -0
  955. bngsim-0.11.32/parity_checks/rr_parity/test_sbml_features.py +24 -0
  956. bngsim-0.11.32/pyproject.toml +240 -0
  957. bngsim-0.11.32/python/bngsim/__init__.py +374 -0
  958. bngsim-0.11.32/python/bngsim/_bngsim_core.pyi +893 -0
  959. bngsim-0.11.32/python/bngsim/_build_provenance.py +390 -0
  960. bngsim-0.11.32/python/bngsim/_codegen.py +5565 -0
  961. bngsim-0.11.32/python/bngsim/_diffrax_solver.py +154 -0
  962. bngsim-0.11.32/python/bngsim/_eval_spec.py +284 -0
  963. bngsim-0.11.32/python/bngsim/_exceptions.py +245 -0
  964. bngsim-0.11.32/python/bngsim/_jacobian.py +1412 -0
  965. bngsim-0.11.32/python/bngsim/_jax_bridge.py +429 -0
  966. bngsim-0.11.32/python/bngsim/_jax_rhs.py +455 -0
  967. bngsim-0.11.32/python/bngsim/_model.py +842 -0
  968. bngsim-0.11.32/python/bngsim/_named_array.py +106 -0
  969. bngsim-0.11.32/python/bngsim/_net_reader.py +399 -0
  970. bngsim-0.11.32/python/bngsim/_nfsim_session.py +751 -0
  971. bngsim-0.11.32/python/bngsim/_result.py +2893 -0
  972. bngsim-0.11.32/python/bngsim/_rounding.py +74 -0
  973. bngsim-0.11.32/python/bngsim/_rulemonkey_session.py +527 -0
  974. bngsim-0.11.32/python/bngsim/_sample_times.py +45 -0
  975. bngsim-0.11.32/python/bngsim/_saturable_jacobian.py +640 -0
  976. bngsim-0.11.32/python/bngsim/_sbml_loader.py +6120 -0
  977. bngsim-0.11.32/python/bngsim/_sbml_unsupported.py +173 -0
  978. bngsim-0.11.32/python/bngsim/_seed.py +40 -0
  979. bngsim-0.11.32/python/bngsim/_simulator.py +3680 -0
  980. bngsim-0.11.32/python/bngsim/_ssa_validation.py +96 -0
  981. bngsim-0.11.32/python/bngsim/_version.py +33 -0
  982. bngsim-0.11.32/python/bngsim/convert/__init__.py +1170 -0
  983. bngsim-0.11.32/python/bngsim/convert/__main__.py +8 -0
  984. bngsim-0.11.32/python/bngsim/convert/_bng2.py +166 -0
  985. bngsim-0.11.32/python/bngsim/convert/_bngl_writer.py +740 -0
  986. bngsim-0.11.32/python/bngsim/convert/_cli.py +758 -0
  987. bngsim-0.11.32/python/bngsim/convert/_events.py +388 -0
  988. bngsim-0.11.32/python/bngsim/convert/_net_writer.py +542 -0
  989. bngsim-0.11.32/python/bngsim/convert/_omex.py +564 -0
  990. bngsim-0.11.32/python/bngsim/convert/_protocol.py +900 -0
  991. bngsim-0.11.32/python/bngsim/convert/_sbml_writer.py +1068 -0
  992. bngsim-0.11.32/python/bngsim/convert/_sedml.py +797 -0
  993. bngsim-0.11.32/python/bngsim/convert/_validate.py +1320 -0
  994. bngsim-0.11.32/python/bngsim/coupling.py +1048 -0
  995. bngsim-0.11.32/python/bngsim/jax/__init__.py +43 -0
  996. bngsim-0.11.32/python/bngsim/kernel.py +336 -0
  997. bngsim-0.11.32/python/bngsim/vivarium.py +221 -0
  998. bngsim-0.11.32/src/_bngsim_core.cpp +1902 -0
  999. bngsim-0.11.32/src/bngsim_api.cpp +207 -0
  1000. bngsim-0.11.32/src/cvode_simulator.cpp +3342 -0
  1001. bngsim-0.11.32/src/expression.cpp +895 -0
  1002. bngsim-0.11.32/src/lapack_dense_linsol.cpp +319 -0
  1003. bngsim-0.11.32/src/model.cpp +1986 -0
  1004. bngsim-0.11.32/src/model_builder.cpp +1539 -0
  1005. bngsim-0.11.32/src/model_impl.hpp +268 -0
  1006. bngsim-0.11.32/src/net_file_loader.cpp +996 -0
  1007. bngsim-0.11.32/src/nfsim_simulator.cpp +1681 -0
  1008. bngsim-0.11.32/src/result.cpp +367 -0
  1009. bngsim-0.11.32/src/rulemonkey_simulator.cpp +315 -0
  1010. bngsim-0.11.32/src/seed_count_rounding.hpp +269 -0
  1011. bngsim-0.11.32/src/ssa_simulator.cpp +1698 -0
  1012. bngsim-0.11.32/src/steady_state.cpp +691 -0
  1013. bngsim-0.11.32/src/table_function.cpp +190 -0
  1014. bngsim-0.11.32/third_party/exprtk/LICENSE +21 -0
  1015. bngsim-0.11.32/third_party/exprtk/README.md +32 -0
  1016. bngsim-0.11.32/third_party/exprtk/VENDOR.json +179 -0
  1017. bngsim-0.11.32/third_party/exprtk/exprtk.hpp +46637 -0
  1018. bngsim-0.11.32/third_party/mir/LICENSE +21 -0
  1019. bngsim-0.11.32/third_party/mir/README.md +441 -0
  1020. bngsim-0.11.32/third_party/mir/README.md.bngsim +51 -0
  1021. bngsim-0.11.32/third_party/mir/VENDOR.json +68 -0
  1022. bngsim-0.11.32/third_party/mir/c2mir/README.md +158 -0
  1023. bngsim-0.11.32/third_party/mir/c2mir/aarch64/caarch64-ABI-code.c +100 -0
  1024. bngsim-0.11.32/third_party/mir/c2mir/aarch64/caarch64-code.c +29 -0
  1025. bngsim-0.11.32/third_party/mir/c2mir/aarch64/caarch64.h +55 -0
  1026. bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_float.h +60 -0
  1027. bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_limits.h +38 -0
  1028. bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_linux.h +143 -0
  1029. bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_stdarg.h +31 -0
  1030. bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_stddef.h +19 -0
  1031. bngsim-0.11.32/third_party/mir/c2mir/aarch64/mirc_aarch64_stdint.h +141 -0
  1032. bngsim-0.11.32/third_party/mir/c2mir/c2mir.c +14258 -0
  1033. bngsim-0.11.32/third_party/mir/c2mir/c2mir.h +36 -0
  1034. bngsim-0.11.32/third_party/mir/c2mir/mirc.h +39 -0
  1035. bngsim-0.11.32/third_party/mir/c2mir/mirc_iso646.h +21 -0
  1036. bngsim-0.11.32/third_party/mir/c2mir/mirc_stdalign.h +14 -0
  1037. bngsim-0.11.32/third_party/mir/c2mir/mirc_stdbool.h +14 -0
  1038. bngsim-0.11.32/third_party/mir/c2mir/mirc_stdnoreturn.h +11 -0
  1039. bngsim-0.11.32/third_party/mir/c2mir/ppc64/cppc64-ABI-code.c +311 -0
  1040. bngsim-0.11.32/third_party/mir/c2mir/ppc64/cppc64-code.c +28 -0
  1041. bngsim-0.11.32/third_party/mir/c2mir/ppc64/cppc64.h +55 -0
  1042. bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_float.h +60 -0
  1043. bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_limits.h +38 -0
  1044. bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_linux.h +123 -0
  1045. bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_stdarg.h +23 -0
  1046. bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_stddef.h +19 -0
  1047. bngsim-0.11.32/third_party/mir/c2mir/ppc64/mirc_ppc64_stdint.h +133 -0
  1048. bngsim-0.11.32/third_party/mir/c2mir/riscv64/criscv64-ABI-code.c +462 -0
  1049. bngsim-0.11.32/third_party/mir/c2mir/riscv64/criscv64-code.c +29 -0
  1050. bngsim-0.11.32/third_party/mir/c2mir/riscv64/criscv64.h +55 -0
  1051. bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_float.h +60 -0
  1052. bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_limits.h +38 -0
  1053. bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_linux.h +120 -0
  1054. bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_stdarg.h +25 -0
  1055. bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_stddef.h +19 -0
  1056. bngsim-0.11.32/third_party/mir/c2mir/riscv64/mirc_riscv64_stdint.h +133 -0
  1057. bngsim-0.11.32/third_party/mir/c2mir/s390x/cs390x-ABI-code.c +102 -0
  1058. bngsim-0.11.32/third_party/mir/c2mir/s390x/cs390x-code.c +28 -0
  1059. bngsim-0.11.32/third_party/mir/c2mir/s390x/cs390x.h +57 -0
  1060. bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_float.h +60 -0
  1061. bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_limits.h +38 -0
  1062. bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_linux.h +122 -0
  1063. bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_stdarg.h +27 -0
  1064. bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_stddef.h +19 -0
  1065. bngsim-0.11.32/third_party/mir/c2mir/s390x/mirc_s390x_stdint.h +133 -0
  1066. bngsim-0.11.32/third_party/mir/c2mir/x86_64/cx86_64-ABI-code.c +415 -0
  1067. bngsim-0.11.32/third_party/mir/c2mir/x86_64/cx86_64-code.c +34 -0
  1068. bngsim-0.11.32/third_party/mir/c2mir/x86_64/cx86_64.h +78 -0
  1069. bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_float.h +60 -0
  1070. bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_limits.h +48 -0
  1071. bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_linux.h +131 -0
  1072. bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_stdarg.h +41 -0
  1073. bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_stddef.h +30 -0
  1074. bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_stdint.h +178 -0
  1075. bngsim-0.11.32/third_party/mir/c2mir/x86_64/mirc_x86_64_win.h +116 -0
  1076. bngsim-0.11.32/third_party/mir/mir-aarch64.c +839 -0
  1077. bngsim-0.11.32/third_party/mir/mir-aarch64.h +61 -0
  1078. bngsim-0.11.32/third_party/mir/mir-alloc-default.c +36 -0
  1079. bngsim-0.11.32/third_party/mir/mir-alloc.h +47 -0
  1080. bngsim-0.11.32/third_party/mir/mir-bitmap.h +372 -0
  1081. bngsim-0.11.32/third_party/mir/mir-code-alloc-default.c +90 -0
  1082. bngsim-0.11.32/third_party/mir/mir-code-alloc.h +44 -0
  1083. bngsim-0.11.32/third_party/mir/mir-dlist.h +182 -0
  1084. bngsim-0.11.32/third_party/mir/mir-gen-aarch64.c +2678 -0
  1085. bngsim-0.11.32/third_party/mir/mir-gen-ppc64.c +2648 -0
  1086. bngsim-0.11.32/third_party/mir/mir-gen-riscv64.c +3001 -0
  1087. bngsim-0.11.32/third_party/mir/mir-gen-s390x.c +2436 -0
  1088. bngsim-0.11.32/third_party/mir/mir-gen-x86_64.c +3203 -0
  1089. bngsim-0.11.32/third_party/mir/mir-gen.c +10018 -0
  1090. bngsim-0.11.32/third_party/mir/mir-gen.h +33 -0
  1091. bngsim-0.11.32/third_party/mir/mir-hash.h +98 -0
  1092. bngsim-0.11.32/third_party/mir/mir-htab.h +256 -0
  1093. bngsim-0.11.32/third_party/mir/mir-interp.c +2054 -0
  1094. bngsim-0.11.32/third_party/mir/mir-ppc64.c +674 -0
  1095. bngsim-0.11.32/third_party/mir/mir-ppc64.h +114 -0
  1096. bngsim-0.11.32/third_party/mir/mir-reduce.h +466 -0
  1097. bngsim-0.11.32/third_party/mir/mir-riscv64.c +1177 -0
  1098. bngsim-0.11.32/third_party/mir/mir-riscv64.h +78 -0
  1099. bngsim-0.11.32/third_party/mir/mir-s390x.c +600 -0
  1100. bngsim-0.11.32/third_party/mir/mir-s390x.h +57 -0
  1101. bngsim-0.11.32/third_party/mir/mir-varr.h +196 -0
  1102. bngsim-0.11.32/third_party/mir/mir-x86_64.c +972 -0
  1103. bngsim-0.11.32/third_party/mir/mir-x86_64.h +59 -0
  1104. bngsim-0.11.32/third_party/mir/mir.c +6993 -0
  1105. bngsim-0.11.32/third_party/mir/mir.h +739 -0
  1106. bngsim-0.11.32/third_party/mir/real-time.h +41 -0
  1107. bngsim-0.11.32/third_party/nfsim/CMakeLists.txt +159 -0
  1108. bngsim-0.11.32/third_party/nfsim/LICENSE.txt +21 -0
  1109. bngsim-0.11.32/third_party/nfsim/README.md +364 -0
  1110. bngsim-0.11.32/third_party/nfsim/VENDOR.json +185 -0
  1111. bngsim-0.11.32/third_party/nfsim/src/NFcore/NFcore.hh +1613 -0
  1112. bngsim-0.11.32/third_party/nfsim/src/NFcore/compartment.cpp +62 -0
  1113. bngsim-0.11.32/third_party/nfsim/src/NFcore/compartment.hh +79 -0
  1114. bngsim-0.11.32/third_party/nfsim/src/NFcore/complex.cpp +457 -0
  1115. bngsim-0.11.32/third_party/nfsim/src/NFcore/complexList.cpp +209 -0
  1116. bngsim-0.11.32/third_party/nfsim/src/NFcore/energyPattern.cpp +561 -0
  1117. bngsim-0.11.32/third_party/nfsim/src/NFcore/energyPattern.hh +220 -0
  1118. bngsim-0.11.32/third_party/nfsim/src/NFcore/molecule.cpp +770 -0
  1119. bngsim-0.11.32/third_party/nfsim/src/NFcore/moleculeLists/moleculeList.cpp +177 -0
  1120. bngsim-0.11.32/third_party/nfsim/src/NFcore/moleculeLists/moleculeList.hh +107 -0
  1121. bngsim-0.11.32/third_party/nfsim/src/NFcore/moleculeType.cpp +835 -0
  1122. bngsim-0.11.32/third_party/nfsim/src/NFcore/observable.cpp +535 -0
  1123. bngsim-0.11.32/third_party/nfsim/src/NFcore/observable.hh +212 -0
  1124. bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionClass.cpp +693 -0
  1125. bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionSelector/directSelector.cpp +87 -0
  1126. bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionSelector/logClassSelector.cpp +368 -0
  1127. bngsim-0.11.32/third_party/nfsim/src/NFcore/reactionSelector/reactionSelector.hh +149 -0
  1128. bngsim-0.11.32/third_party/nfsim/src/NFcore/system.cpp +2246 -0
  1129. bngsim-0.11.32/third_party/nfsim/src/NFcore/systemSnapshot.cpp +124 -0
  1130. bngsim-0.11.32/third_party/nfsim/src/NFcore/systemSnapshot.hh +49 -0
  1131. bngsim-0.11.32/third_party/nfsim/src/NFcore/templateMolecule.cpp +2157 -0
  1132. bngsim-0.11.32/third_party/nfsim/src/NFcore/templateMolecule.hh +267 -0
  1133. bngsim-0.11.32/third_party/nfsim/src/NFfunction/NFfunction.hh +505 -0
  1134. bngsim-0.11.32/third_party/nfsim/src/NFfunction/compositeFunction.cpp +663 -0
  1135. bngsim-0.11.32/third_party/nfsim/src/NFfunction/funcParser.cpp +250 -0
  1136. bngsim-0.11.32/third_party/nfsim/src/NFfunction/function.cpp +408 -0
  1137. bngsim-0.11.32/third_party/nfsim/src/NFfunction/localFunction.cpp +580 -0
  1138. bngsim-0.11.32/third_party/nfsim/src/NFfunction/nfsim_funcparser.h +342 -0
  1139. bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput.cpp +4609 -0
  1140. bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput.hh +344 -0
  1141. bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput_energy.cpp +223 -0
  1142. bngsim-0.11.32/third_party/nfsim/src/NFinput/NFinput_energy.hh +50 -0
  1143. bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/readme.txt +530 -0
  1144. bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinystr.cpp +116 -0
  1145. bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinystr.h +319 -0
  1146. bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxml.cpp +1861 -0
  1147. bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxml.h +1792 -0
  1148. bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxmlerror.cpp +53 -0
  1149. bngsim-0.11.32/third_party/nfsim/src/NFinput/TinyXML/tinyxmlparser.cpp +1637 -0
  1150. bngsim-0.11.32/third_party/nfsim/src/NFinput/commandLineParser.cpp +270 -0
  1151. bngsim-0.11.32/third_party/nfsim/src/NFinput/parseFuncXML.cpp +842 -0
  1152. bngsim-0.11.32/third_party/nfsim/src/NFinput/parseSymRxns.cpp +895 -0
  1153. bngsim-0.11.32/third_party/nfsim/src/NFinput/rnfRunner.cpp +379 -0
  1154. bngsim-0.11.32/third_party/nfsim/src/NFinput/walk.cpp +291 -0
  1155. bngsim-0.11.32/third_party/nfsim/src/NFoutput/NFoutput.cpp +223 -0
  1156. bngsim-0.11.32/third_party/nfsim/src/NFoutput/NFoutput.hh +119 -0
  1157. bngsim-0.11.32/third_party/nfsim/src/NFreactions/NFreactions.cpp +10 -0
  1158. bngsim-0.11.32/third_party/nfsim/src/NFreactions/NFreactions.hh +33 -0
  1159. bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mapping.cpp +73 -0
  1160. bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mapping.hh +133 -0
  1161. bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingGenerator.cpp +18 -0
  1162. bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingGenerator.hh +71 -0
  1163. bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingSet.cpp +239 -0
  1164. bngsim-0.11.32/third_party/nfsim/src/NFreactions/mappings/mappingSet.hh +163 -0
  1165. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantContainer.hh +84 -0
  1166. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantList.cpp +248 -0
  1167. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantList.hh +154 -0
  1168. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantTree.cpp +593 -0
  1169. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactantLists/reactantTree.hh +206 -0
  1170. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactions/DORreaction.cpp +1531 -0
  1171. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactions/reaction.cpp +630 -0
  1172. bngsim-0.11.32/third_party/nfsim/src/NFreactions/reactions/reaction.hh +242 -0
  1173. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/moleculeCreator.cpp +191 -0
  1174. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/moleculeCreator.hh +79 -0
  1175. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/speciesCreator.cpp +188 -0
  1176. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/speciesCreator.hh +80 -0
  1177. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformation.cpp +646 -0
  1178. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformation.hh +463 -0
  1179. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformationSet.cpp +1154 -0
  1180. bngsim-0.11.32/third_party/nfsim/src/NFreactions/transformations/transformationSet.hh +439 -0
  1181. bngsim-0.11.32/third_party/nfsim/src/NFscheduler/NFstream.cpp +168 -0
  1182. bngsim-0.11.32/third_party/nfsim/src/NFscheduler/NFstream.h +71 -0
  1183. bngsim-0.11.32/third_party/nfsim/src/NFscheduler/Scheduler.cpp +847 -0
  1184. bngsim-0.11.32/third_party/nfsim/src/NFscheduler/Scheduler.h +118 -0
  1185. bngsim-0.11.32/third_party/nfsim/src/NFsim.cpp +1034 -0
  1186. bngsim-0.11.32/third_party/nfsim/src/NFsim.hh +30 -0
  1187. bngsim-0.11.32/third_party/nfsim/src/NFsim_main.cpp +6 -0
  1188. bngsim-0.11.32/third_party/nfsim/src/NFutil/MTrand/mtrand.cpp +54 -0
  1189. bngsim-0.11.32/third_party/nfsim/src/NFutil/MTrand/mtrand.h +153 -0
  1190. bngsim-0.11.32/third_party/nfsim/src/NFutil/MTrand/mtreadme.txt +118 -0
  1191. bngsim-0.11.32/third_party/nfsim/src/NFutil/NFutil.hh +148 -0
  1192. bngsim-0.11.32/third_party/nfsim/src/NFutil/conversion.cpp +122 -0
  1193. bngsim-0.11.32/third_party/nfsim/src/NFutil/nfsim_rng.h +138 -0
  1194. bngsim-0.11.32/third_party/nfsim/src/NFutil/random.cpp +114 -0
  1195. bngsim-0.11.32/third_party/nfsim/src/NFutil/stringOperations.cpp +24 -0
  1196. bngsim-0.11.32/third_party/nfsim/src/nauty24/nausparse.c +1519 -0
  1197. bngsim-0.11.32/third_party/nfsim/src/nauty24/nausparse.h +77 -0
  1198. bngsim-0.11.32/third_party/nfsim/src/nauty24/nautil.c +730 -0
  1199. bngsim-0.11.32/third_party/nfsim/src/nauty24/nauty.c +1178 -0
  1200. bngsim-0.11.32/third_party/nfsim/src/nauty24/nauty.h +1076 -0
  1201. bngsim-0.11.32/third_party/nfsim/src/nauty24/readme.txt +11 -0
  1202. bngsim-0.11.32/third_party/rulemonkey/CHANGELOG.md +854 -0
  1203. bngsim-0.11.32/third_party/rulemonkey/CMakeLists.txt +307 -0
  1204. bngsim-0.11.32/third_party/rulemonkey/LICENSE +21 -0
  1205. bngsim-0.11.32/third_party/rulemonkey/README.md +228 -0
  1206. bngsim-0.11.32/third_party/rulemonkey/VENDOR.json +51 -0
  1207. bngsim-0.11.32/third_party/rulemonkey/cmake/RuleMonkeyConfig.cmake.in +12 -0
  1208. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/canonical.cpp +624 -0
  1209. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/canonical.hpp +110 -0
  1210. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/engine.cpp +8220 -0
  1211. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/engine.hpp +126 -0
  1212. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/engine_profile.hpp +1315 -0
  1213. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/expr_eval.cpp +54 -0
  1214. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/expr_eval.hpp +37 -0
  1215. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/model.hpp +385 -0
  1216. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/pattern_parser.cpp +339 -0
  1217. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/pattern_parser.hpp +42 -0
  1218. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/simulator.cpp +2561 -0
  1219. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/table_function.cpp +96 -0
  1220. bngsim-0.11.32/third_party/rulemonkey/cpp/rulemonkey/table_function.hpp +35 -0
  1221. bngsim-0.11.32/third_party/rulemonkey/docs/gdat_format.md +144 -0
  1222. bngsim-0.11.32/third_party/rulemonkey/docs/internals.md +172 -0
  1223. bngsim-0.11.32/third_party/rulemonkey/docs/model_semantics.md +264 -0
  1224. bngsim-0.11.32/third_party/rulemonkey/docs/quickstart.md +150 -0
  1225. bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/macaque.png +0 -0
  1226. bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/rulemonkey-favicon.svg +11 -0
  1227. bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/rulemonkey-logo.svg +11 -0
  1228. bngsim-0.11.32/third_party/rulemonkey/docs/rulemonkey-macaque-logo/rulemonkey-readme-card.svg +11 -0
  1229. bngsim-0.11.32/third_party/rulemonkey/docs/scan_format.md +157 -0
  1230. bngsim-0.11.32/third_party/rulemonkey/docs/species_format.md +187 -0
  1231. bngsim-0.11.32/third_party/rulemonkey/docs/test_corpora.md +187 -0
  1232. bngsim-0.11.32/third_party/rulemonkey/docs/timing_comparison.md +206 -0
  1233. bngsim-0.11.32/third_party/rulemonkey/docs/troubleshooting.md +226 -0
  1234. bngsim-0.11.32/third_party/rulemonkey/include/rulemonkey/simulator.hpp +374 -0
  1235. bngsim-0.11.32/third_party/rulemonkey/include/rulemonkey/types.hpp +178 -0
  1236. bngsim-0.11.32/third_party/sundials/README.md +9 -0
  1237. bngsim-0.11.32/third_party/sundials/VENDOR.json +99 -0
  1238. bngsim-0.11.32/uv.lock +3086 -0
@@ -0,0 +1,3 @@
1
+ BasedOnStyle: LLVM
2
+ IndentWidth: 4
3
+ ColumnLimit: 100
@@ -0,0 +1,84 @@
1
+ name: release
2
+
3
+ # Build release artifacts (wheels + sdist) and publish via PyPI Trusted
4
+ # Publishing (OIDC — no API tokens).
5
+ #
6
+ # - Manual run (workflow_dispatch): choose `testpypi` (rehearsal) or `pypi`.
7
+ # - Tag push (v*): publishes to PyPI.
8
+ #
9
+ # Scope: Linux (manylinux x86_64) + macOS arm64 + sdist. Intel-macOS / Windows
10
+ # wheels can be added later; platforms without a wheel fall back to the sdist.
11
+ #
12
+ # The publish job runs in the `pypi` / `testpypi` GitHub Environment so it matches
13
+ # the trusted-publisher configuration on (Test)PyPI.
14
+
15
+ on:
16
+ workflow_dispatch:
17
+ inputs:
18
+ target:
19
+ description: "Publish target"
20
+ type: choice
21
+ options: [testpypi, pypi]
22
+ default: testpypi
23
+ push:
24
+ tags: ["v*"]
25
+
26
+ concurrency:
27
+ group: release-${{ github.ref }}
28
+ cancel-in-progress: false
29
+
30
+ jobs:
31
+ wheels:
32
+ name: wheels · ${{ matrix.os }}
33
+ runs-on: ${{ matrix.os }}
34
+ strategy:
35
+ fail-fast: false
36
+ matrix:
37
+ include:
38
+ - os: ubuntu-latest # manylinux x86_64
39
+ - os: macos-14 # macOS arm64 (Apple Silicon)
40
+ macos_target: "11.0"
41
+ steps:
42
+ - uses: actions/checkout@v4
43
+ - name: Build wheels
44
+ uses: pypa/cibuildwheel@v4.1.0
45
+ env:
46
+ MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_target }}
47
+ - uses: actions/upload-artifact@v4
48
+ with:
49
+ name: dist-${{ matrix.os }}
50
+ path: ./wheelhouse/*.whl
51
+ if-no-files-found: error
52
+
53
+ sdist:
54
+ runs-on: ubuntu-latest
55
+ steps:
56
+ - uses: actions/checkout@v4
57
+ - name: Build sdist
58
+ run: pipx run build --sdist
59
+ - uses: actions/upload-artifact@v4
60
+ with:
61
+ name: dist-sdist
62
+ path: ./dist/*.tar.gz
63
+ if-no-files-found: error
64
+
65
+ publish:
66
+ needs: [wheels, sdist]
67
+ runs-on: ubuntu-latest
68
+ # `pypi` for a tag push or an explicit dispatch target of pypi; else `testpypi`.
69
+ environment: ${{ (github.event_name == 'push' || inputs.target == 'pypi') && 'pypi' || 'testpypi' }}
70
+ permissions:
71
+ id-token: write # OIDC token for Trusted Publishing
72
+ steps:
73
+ - uses: actions/download-artifact@v4
74
+ with:
75
+ path: dist
76
+ pattern: dist-*
77
+ merge-multiple: true
78
+ - name: List collected distributions
79
+ run: ls -la dist
80
+ - name: Publish
81
+ uses: pypa/gh-action-pypi-publish@release/v1
82
+ with:
83
+ packages-dir: dist
84
+ repository-url: ${{ (github.event_name == 'push' || inputs.target == 'pypi') && 'https://upload.pypi.org/legacy/' || 'https://test.pypi.org/legacy/' }}
@@ -0,0 +1,68 @@
1
+ name: wheels
2
+
3
+ # Build binary wheels (Linux / macOS / Windows) + an sdist with cibuildwheel,
4
+ # and upload them as CI artifacts. No PyPI publishing — that's a separate step.
5
+ # Wheels bundle SuiteSparse/KLU (see [tool.cibuildwheel] in pyproject.toml).
6
+
7
+ on:
8
+ workflow_dispatch: {}
9
+ push:
10
+ branches: [main]
11
+ paths:
12
+ - "pyproject.toml"
13
+ - "CMakeLists.txt"
14
+ - "src/**"
15
+ - "include/**"
16
+ - "third_party/**"
17
+ - "python/bngsim/**"
18
+ - "ci/**"
19
+ - ".github/workflows/wheels.yml"
20
+
21
+ concurrency:
22
+ group: wheels-${{ github.ref }}
23
+ cancel-in-progress: true
24
+
25
+ jobs:
26
+ wheels:
27
+ name: wheels · ${{ matrix.os }}
28
+ runs-on: ${{ matrix.os }}
29
+ # Windows KLU (vcpkg AMD/COLAMD/BTF + dlsym) still WIP → non-blocking.
30
+ continue-on-error: ${{ matrix.os == 'windows-latest' }}
31
+ strategy:
32
+ fail-fast: false
33
+ matrix:
34
+ include:
35
+ - os: ubuntu-latest # manylinux x86_64
36
+ - os: macos-13 # macOS x86_64 (Intel)
37
+ macos_target: "10.15" # from-source SuiteSparse -> broad target
38
+ - os: macos-14 # macOS arm64 (Apple Silicon)
39
+ macos_target: "11.0" # arm64 floor; from-source SuiteSparse
40
+ - os: windows-latest # Windows x86_64
41
+ steps:
42
+ - uses: actions/checkout@v4
43
+
44
+ - name: Build wheels
45
+ uses: pypa/cibuildwheel@v4.1.0
46
+ env:
47
+ MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos_target }}
48
+
49
+ - name: Upload wheels
50
+ uses: actions/upload-artifact@v4
51
+ with:
52
+ name: wheels-${{ matrix.os }}
53
+ path: ./wheelhouse/*.whl
54
+ if-no-files-found: error
55
+
56
+ sdist:
57
+ name: sdist
58
+ runs-on: ubuntu-latest
59
+ steps:
60
+ - uses: actions/checkout@v4
61
+ - name: Build sdist
62
+ run: pipx run build --sdist
63
+ - name: Upload sdist
64
+ uses: actions/upload-artifact@v4
65
+ with:
66
+ name: sdist
67
+ path: ./dist/*.tar.gz
68
+ if-no-files-found: error
@@ -0,0 +1,2 @@
1
+ # Sphinx build output
2
+ docs/_build/
@@ -0,0 +1,128 @@
1
+ default_install_hook_types: [pre-commit, pre-push]
2
+ default_stages: [pre-commit]
3
+ fail_fast: false
4
+
5
+ # Standalone bngsim/ config. In the upstream development monorepo the active
6
+ # config lives at that repo's root (with every path bngsim/-prefixed); this file
7
+ # is the de-prefixed sibling that travels with `git subtree split -P bngsim` so
8
+ # the extracted repo lints/tests itself with no path fixups.
9
+
10
+ # Globally excluded paths (apply to every hook below):
11
+ # - third_party/ vendored NFsim/SUNDIALS/exprtk/mir/rulemonkey source;
12
+ # upstream-byte-faithful, do not reformat / EOL-fix
13
+ # - dev/ scratch notes, plans, ADRs — informal markdown
14
+ exclude: ^(third_party|dev)/
15
+
16
+ repos:
17
+ - repo: https://github.com/pre-commit/pre-commit-hooks
18
+ rev: v5.0.0
19
+ hooks:
20
+ # Hygiene hooks are scoped to *source* file types only.
21
+ # Test data (.bngl, .net, .ant, .xml, .gdat, .cdat, .csv, .json,
22
+ # …) must NOT be touched: many are byte-mirrored from upstream
23
+ # sources (BioModels SBML, BNG2.pl-generated .net) and are
24
+ # consumed by parsers that may be sensitive to whitespace/EOL.
25
+ - id: check-yaml
26
+ files: \.(yaml|yml)$
27
+ - id: end-of-file-fixer
28
+ files: ^.*\.(py|cpp|hpp|cc|cxx|hh|hxx|c|h|md|toml|cfg|ini|yaml|yml)$
29
+ - id: trailing-whitespace
30
+ files: ^.*\.(py|cpp|hpp|cc|cxx|hh|hxx|c|h|md|toml|cfg|ini|yaml|yml)$
31
+ - id: check-merge-conflict
32
+ - id: check-added-large-files
33
+ # Committed spec manifests (parity_checks/*/ *_jobs.json) run ~0.6 MB;
34
+ # the multi-MB SBML/SED-ML corpora are gitignored, so 1 MB still
35
+ # catches accidental binary commits.
36
+ args: ['--maxkb=1024']
37
+ # bng_parity golden.json is committed reference data (per-job seed=1
38
+ # checksums + fingerprints over the full 895-job corpus, ~1.7 MB at full
39
+ # coverage) — the same category as jobs.json above, just denser. The
40
+ # fingerprints are not thinnable without weakening the consumer check,
41
+ # so this one file is exempted from the 1 MB cap.
42
+ exclude: ^parity_checks/bng_parity/golden/golden\.json$
43
+ - id: mixed-line-ending
44
+ files: ^.*\.(py|cpp|hpp|cc|cxx|hh|hxx|c|h|md|toml|cfg|ini|yaml|yml)$
45
+ - id: debug-statements
46
+ files: ^.*\.py$
47
+ - id: detect-private-key
48
+
49
+ - repo: https://github.com/astral-sh/ruff-pre-commit
50
+ rev: v0.14.0
51
+ hooks:
52
+ # Lint + format gate the entire tree. Per-file ignores for E501
53
+ # (long lines) in benchmarks/harness/scripts live in
54
+ # pyproject.toml [tool.ruff.lint.per-file-ignores]; the dev/ tree
55
+ # (scratch notes) is gitignored.
56
+ - id: ruff
57
+ args: [--fix]
58
+ files: ^.*\.py$
59
+ - id: ruff-format
60
+ files: ^.*\.py$
61
+
62
+ - repo: https://github.com/pre-commit/mirrors-clang-format
63
+ rev: v17.0.6
64
+ hooks:
65
+ - id: clang-format
66
+ files: ^(src|include)/.*\.(c|cc|cpp|cxx|h|hh|hpp|hxx)$
67
+
68
+ - repo: https://github.com/pre-commit/mirrors-mypy
69
+ rev: v1.13.0
70
+ hooks:
71
+ - id: mypy
72
+ files: ^python/bngsim/.*\.py$
73
+ args: [--ignore-missing-imports, --follow-imports=silent]
74
+ additional_dependencies: [numpy]
75
+
76
+ - repo: local
77
+ hooks:
78
+ - id: pytest
79
+ name: pytest (bngsim)
80
+ entry: bash -c '.venv/bin/pytest -q python/tests'
81
+ language: system
82
+ pass_filenames: false
83
+ files: ^.
84
+ stages: [pre-push]
85
+
86
+ # ─── Manual-stage local-CI hooks ─────────────────────────────────
87
+ # The wheel matrix is validated locally on each target platform.
88
+ # See scripts/LOCAL_CI.md. These hooks do NOT run on commit or
89
+ # push — invoke explicitly:
90
+ #
91
+ # pre-commit run --hook-stage manual local-ci-wheel --all-files
92
+ # pre-commit run --hook-stage manual local-ci-matrix --all-files
93
+ # pre-commit run --hook-stage manual local-ci-linux --all-files
94
+ - id: local-ci-wheel
95
+ name: local CI — wheel build + smoke (uv, current Python)
96
+ entry: uv run python scripts/local_ci.py wheel
97
+ language: system
98
+ pass_filenames: false
99
+ stages: [manual]
100
+ - id: local-ci-matrix
101
+ name: local CI — wheel matrix cp310-cp313 (uv, native arch)
102
+ entry: uv run python scripts/local_ci.py matrix
103
+ language: system
104
+ pass_filenames: false
105
+ stages: [manual]
106
+ - id: local-ci-linux
107
+ name: local CI — manylinux2014 wheel + smoke (Docker)
108
+ entry: bash scripts/local_ci_linux_docker.sh
109
+ language: system
110
+ pass_filenames: false
111
+ stages: [manual]
112
+ # Tripwire: verifies that third_party/nfsim/ matches what
113
+ # vendor + the patch series under scripts/nfsim_vendor_patches/
114
+ # would produce. Catches the silent-direct-edit class of regression.
115
+ # Requires /tmp/nfsim-vendor-candidate to exist at the vendor tip;
116
+ # build it via the recipe in scripts/NFSIM_VENDORING.md.
117
+ - id: local-ci-vendor-verify
118
+ name: local CI — verify vendored NFsim matches carry queue
119
+ entry: python3 scripts/vendor_nfsim.py --verify-clean
120
+ language: system
121
+ pass_filenames: false
122
+ stages: [manual]
123
+ - id: local-ci-vendor-verify-strict
124
+ name: local CI — vendor verify + patch-series reproducibility
125
+ entry: python3 scripts/vendor_nfsim.py --verify-clean --strict
126
+ language: system
127
+ pass_filenames: false
128
+ stages: [manual]
@@ -0,0 +1,31 @@
1
+ # Read the Docs build configuration.
2
+ # https://docs.readthedocs.io/en/stable/config-file/v2.html
3
+ #
4
+ # This file assumes `bngsim/` is the repository root (the public-release
5
+ # layout). If instead the docs are built from a repo where bngsim lives in a
6
+ # subdirectory, move this file to that repo's root and prefix the paths below
7
+ # with `bngsim/` (e.g. `sphinx.configuration: bngsim/docs/conf.py`).
8
+ version: 2
9
+
10
+ build:
11
+ os: ubuntu-24.04
12
+ tools:
13
+ python: "3.12"
14
+ # bngsim is a compiled C++/pybind11 extension. autodoc imports the package,
15
+ # so the extension is built here. SUNDIALS is fetched+compiled by CMake.
16
+ apt_packages:
17
+ - cmake
18
+ - ninja-build
19
+
20
+ sphinx:
21
+ configuration: docs/conf.py
22
+
23
+ python:
24
+ install:
25
+ - requirements: docs/requirements.txt
26
+ # Build+install bngsim so autodoc reads real signatures/docstrings.
27
+ # If the compile ever exceeds the RTD build limit, drop this entry: conf.py
28
+ # falls back to mocking `bngsim._bngsim_core`, and Sphinx documents the
29
+ # pure-Python wrappers without compiling the kernel.
30
+ - method: pip
31
+ path: .
@@ -0,0 +1,207 @@
1
+ # Acknowledgments
2
+
3
+ BNGsim was developed and validated using a large body of excellent
4
+ open-source software from the systems-biology and scientific-Python
5
+ communities. Most of these tools are **not** redistributed with BNGsim. They
6
+ were used as reference implementations, parity oracles, library dependencies,
7
+ data corpora, or standards. We
8
+ gratefully acknowledge their authors and cite their work below.
9
+
10
+ > Third-party software and data that BNGsim redistributes (vendored code
11
+ > and model/test-data corpora, with their license terms) are listed separately in
12
+ > [`NOTICE`](NOTICE).
13
+
14
+ ## Reference simulators and cross-validation oracles
15
+
16
+ BNGsim's numerical results were cross-validated against these simulation engines:
17
+
18
+ - **libRoadRunner** — the primary ODE and SSA parity oracle.
19
+ - Somogyi ET, Bouteiller J-M, Glazier JA, König M, Medley JK, Swat MH,
20
+ Sauro HM. libRoadRunner: a high performance SBML simulation and analysis
21
+ library. *Bioinformatics.* 2015;31(20):3315–3321.
22
+ doi:10.1093/bioinformatics/btv363
23
+ - Welsh C, Xu J, Smith L, König M, Choi K, Sauro HM. libRoadRunner 2.0: a
24
+ high-performance SBML simulation and analysis library. *Bioinformatics.*
25
+ 2023;39(1):btac770. doi:10.1093/bioinformatics/btac770
26
+ - **AMICI** — the reference for BNGsim's forward-sensitivity and gradient work.
27
+ - Fröhlich F, Weindl D, Schälte Y, Pathirana D, Paszkowski Ł, Lines GT,
28
+ Stapor P, Hasenauer J. AMICI: high-performance sensitivity analysis for
29
+ large ordinary differential equation models. *Bioinformatics.*
30
+ 2021;37(20):3676–3677. doi:10.1093/bioinformatics/btab227
31
+ - **COPASI** — an independent third oracle (variable-volume, rate-rule, and
32
+ stochastic cross-checks).
33
+ - Hoops S, Sahle S, Gauges R, Lee C, Pahle J, Simus N, Singhal M, Xu L,
34
+ Mendes P, Kummer U. COPASI—a COmplex PAthway SImulator. *Bioinformatics.*
35
+ 2006;22(24):3067–3074. doi:10.1093/bioinformatics/btl485
36
+ - **BioNetGen** (`BNG2.pl`, `run_network`, Network3) — used to generate reaction
37
+ networks and reference trajectories, and as a rule-based ODE/SSA oracle.
38
+ - Harris LA, Hogg JS, Tapia J-J, Sekar JAP, Gupta S, Korsunsky I, Arora A,
39
+ Barua D, Sheehan RP, Faeder JR. BioNetGen 2.2: advances in rule-based
40
+ modeling. *Bioinformatics.* 2016;32(21):3366–3368.
41
+ doi:10.1093/bioinformatics/btw469
42
+ - Blinov ML, Faeder JR, Goldstein B, Hlavacek WS. BioNetGen: software for
43
+ rule-based modeling of signal transduction based on the interactions of
44
+ molecular domains. *Bioinformatics.* 2004;20(17):3289–3291.
45
+ doi:10.1093/bioinformatics/bth378
46
+ - **NFsim** — the network-free stochastic oracle (also vendored into BNGsim; see
47
+ [`NOTICE`](NOTICE)).
48
+ - Sneddon MW, Faeder JR, Emonet T. Efficient modeling, simulation and
49
+ coarse-graining of biological complexity with NFsim. *Nat Methods.*
50
+ 2011;8(2):177–183. doi:10.1038/nmeth.1546
51
+
52
+ ## Vendored simulation engines
53
+
54
+ BNGsim embeds these rule-based engines (license terms in [`NOTICE`](NOTICE)):
55
+
56
+ - **NFsim** — network-free simulation (cited above).
57
+ - **RuleMonkey** — the canonical rule/species-graph library and stochastic
58
+ simulator. BNGsim vendors the current C++ version; the original simulator is
59
+ described in:
60
+ - Colvin J, Monine MI, Gutenkunst RN, Hlavacek WS, Von Hoff DD, Posner RG.
61
+ RuleMonkey: software for stochastic simulation of rule-based models.
62
+ *BMC Bioinformatics.* 2010;11:404. doi:10.1186/1471-2105-11-404
63
+
64
+ ## Model-description standards and formats
65
+
66
+ BNGsim reads and/or writes these community standards:
67
+
68
+ - **SBML** (Systems Biology Markup Language) — core model interchange format.
69
+ - Hucka M, Finney A, Sauro HM, Bolouri H, Doyle JC, Kitano H, et al. The
70
+ systems biology markup language (SBML): a medium for representation and
71
+ exchange of biochemical network models. *Bioinformatics.*
72
+ 2003;19(4):524–531. doi:10.1093/bioinformatics/btg015
73
+ - Keating SM, Waltemath D, König M, et al. SBML Level 3: an extensible format
74
+ for the exchange and reuse of biological models. *Mol Syst Biol.*
75
+ 2020;16(8):e9110. doi:10.15252/msb.20199110
76
+ - **SED-ML** (Simulation Experiment Description Markup Language) — read/write of
77
+ simulation descriptions; also the format of the SED-ML protocol files BNGsim
78
+ consumes from BioModels (via the `sys-bio/temp-biomodels` mirror).
79
+ - Waltemath D, Adams R, Bergmann FT, Hucka M, Kolpakov F, Miller AK,
80
+ Moraru II, Nickerson D, Sahle S, Snoep JL, Le Novère N. Reproducible
81
+ computational biology experiments with SED-ML — the Simulation Experiment
82
+ Description Markup Language. *BMC Syst Biol.* 2011;5:198.
83
+ doi:10.1186/1752-0509-5-198
84
+ - **COMBINE archive / OMEX** — pack/unpack of SBML + SED-ML + manifest.
85
+ - Bergmann FT, Adams R, Moodie S, Cooper J, Glont M, Golebiewski M, Hucka M,
86
+ Laibe C, Miller AK, Nickerson DP, Olivier BG, Rodriguez N, Sauro HM,
87
+ Scharm M, Soiland-Reyes S, Waltemath D, Yvon F, Le Novère N. COMBINE
88
+ archive and OMEX format: one file to share all information to reproduce a
89
+ modeling project. *BMC Bioinformatics.* 2014;15:369.
90
+ doi:10.1186/s12859-014-0369-z
91
+ - **Antimony** — read/write via the Antimony library.
92
+ - Smith LP, Bergmann FT, Chandran D, Sauro HM. Antimony: a modular model
93
+ definition language. *Bioinformatics.* 2009;25(18):2452–2454.
94
+ doi:10.1093/bioinformatics/btp401
95
+ - **BNGL** and the BNG `.net` format (BioNetGen, cited above), **Content
96
+ MathML**, and **KiSAO** (the Kinetic Simulation Algorithm Ontology, used to
97
+ tag SED-ML algorithms) are also handled.
98
+
99
+ ## Numerical and infrastructure libraries
100
+
101
+ - **SUNDIALS** — the CVODES and KINSOL solvers underpin BNGsim's ODE
102
+ integration, forward sensitivities, and steady-state solves (bundled in
103
+ binary wheels).
104
+ - Hindmarsh AC, Brown PN, Grant KE, Lee SL, Serban R, Shumaker DE,
105
+ Woodward CS. SUNDIALS: Suite of nonlinear and differential/algebraic
106
+ equation solvers. *ACM Trans Math Softw.* 2005;31(3):363–396.
107
+ doi:10.1145/1089014.1089020
108
+ - **SuiteSparse / KLU** — sparse direct solver for the sparse-Jacobian path.
109
+ - Davis TA, Palamadai Natarajan E. Algorithm 907: KLU, a direct sparse solver
110
+ for circuit simulation problems. *ACM Trans Math Softw.*
111
+ 2010;37(3):Article 36. doi:10.1145/1824801.1824814
112
+ - **LAPACK** — dense linear algebra used by the numerical backends.
113
+ - Anderson E, Bai Z, Bischof C, et al. LAPACK Users' Guide. 3rd ed.
114
+ Philadelphia: SIAM; 1999. doi:10.1137/1.9780898719604
115
+ - **libSBML** — the SBML read/write API.
116
+ - Bornstein BJ, Keating SM, Jouraku A, Hucka M. LibSBML: an API library for
117
+ SBML. *Bioinformatics.* 2008;24(6):880–881.
118
+ doi:10.1093/bioinformatics/btn051
119
+ - **NumPy** — array programming throughout BNGsim.
120
+ - Harris CR, Millman KJ, van der Walt SJ, et al. Array programming with NumPy.
121
+ *Nature.* 2020;585(7825):357–362. doi:10.1038/s41586-020-2649-2
122
+ - **SciPy** — scientific-computing routines (used in the test, benchmark, and
123
+ parity suites).
124
+ - Virtanen P, Gommers R, Oliphant TE, et al. SciPy 1.0: fundamental algorithms
125
+ for scientific computing in Python. *Nat Methods.* 2020;17(3):261–272.
126
+ doi:10.1038/s41592-019-0686-2
127
+ - **SymPy** — symbolic differentiation for code-generated sensitivities and
128
+ Jacobians.
129
+ - Meurer A, Smith CP, Paprocki M, et al. SymPy: symbolic computing in Python.
130
+ *PeerJ Comput Sci.* 2017;3:e103. doi:10.7717/peerj-cs.103
131
+ - **pandas** — the `Result.to_dataframe()` export.
132
+ - McKinney W. Data structures for statistical computing in Python. In:
133
+ *Proceedings of the 9th Python in Science Conference (SciPy).* 2010:56–61.
134
+ doi:10.25080/Majora-92bf1922-00a
135
+ - **ExprTk** (Arash Partow; https://github.com/ArashPartow/exprtk) — the
136
+ vendored C++ math-expression evaluator; **MIR** (Vladimir Makarov;
137
+ https://github.com/vnmakarov/mir) — the optional micro-JIT backend; and
138
+ **pybind11** (Wenzel Jakob, Jason Rhinelander, Dean Moldovan;
139
+ https://github.com/pybind/pybind11) — the C++/Python binding layer. These are
140
+ software projects without an associated paper.
141
+
142
+ ## Optional feature backends and interoperability
143
+
144
+ - **JAX** — the differentiable RHS/Jacobian bridge.
145
+ - Bradbury J, Frostig R, Hawkins P, Johnson MJ, Katariya Y, Leary C,
146
+ Maclaurin D, Necula G, Paszke A, VanderPlas J, Wanderman-Milne S, Zhang Q.
147
+ JAX: composable transformations of Python+NumPy programs. 2018.
148
+ http://github.com/jax-ml/jax
149
+ - **Diffrax** — the JAX-based differentiable ODE solver backend.
150
+ - Kidger P. On Neural Differential Equations. PhD thesis, University of
151
+ Oxford; 2021. arXiv:2202.02435
152
+ - **xarray** — labeled N-D arrays for the `Result.to_xarray()` / netCDF export.
153
+ - Hoyer S, Hamman J. xarray: N-D labeled Arrays and Datasets in Python.
154
+ *J Open Res Softw.* 2017;5(1):10. doi:10.5334/jors.148
155
+ - **h5py** — HDF5 archival of results (Andrew Collette and contributors;
156
+ https://www.h5py.org).
157
+ - **Vivarium** — the `bngsim.vivarium` process wrapper for multiscale modeling.
158
+ - Agmon E, Spangler RK, Skalnik CJ, Poole W, Peirce SM, Morrison JH,
159
+ Covert MW. Vivarium: an interface and engine for integrative multiscale
160
+ modeling in computational biology. *Bioinformatics.* 2022;38(7):1972–1979.
161
+ doi:10.1093/bioinformatics/btac049
162
+ - **PyBNF (PyBioNetFit)** — the parameter-fitting front end that drives BNGsim,
163
+ and the source of several example models.
164
+ - Mitra ED, Suderman R, Colvin J, Ionkov A, Hu A, Sauro HM, Posner RG,
165
+ Hlavacek WS. PyBioNetFit and the Biological Property Specification Language.
166
+ *iScience.* 2019;19:1012–1036. doi:10.1016/j.isci.2019.08.045
167
+
168
+ ## Test suites and model corpora
169
+
170
+ BNGsim's correctness is checked against, and its benchmarks draw from, these
171
+ community corpora (vendored corpora and their licenses are in [`NOTICE`](NOTICE)):
172
+
173
+ - **SBML Semantic Test Suite** — the SBML Team's conformance suite
174
+ (https://github.com/sbmlteam/sbml-test-suite).
175
+ - **DSMTS (Discrete Stochastic Models Test Suite)** — vendored for hermetic
176
+ stochastic testing.
177
+ - Evans TW, Gillespie CS, Wilkinson DJ. The SBML discrete stochastic models
178
+ test suite. *Bioinformatics.* 2008;24(2):285–286.
179
+ doi:10.1093/bioinformatics/btm566
180
+ - **BioModels Database** — the curated ODE model corpus (with its SED-ML
181
+ protocols) used for ODE benchmarking.
182
+ - Malik-Sheriff RS, Glont M, Nguyen TVN, et al. BioModels—15 years of sharing
183
+ computational models in life science. *Nucleic Acids Res.*
184
+ 2020;48(D1):D407–D415. doi:10.1093/nar/gkz1055
185
+ - **RuleHub** (RuleWorld; https://github.com/RuleWorld/RuleHub), **BNGL-Models**
186
+ (https://github.com/wshlavacek/BNGL-Models), and the **BioNetGen model
187
+ distribution** (Models2) — vendored BNGL model corpora (see [`NOTICE`](NOTICE)).
188
+
189
+ ## Algorithms
190
+
191
+ - **Gillespie's Stochastic Simulation Algorithm (direct method)** — the basis of
192
+ BNGsim's exact SSA.
193
+ - Gillespie DT. Exact stochastic simulation of coupled chemical reactions.
194
+ *J Phys Chem.* 1977;81(25):2340–2361. doi:10.1021/j100540a008
195
+ - **Extrande** — a thinning sampler used as an independent test oracle for the
196
+ rate-rule-under-SSA hybrid path.
197
+ - Voliotis M, Thomas P, Grima R, Bowsher CG. Stochastic simulation of
198
+ biomolecular networks in dynamic environments. *PLoS Comput Biol.*
199
+ 2016;12(6):e1004923. doi:10.1371/journal.pcbi.1004923
200
+
201
+ ## Build, test, and documentation tooling
202
+
203
+ BNGsim is built with **scikit-build-core**, **CMake**, **Ninja**, and
204
+ **pybind11** (stubs via **pybind11-stubgen**); tested with **pytest** and linted
205
+ with **ruff**, **mypy**, and **clang-format**; documented with **Sphinx**,
206
+ **MyST-Parser**, and **Furo**. Benchmark and parity tooling additionally uses
207
+ **matplotlib** and **bioservices**. We thank the maintainers of these projects.