]> gitweb.michael.orlitzky.com - dunshire.git/commitdiff
dunshire: http -> https in links.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 10 Feb 2023 03:25:18 +0000 (22:25 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 10 Feb 2023 03:25:18 +0000 (22:25 -0500)
dunshire/cones.py
dunshire/games.py

index bc2764098176f2020a7165ebd41155ca77e6ef79..dc1964e3fde54a4a10b1cbfc11e8f4edbca962fa 100644 (file)
@@ -753,7 +753,7 @@ class CartesianProduct(SymmetricCone):
         Return a dictionary of dimensions corresponding to the
         factors of this cartesian product. The format of this dictionary
         is described in the `CVXOPT user's guide
-        <http://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
+        <https://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
 
         Returns
         -------
index 6ed36c3963fe34b902c04d8f5fc3e25662c491e5..ff7fd18d32d5a959d739ff78574b023bf7b33ed1 100644 (file)
@@ -180,8 +180,8 @@ class SymmetricLinearGame:
 
     L : list of list of float
         A matrix represented as a list of **rows**. This representation
-        agrees with (for example) `SageMath <http://www.sagemath.org/>`_
-        and `NumPy <http://www.numpy.org/>`_, but not with CVXOPT (whose
+        agrees with (for example) `SageMath <https://www.sagemath.org/>`_
+        and `NumPy <https://www.numpy.org/>`_, but not with CVXOPT (whose
         matrix constructor accepts a list of columns). In reality, ``L``
         can be any iterable type of the correct length; however, you
         should be extremely wary of the way we interpret anything other
@@ -584,7 +584,7 @@ class SymmetricLinearGame:
 
         This matrix :math:`A` appears on the right-hand side of
         :math:`Ax = b` in the `statement of the CVXOPT conelp program
-        <http://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
+        <https://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
 
         .. warning::
 
@@ -622,7 +622,7 @@ class SymmetricLinearGame:
 
         Thus matrix :math:`G` appears on the left-hand side of :math:`Gx
         + s = h` in the `statement of the CVXOPT conelp program
-        <http://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
+        <https://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
 
         .. warning::
 
@@ -666,7 +666,7 @@ class SymmetricLinearGame:
         The column vector :math:`c` appears in the objective function
         value :math:`\left\langle c,x \right\rangle` in the `statement
         of the CVXOPT conelp program
-        <http://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
+        <https://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
 
         .. warning::
 
@@ -704,7 +704,7 @@ class SymmetricLinearGame:
         Return the cone ``C`` used in our CVXOPT construction.
 
         This is the cone over which the `CVXOPT conelp program
-        <http://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_
+        <https://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_
         takes place.
 
         Returns
@@ -736,7 +736,7 @@ class SymmetricLinearGame:
 
         The :math:`h` vector appears on the right-hand side of :math:`Gx
         + s = h` in the `statement of the CVXOPT conelp program
-        <http://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
+        <https://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
 
         .. warning::
 
@@ -779,7 +779,7 @@ class SymmetricLinearGame:
 
         The vector :math:`b` appears on the right-hand side of :math:`Ax
         = b` in the `statement of the CVXOPT conelp program
-        <http://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
+        <https://cvxopt.org/userguide/coneprog.html#linear-cone-programs>`_.
 
         This method is static because the dimensions and entries of
         ``b`` are known beforehand, and don't depend on any other