示例#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), [])