ソースを参照

Disable algo remplacing LLL

master
Thibauld Feneuil 4年前
コミット
81324f49c9
2個のファイルの変更2行の追加2行の削除
  1. 1
    1
      framework/DBDD.sage
  2. 1
    1
      framework/geometry.sage

+ 1
- 1
framework/DBDD.sage ファイルの表示

@@ -30,7 +30,7 @@ class DBDD(DBDD_generic):
self.D = kwargs.get('D', None) # The dual Basis (only B or D is active)
assert self.D.T * self.B == identity_matrix(B.nrows())
self._dim = B.nrows()
self._maintains_basis = True
self._maintains_basis = False
self.S = S
self.PP = 0 * S # Span of the projections so far (orthonormal)
self.mu = mu

+ 1
- 1
framework/geometry.sage ファイルの表示

@@ -86,7 +86,7 @@ def remove_linear_dependencies(B, dim=None):
else:
r = nrows-dim
if r == 1:
if r == 1 and False:
# Find a linear dependency
if K is None:
K = B.left_kernel().basis_matrix()

読み込み中…
キャンセル
保存