From 10dfe7d7edb69701dd8f4f955f3f325706d77e47 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 3 Nov 2016 08:06:18 -0400 Subject: [PATCH] Set MAX_COND to 100 in the randomgen module to facilitate random testing. --- test/randomgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. """ -- 2.43.2