Example #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), [])
Example #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]])
Example #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]])
Example #4
0
 def test_none(self):
   x = array([], dtype=bool)
   assert_equal(arg_true_runs(x), [])
Example #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]])
Example #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), [])
Example #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]])
Example #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]])
Example #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]])
Example #10
0
 def test_none(self):
   x = array([], dtype=bool)
   assert_equal(arg_true_runs(x), [])