Пример #1
0
 def test_all_false(self):
   x = array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=bool)
   assert_equal(arg_true_runs(x), [])
Пример #2
0
 def test_odd(self):
   x = array([0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1], dtype=bool)
   assert_equal(arg_true_runs(x), [[3, 7], [9, 11]])
Пример #3
0
 def test_all_true(self):
   x = array([1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], dtype=bool)
   assert_equal(arg_true_runs(x), [[0, 11]])
Пример #4
0
 def test_none(self):
   x = array([], dtype=bool)
   assert_equal(arg_true_runs(x), [])
Пример #5
0
 def test_even(self):
   x = array([1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0], dtype=bool)
   assert_equal(arg_true_runs(x), [[0, 3], [7, 9]])
Пример #6
0
 def test_all_false(self):
   x = array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], dtype=bool)
   assert_equal(arg_true_runs(x), [])
Пример #7
0
 def test_all_true(self):
   x = array([1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], dtype=bool)
   assert_equal(arg_true_runs(x), [[0, 11]])
Пример #8
0
 def test_odd(self):
   x = array([0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1], dtype=bool)
   assert_equal(arg_true_runs(x), [[3, 7], [9, 11]])
Пример #9
0
 def test_even(self):
   x = array([1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0], dtype=bool)
   assert_equal(arg_true_runs(x), [[0, 3], [7, 9]])
Пример #10
0
 def test_none(self):
   x = array([], dtype=bool)
   assert_equal(arg_true_runs(x), [])