コード例 #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), [])