From dce6c6d8c8850a66fa2572b888d1f3c7ad3c8342 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 6 Nov 2016 08:31:54 -0500 Subject: [PATCH] Add two small, well-conditioned games that fail solution as test cases. --- test/failures/001.py | 7 +++++++ test/failures/002.py | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 test/failures/001.py create mode 100644 test/failures/002.py diff --git a/test/failures/001.py b/test/failures/001.py new file mode 100644 index 0000000..5e45ee8 --- /dev/null +++ b/test/failures/001.py @@ -0,0 +1,7 @@ +from dunshire import * +L = [[-0.95237953890954685221, 1.83474556206462535712], + [ 1.30481749924621448500, 1.65278664543326403447]] +K = NonnegativeOrthant(2) +e1 = [0.95477167524644313001, 0.63270781756540095397] +e2 = [0.39633793037154141370, 0.10239281495640320530] +SLG = SymmetricLinearGame(L, K, e1, e2) diff --git a/test/failures/002.py b/test/failures/002.py new file mode 100644 index 0000000..e1945b6 --- /dev/null +++ b/test/failures/002.py @@ -0,0 +1,7 @@ +from dunshire import * +L = [[1.54159395026049472754, 2.21344728574316684799], + [1.33147433507846657541, 1.17913616272988108769]] +K = NonnegativeOrthant(2) +e1 = [0.39903040089404784307, 0.12377403622479113410] +e2 = [0.15695181142215544612, 0.85527381344651265405] +SLG = SymmetricLinearGame(L, K, e1, e2) -- 2.43.2