]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Set MAX_COND to 100 in the randomgen module to facilitate random testing.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 3 Nov 2016 12:06:18 +0000 (08:06 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 3 Nov 2016 12:06:18 +0000 (08:06 -0400)
test/randomgen.py

index 97dd0b93157a7b534c7cb4c6acb5de1740de661e..9fee2f749cbcf8037f2c64d41fe42e17731381a4 100644 (file)
@@ -9,7 +9,7 @@ from dunshire.cones import NonnegativeOrthant, IceCream
 from dunshire.games import SymmetricLinearGame
 from dunshire.matrices import (append_col, append_row, identity)
 
-MAX_COND = 250
+MAX_COND = 100
 """
 The maximum condition number of a randomly-generated game.
 """