]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
Fix an example in the overview docs, and use ellipses in doctests.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 11 Nov 2016 20:18:03 +0000 (15:18 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 13 Nov 2016 20:19:27 +0000 (15:19 -0500)
doc/source/overview.rst

index f4b4220585bc176d9a976f26b8a6b8a74e783b56..98353b279826b1887c1798a43dd8b51f4f190ffd 100644 (file)
@@ -72,13 +72,13 @@ First, we use the nonnegative orthant in :math:`\mathbb{R}^{2}`:
   >>> e2 = e1
   >>> G = SymmetricLinearGame(L,K,e1,e2)
   >>> print(G.solution())
-  Game value: 0.5000000
+  Game value: 0.500...
   Player 1 optimal:
-    [0.5000000]
-    [0.5000000]
+    [0.500...]
+    [0.500...]
   Player 2 optimal:
-    [0.5000000]
-    [0.5000000]
+    [0.500...]
+    [0.500...]
 
 Next we try the Lorentz ice-cream cone in :math:`\mathbb{R}^{2}`:
 
@@ -87,16 +87,16 @@ Next we try the Lorentz ice-cream cone in :math:`\mathbb{R}^{2}`:
   >>> from dunshire import *
   >>> K = IceCream(2)
   >>> L = [[1,0],[0,1]]
-  >>> e1 = [1,1]
+  >>> e1 = [1,0]
   >>> e2 = e1
   >>> G = SymmetricLinearGame(L,K,e1,e2)
   >>> print(G.solution())
-  Game value: 0.5000000
+  Game value: 1.000...
   Player 1 optimal:
-    [0.8347039]
-    [0.1652961]
+    [1.000...]
+    [0.000...]
   Player 2 optimal:
-    [0.5000000]
-    [0.5000000]
+    [1.000...]
+    [0.000...]
 
 Note that these solutions are not unique, although the game values are.