From: Michael Orlitzky Date: Thu, 3 Nov 2016 12:06:18 +0000 (-0400) Subject: Set MAX_COND to 100 in the randomgen module to facilitate random testing. X-Git-Tag: 0.1.0~78 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=10dfe7d7edb69701dd8f4f955f3f325706d77e47 Set MAX_COND to 100 in the randomgen module to facilitate random testing. --- diff --git a/test/randomgen.py b/test/randomgen.py index 97dd0b9..9fee2f7 100644 --- a/test/randomgen.py +++ b/test/randomgen.py @@ -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. """