Changeset 1907
- Timestamp:
- Oct 13, 2005, 5:42:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/least_squares.py
r1904 r1907 18 18 """ 19 19 20 import exceptions21 class ShapeError(exceptions.Exception): pass20 #import exceptions 21 #class ShapeError(exceptions.Exception): pass 22 22 23 23 #from general_mesh import General_mesh … … 520 520 #However, Sparse_CSR does not have the same methods as Sparse yet 521 521 #The tests will reveal what needs to be done 522 523 # 522 524 #self.A = Sparse_CSR(Sparse(n,m)) 523 525 #self.AtA = Sparse_CSR(Sparse(m,m)) … … 835 837 836 838 #Compute right hand side based on data 839 #FIXME (DSG-DsG): could Sparse_CSR be used here? Use this format 840 # after a matrix is built, before calcs. 837 841 Atz = self.A.trans_mult(z) 838 842
Note: See TracChangeset
for help on using the changeset viewer.