Running doctests with ID 2014-05-19-10-36-14-deaa3b7d. Doctesting 1 file. [?1034hsage -t --long src/sage/combinat/designs/database.py ********************************************************************** File "src/sage/combinat/designs/database.py", line 96, in sage.combinat.designs.database.TD_6_12 Failed example: TD = TD_6_12() Expected nothing Got: doctest:128: DeprecationWarning: The default behaviour changed ! If you *really* want a linear combination of smith generators, use .linear_combination_of_smith_form_gens. See http://trac.sagemath.org/16261 for details. ********************************************************************** File "src/sage/combinat/designs/database.py", line 517, in sage.combinat.designs.database.OA_9_24 Failed example: OA = OA_9_24() Exception raised: Traceback (most recent call last): File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run self.execute(example, compiled, test.globs) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute exec compiled in globs File "", line 1, in OA = OA_9_24() File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/combinat/designs/database.py", line 538, in OA_9_24 M = [G([int(c),int(d),rlabel[int(b),int(a)]]) for a,b,c,d in M.split()] File "parent.pyx", line 1070, in sage.structure.parent.Parent.__call__ (sage/structure/parent.c:8858) File "coerce_maps.pyx", line 95, in sage.structure.coerce_maps.DefaultConvertMap_unique._call_ (sage/structure/coerce_maps.c:4206) File "coerce_maps.pyx", line 90, in sage.structure.coerce_maps.DefaultConvertMap_unique._call_ (sage/structure/coerce_maps.c:4113) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/modules/fg_pid/fgp_module.py", line 616, in _element_constructor_ return self.element_class(self, self._V(x)) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/modules/free_module.py", line 951, in __call__ return self._element_class(self, x, coerce, copy) File "vector_integer_dense.pyx", line 106, in sage.modules.vector_integer_dense.Vector_integer_dense.__init__ (sage/modules/vector_integer_dense.c:3193) TypeError: x must be a list of the right length ********************************************************************** File "src/sage/combinat/designs/database.py", line 518, in sage.combinat.designs.database.OA_9_24 Failed example: print is_orthogonal_array(OA,9,24,2) Exception raised: Traceback (most recent call last): File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run self.execute(example, compiled, test.globs) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute exec compiled in globs File "", line 1, in print is_orthogonal_array(OA,Integer(9),Integer(24),Integer(2)) NameError: name 'OA' is not defined ********************************************************************** File "src/sage/combinat/designs/database.py", line 1657, in sage.combinat.designs.database.OA_7_60 Failed example: OA = OA_7_60() Expected nothing Got: doctest:1676: DeprecationWarning: The default behaviour changed ! If you *really* want a linear combination of smith generators, use .linear_combination_of_smith_form_gens. See http://trac.sagemath.org/16261 for details. doctest:1679: DeprecationWarning: The default behaviour changed ! If you *really* want a linear combination of smith generators, use .linear_combination_of_smith_form_gens. See http://trac.sagemath.org/16261 for details. ********************************************************************** 3 items had failures: 1 of 6 in sage.combinat.designs.database.OA_7_60 2 of 6 in sage.combinat.designs.database.OA_9_24 1 of 6 in sage.combinat.designs.database.TD_6_12 [200 tests, 4 failures, 20.60 s] ---------------------------------------------------------------------- sage -t --long src/sage/combinat/designs/database.py # 4 doctests failed ---------------------------------------------------------------------- Total time for all tests: 20.7 seconds cpu time: 20.4 seconds cumulative wall time: 20.6 seconds Running doctests with ID 2014-05-19-10-36-48-33e21ea3. Doctesting 1 file. [?1034hsage -t --long src/sage/combinat/designs/orthogonal_arrays.py ********************************************************************** File "src/sage/combinat/designs/orthogonal_arrays.py", line 199, in sage.combinat.designs.orthogonal_arrays.transversal_design Failed example: _ = designs.transversal_design(6,60) Expected nothing Got: doctest:128: DeprecationWarning: The default behaviour changed ! If you *really* want a linear combination of smith generators, use .linear_combination_of_smith_form_gens. See http://trac.sagemath.org/16261 for details. ********************************************************************** File "src/sage/combinat/designs/orthogonal_arrays.py", line 205, in sage.combinat.designs.orthogonal_arrays.transversal_design Failed example: for n in xrange(2,25): # long time -- 15 secs i = 2 while designs.transversal_design(i, n, existence=True) is True: i += 1 _ = designs.transversal_design(i-1, n) assert designs.transversal_design(None, n, existence=True) == i - 1 j = i while designs.transversal_design(j, n, existence=True) is Unknown: try: _ = designs.transversal_design(j, n) raise AssertionError("no NotImplementedError") except NotImplementedError: pass j += 1 k = j while k < n+4: assert designs.transversal_design(k, n, existence=True) is False try: _ = designs.transversal_design(k, n) raise AssertionError("no EmptySetError") except EmptySetError: pass k += 1 print "%2d: (%2d, %2d)"%(n,i,j) Exception raised: Traceback (most recent call last): File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run self.execute(example, compiled, test.globs) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute exec compiled in globs File "", line 5, in _ = designs.transversal_design(i-Integer(1), n) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/combinat/designs/orthogonal_arrays.py", line 318, in transversal_design OA = orthogonal_array(k,n, check = False, who_asked = who_asked + (transversal_design,)) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/combinat/designs/orthogonal_arrays.py", line 794, in orthogonal_array OA = OA_from_wider_OA(construction(),k) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/combinat/designs/database.py", line 538, in OA_9_24 M = [G([int(c),int(d),rlabel[int(b),int(a)]]) for a,b,c,d in M.split()] File "parent.pyx", line 1070, in sage.structure.parent.Parent.__call__ (sage/structure/parent.c:8858) File "coerce_maps.pyx", line 95, in sage.structure.coerce_maps.DefaultConvertMap_unique._call_ (sage/structure/coerce_maps.c:4206) File "coerce_maps.pyx", line 90, in sage.structure.coerce_maps.DefaultConvertMap_unique._call_ (sage/structure/coerce_maps.c:4113) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/modules/fg_pid/fgp_module.py", line 616, in _element_constructor_ return self.element_class(self, self._V(x)) File "/home/ralf/sage/local/lib/python2.7/site-packages/sage/modules/free_module.py", line 951, in __call__ return self._element_class(self, x, coerce, copy) File "vector_integer_dense.pyx", line 106, in sage.modules.vector_integer_dense.Vector_integer_dense.__init__ (sage/modules/vector_integer_dense.c:3193) TypeError: x must be a list of the right length ********************************************************************** 1 item had failures: 2 of 34 in sage.combinat.designs.orthogonal_arrays.transversal_design [76 tests, 2 failures, 8.24 s] ---------------------------------------------------------------------- sage -t --long src/sage/combinat/designs/orthogonal_arrays.py # 2 doctests failed ---------------------------------------------------------------------- Total time for all tests: 8.3 seconds cpu time: 8.0 seconds cumulative wall time: 8.2 seconds