summaryrefslogtreecommitdiff
path: root/ot/optim.py
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2017-07-26 12:22:00 +0200
committerRémi Flamary <remi.flamary@gmail.com>2017-07-26 12:22:00 +0200
commit84aa3183491260b9c3dbb9f928499cc18e5341c1 (patch)
tree08bada6463e76c8dbf3f873fa18834c2712bb0bb /ot/optim.py
parent251af8eec2b39e74000242cbf5bff5e13910cfe8 (diff)
pep8
Diffstat (limited to 'ot/optim.py')
-rw-r--r--ot/optim.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot/optim.py b/ot/optim.py
index c59089c..1d09adc 100644
--- a/ot/optim.py
+++ b/ot/optim.py
@@ -304,7 +304,7 @@ def gcg(a, b, M, reg1, reg2, f, df, G0=None, numItermax=10, numInnerItermax=200,
Mi = M + reg2 * df(G)
# solve linear program with Sinkhorn
- #Gc = sinkhorn_stabilized(a,b, Mi, reg1, numItermax = numInnerItermax)
+ # Gc = sinkhorn_stabilized(a,b, Mi, reg1, numItermax = numInnerItermax)
Gc = sinkhorn(a, b, Mi, reg1, numItermax=numInnerItermax)
deltaG = Gc - G