Skip to content

DifferentialEquation Op refactor #3634

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Nov 3, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
addition of test for equality checking of ODE Ops
(not yet implemented)
  • Loading branch information
michaelosthege committed Sep 25, 2019
commit 757937e4817a0f49199cd79956be7082bb1c7aa6
4 changes: 4 additions & 0 deletions pymc3/tests/test_ode.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,10 @@ def test_number_of_params(self):
condition=(theano.config.floatX == "float32"), reason="Fails on float32"
)
class TestDiffEqModel(object):
def test_op_equality(self):
raise NotImplementedError()
return

def test_scalar_ode_1_param(self):
"""Test running model for a scalar ODE with 1 parameter"""

Expand Down