📄 logfile
字号:
----------------------------------------------------------------------SPARSKIT Revision History------------------------------------------------------------------------May 9, 1994 (Version 2)Warning:The interface for gen57pt has changed.The interface for csrbnd has changed.The interface for bsrcsr has changed.New or rearranged modules: ITSOL/ilut.f -- four preconditioners (old UNSUPP/SOLVERS plus ilutp)ITSOL/iters.f -- nine iterative solvers using reverse communicationMATGEN -- rearranged into three subdirectories: FDIF, FEM, MISC.MATGEN/MISC/sobel.f-- generate matrices from a statistical applicationORDERINGS/ccn -- routines for strongly connected componentsORDERINGS/color.f -- coloring based routines for reorderingORDERINGS/levset.f -- level set based routines for reorderingUNSUPP/PLOTS -- many routines have been moved to the INOUT moduleNew format: VBR (Variable block row)------------------------------------------------------------------------May 25, 1994Fixed a bug in FORMATS/unary.f/levels, found by Aart J.C. Bik, Leiden.------------------------------------------------------------------------June 3, 1994The symmetric and nonsymmetric carpenter square format has been renamedto the symmetric and unsymmetric sparse skyline format. This is simplya name change for the functions: csrucs to csruss ucscsr to usscsr csrscs to csrsss scscsr to ssscsr This is a new format that was not in version 1 of SPARSKIT.------------------------------------------------------------------------June 27, 1994The function ssrcsr has changed, to make it more flexible (K. Wu, UMN).The old version will still be available in xssrcsr, but may be deletedin the near future. Please let us know of any bugs, or errors in thecode documentation.The interface to msrcsr has changed, to make the function in place(R. Bramley, Indiana).A number of minor bug fixes to the INOUT module (R. Bramley, Indiana).ICOPY in ccn.f was renamed to CCNICOPY to eliminate name conflictswith other libraries.Very minor typographical fixes were made to the paper.* documentation.------------------------------------------------------------------------August 3, 1994dinfo13.f was modified very slightly to handle skew-symmetric matrices.------------------------------------------------------------------------August 8, 1994Bug fixed in usscsr (D. Su).Bug fixed in ssrcsr (K. Wu).------------------------------------------------------------------------August 18, 1994New, more efficient version of cooell. The old version will still be available in xcooell, but may be deleted in the near future. (K. Wu)Bug fixed in INFO/infofun/ansym. (K. Wu)------------------------------------------------------------------------September 22, 1994Bug fixed in FORMATS/unary/getdia. (John Red-horse, Sandia)Changes to ITSOL/iters.f:Bug fix in TFQMR; initialization of workspace; number of matrix-vectormultiplications reported now includes those done in initialization;added routine FOM (Full Orthogonalization Method). (K. Wu)This version has only been tested on Solaris, and the test script output is in out.new. The other outputs are somewhat out of date.The changes have not been major; please let us know if you findany incompatibilities. Thanks. (E. Chow)------------------------------------------------------------------------October 10, 1994formats.f: revised ssrcsr to be able to sort the column of the matrixproduced, revised cooell to fill the unused entries in AO,JAO with zerodiagonal elements. (K. Wu)unary.f: new routine clncsr for removing duplicate entries, sortingcolumns of the input matrix, it requires less work space than csort.(K. Wu)iters.f: bug fix in fom. (K. Wu)chkfmt1.f (test program): bug fix in call to ssrcsr.dotests script: slight modification when running fmt.exmatvec.f: added atmuxr, Tranpose(A) times a vector, where A is rectangularin CSR format. Also useful for A times a vector, where A is rectangularin CSC format. Very similar to atmux. (E. Chow)------------------------------------------------------------------------October 17, 1994Minor fix to ilut.f, proper stopping when maxits is a multiple of theKrylov subspace size.A number of changes to iters.f:(1) add reorthgonalization to the Modified Gram-Schmidt procedures;(2) check number of matrix-vector multiplications used at the end ofevey Arnoldi step;(3) in the initialization stage of the iterative solvers, clear fparelements to zero.------------------------------------------------------------------------November 16, 1994Selective reorthogonalization replaces reorthogonalization changeof Oct. 17, 1994.------------------------------------------------------------------------November 23, 1994Added csrcsc2, a minor variation on csrcsc for rectangular matrices.csrcsc now calls csrcsc2.Removed a useless line in infofun.f that could give a compiler warning.In the ILUT preconditioner, lfil-1 new fill-ins for rows in the strictly upper part was used. This has been changed to lfil,to be consistent with the strictly lower part.Replaced levset.f with dsepart.f, which adds a number of new partitioners:rdis, dse2way, dse, in addition to the original dblstr.The new perphn subroutine no longer takes the iperm array.------------------------------------------------------------------------January 3, 1995FORMATS/formats.f:ellcsr ia(1) was not set. (Reported by J. Schoon.)------------------------------------------------------------------------January 30, 1995BLASSM/blassm.f:amub fixed the documentation. (Reported by D. O'Leary.)------------------------------------------------------------------------February 27, 1995iters.f: the reverse communication protocol has been augmented to makeperforming users own convergence test easier. minor bug fixes.unary.f: subroutine clncsr is slightly changed so that it will removezero entries. also minor corrections to its documentation.formats.f: subroutine ssrcsr is slightly changed so it may optionallyremove zero entries. also minor corrections to its documentation.infofun.f: subroutine ansym is rewritten to compute the Frobineus normof the pattern-nonsymmetric part directly insead of computing it fromthe difference between the Frobineus of the whole matrix and itspattern-symmetric part. This should make the answer of 'FAN' morereliable.------------------------------------------------------------------------March 21, 1995Bug fix in iters.f:fom.Also, FOM, GMRES, FGMRES modified so that if a zero pivot is encountered in the triangular solve part of the algorithm,the solve is truncated.The latest output of the dotests script as run on a solaris 2 machineis in out.sol2.------------------------------------------------------------------------March 27, 1995Fixes to ILUT and ILUTP.Backed out of the change of Nov. 23, 1994. The original code wascorrect (lenu includes the diagonal).A smaller drop tolerance than prescribed was used (namely, bythe 1-norm of the row); this has now been fixed.------------------------------------------------------------------------April 12, 1995Minor fix in rilut.f. A duplicate call to ilut has been removed.------------------------------------------------------------------------April 21, 1995Cleaner versions of ILUT and ILUTP. Note that the interface has beenchanged slightly (workspace parameters have been coalesced), and thedefinition of lfil has changed.ILUK, the standard level ILU(k), has been added to ilut.f.Due to these changes, ilut.f, and rilut.f have changed.Also, riters.f riter2.f have changed where they call ilut.The Block Sparse Row (BSR) format has changed, so that entries arestored in A(ni,ni,nnz), rather than A(nnz,ni,ni), where the blocksare ni by ni, and there are nnz blocks. This stores the entries ofthe blocks contiguously so that they may be passed to other subroutines.As a result of this change, the following codes have changed:FORMATS/formats.f:bsrcsr - additionally takes extra workspaceFORMATS/formats.f:csrbsrMATGEN/FDID/genmat.f:gen57bl - output n is now block dimensionFORMATS/chkfmt1.fFORMATS/rvbr.fMATGEN/FDIF/rgenblk.fBLASSM/rmatvec.fThe latest output of the dotests script from our Solaris machines hereis in out.04-21-95.------------------------------------------------------------------------April 22, 1995Now you can ask csrbsr to tell you the number of block nonzeros beforehand.Also, a minor fix if job.eq.0.------------------------------------------------------------------------April 25, 1995csrbsr cleaned up even more.------------------------------------------------------------------------May 22, 1995iters.f - fixed rare bug in bcg and bcgstab: termination test not doneproperly if they breakdown on the first step.------------------------------------------------------------------------July 27, 1995Fixed a bug in the header documentation for csrcsc(), describingthe appending of data structures. Detected by Dan Stanescu, Concordia.Fixed compilation errors in UNSUPP/PLOTS/texgrid1.f for IBM machines,detected by Regis Gras, Laboratoire CEPHAG.------------------------------------------------------------------------Sept. 22, 1995Fixed a bug in the ILUT/ILUTP routines -- found by Larry Wigton[Boeing] This bug caused small elements to be stored in L factorproduced by ILUT. Recall that the ILUT codes have been revised onApril 21 line above and there are changes in meanings of theparameters and calling sequences. The drop strategy used has alsobeen modified slightly.We also added two new preconditioning routines named ILUD and ILUDP[The difference between these and ILUT is that there is no control ofstorage. Drop strategy is controled by only one parameter (tol). [Thisshould be bigger than in ILUT in general.]-----------------------------------------------------------------------Sept. 26, 1995infofun.f:ansym was improved again.-----------------------------------------------------------------------Feb 17th, 1996: Bug fix in getdia (bug reported by Norm Fuchs, Purdue).-----------------------------------------------------------------------August 13th, 1996 1. A few more fixes to ILUT, ILUTP [ILUTP did not give the same result as ILUT when pivoting is not done. This is now fixed. 2. Small bug in (SPARSKIT2/ITSOL/iters.f) subroutine tidycg reported by Laura Dutto. 3. documentation error in minor (SPARSKIT2/ITSOL/iters.f) subroutine FGMRES requires more storage than stated.Sep. 6, 1997 one routine (dperm1) has been added to FORMATS/unary.f (slightly modified from PSPARSIB).. YS Nov. 20, 1997 Implicit none caused some minor compilation problems because of order of declarations [reported by Stefan Nilsson (Chalmers) and Christer Andersson (NADA, Sweden)]. Fixed by changing order of declarations. YS ----------------------------------------------------------------------- Aug. 16th, 1998. removed useless argument in function mindom (ORDERINGS/dsepart.f) added one option to gen57pt in MATGEN/FDIF/matgen.fSept. 2nd 1998, - fixed yet other compiler problems with double declarations of integer n in ilut.f -- these show up with gnu f77. - fixed an incorrect declaration of arraw iwk in coicsr in FORMATS/formats (reported by Dan Lee -- bmw) - removed unnecessary declaration of stopbis in tfqmr - lenr was not initialized in nonz() in infofun (reported by Massino Caspari). - a spurious "g" character was inadvertantly introduced in the previous version. [reported by Mike Botchev (CWI, NL).. Sept. 30th, 1998 - fixed a bug in routine apldia (in BLASSM/blassm.f). The code worked only for in place cases. ----------------------------------------------------------------------- June 16, 1999 - the finite element matrix generation suite has been updated (I. Moulistas) - three files have changed elmtlib2.f femgen.f meshes.f in the directory MATGEN/FEM - the finite difference matrix generation routione matgen.f has been changed [SPARSKIT2/MATGEN/FDIF/genmat.f] - bug reported by David Hyson and corrected by Kesheng John Wu.. - Adoption of the GNU general public licencing - GNU licence agreement added and terms in the main README file changed.. March 3, 2001: fix documentation glitch regarding size of w in ilut routine.July 12, 2001: iband was not initialized in bandwidth -- warning: quite a few bugs found so far in infofun! July 24, 2001: another bug in infofun (in ansym).. no fun YS. -----------------------------------------------------------------------Sep 2003: fixed returned nrhs in readmtc Dec. 29th, 03 -- it looks like the March 3, 2001 correction was not done[mishandled versions!] -- put new version..Mar. 08, 2005: revamping of the old files in DOC - contributed by Daniel Heiserer (Thanks!) Mar. 08, 2005: Moved to the Lesser GNU license instead of GNU ------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -