From: Michael Orlitzky Date: Wed, 9 Nov 2016 14:20:07 +0000 (-0500) Subject: Lower MAX_COND down to 125 after witnessing a failure. X-Git-Tag: 0.1.0~63 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=320cad144ae993f68a3f587222c701da3051a736 Lower MAX_COND down to 125 after witnessing a failure. --- diff --git a/test/randomgen.py b/test/randomgen.py index 76d5f78..8c3c863 100644 --- a/test/randomgen.py +++ b/test/randomgen.py @@ -9,13 +9,13 @@ from dunshire.cones import NonnegativeOrthant, IceCream from dunshire.games import SymmetricLinearGame from dunshire.matrices import (append_col, append_row, identity) -MAX_COND = 150 +MAX_COND = 125 """ The maximum condition number of a randomly-generated game. When the condition number of the games gets too high, we start to see :class:`PoorScalingException` being thrown. There's no science to choosing the upper bound -- it got lowered until those exceptions -stopped popping up. +stopped popping up. It's at ``125`` because ``129`` doesn't work. """ RANDOM_MAX = 10