Skip to content

Commit 52d3ce6

Browse files
committed
_compute_Gram ->_compute_gram_IRLS
1 parent cd93f26 commit 52d3ce6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/aspire/abinitio/commonline_irls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ def estimate_rotations(self):
7878
else:
7979
for _ in trange(self.num_itrs, desc="Performing iterative re-weighting."):
8080
S_weighted = weights * self.S
81-
gram = self._compute_Gram(gram, S_weighted)
81+
gram = self._compute_gram_IRLS(gram, S_weighted)
8282
weights = self._update_weights(gram)
8383
self.rotations = self._deterministic_rounding(gram)
8484

8585
return self.rotations
8686

87-
def _compute_Gram(self, G, S):
87+
def _compute_gram_IRLS(self, G, S):
8888
"""
8989
Given G^(k), solve for G^(k+1) using the alternating direction method of multipliers (ADMM)
9090
for the IRLS problem:

0 commit comments

Comments
 (0)