File: indexing.py

package info (click to toggle)
boost1.88 1.88.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 576,932 kB
  • sloc: cpp: 4,149,234; xml: 136,789; ansic: 35,092; python: 33,910; asm: 5,698; sh: 4,604; ada: 1,681; makefile: 1,633; pascal: 1,139; perl: 1,124; sql: 640; yacc: 478; ruby: 271; java: 77; lisp: 24; csh: 6
file content (55 lines) | stat: -rw-r--r-- 1,822 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python

# Copyright Jim Bosch & Ankit Daftery 2010-2012.
# Distributed under the Boost Software License, Version 1.0.
#    (See accompanying file LICENSE_1_0.txt or copy at
#          http://www.boost.org/LICENSE_1_0.txt)

import unittest
import numpy
import indexing_ext

class TestIndexing(unittest.TestCase):

    def testSingle(self):
        x = numpy.arange(0,10)
        for i in range(0,10):
            numpy.testing.assert_equal(indexing_ext.single(x,i), i)
        for i in range(-10,0):
            numpy.testing.assert_equal(indexing_ext.single(x,i),10+i)

    def testSlice(self):
        x = numpy.arange(0,10)
        sl = slice(3,8)
        b = [3,4,5,6,7]
        numpy.testing.assert_equal(indexing_ext.slice(x,sl), b)

    def testStepSlice(self):
        x = numpy.arange(0,10)
        sl = slice(3,8,2)
        b = [3,5,7]
        numpy.testing.assert_equal(indexing_ext.slice(x,sl), b)

    def testIndex(self):
        x = numpy.arange(0,10)
        chk = numpy.array([3,4,5,6])
        numpy.testing.assert_equal(indexing_ext.indexarray(x,chk),chk)
        chk = numpy.array([[0,1],[2,3]])
        numpy.testing.assert_equal(indexing_ext.indexarray(x,chk),chk)
        x = numpy.arange(9).reshape(3,3)
        y = numpy.array([0,1])
        z = numpy.array([0,2])
        chk = numpy.array([0,5])
        numpy.testing.assert_equal(indexing_ext.indexarray(x,y,z),chk)
        x = numpy.arange(0,10)
        b = x>4
        chk = numpy.array([5,6,7,8,9])
        numpy.testing.assert_equal(indexing_ext.indexarray(x,b),chk)
        x = numpy.arange(9).reshape(3,3)
        b = numpy.array([0,2])
        sl = slice(0,3)
        chk = numpy.array([[0,1,2],[6,7,8]])
        numpy.testing.assert_equal(indexing_ext.indexslice(x,b,sl),chk)

if __name__=="__main__":
    unittest.main()