Skip to content
Snippets Groups Projects
Commit f24018d1 authored by Bas Nijholt's avatar Bas Nijholt
Browse files

remove test from 'test_learners.py' that is already in 'test_learnernd.py'

parent b034e437
No related branches found
No related tags found
No related merge requests found
Pipeline #12185 passed
......@@ -392,22 +392,3 @@ def test_learner_subdomain(learner_type, f, learner_kwargs):
perform 'similarly' to learners defined on that subdomain only."""
# XXX: not sure how to implement this. How do we measure "performance"?
raise NotImplementedError()
def test_faiure_case_LearnerND():
log = [
('ask', 4),
('tell', (-1, -1, -1), 1.607873907219222e-101),
('tell', (-1, -1, 1), 1.607873907219222e-101),
('ask', 2),
('tell', (-1, 1, -1), 1.607873907219222e-101),
('tell', (-1, 1, 1), 1.607873907219222e-101),
('ask', 2),
('tell', (1, -1, 1), 2.0),
('tell', (1, -1, -1), 2.0),
('ask', 2),
('tell', (0.0, 0.0, 0.0), 4.288304431237686e-06),
('tell', (1, 1, -1), 2.0)
]
learner = LearnerND(lambda *x: x, bounds=[(-1, 1), (-1, 1), (-1, 1)])
replay_log(learner, log)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment