Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
4619f61
Addded a DRAFT of DGECS routine.
scr2016 Oct 15, 2025
df8c739
Added dgecx.f, a DRAFT for DGECX routine
scr2016 Oct 15, 2025
b36b9b7
Fix documentation for ABSTOL and factor flags
scr2016 Oct 16, 2025
de15bcc
Delete SRC/DGECX.f
scr2016 Nov 12, 2025
b01d1b2
Delete SRC/dgecx.f
scr2016 Nov 12, 2025
3833d89
Added DGECXX routine in dgecxx.f
scr2016 Nov 12, 2025
3497aaa
Edited leading comments in dgecxx.f
scr2016 Dec 11, 2025
be99d89
Refactor comments and some efficiency improvements
scr2016 Feb 11, 2026
39c3a50
Fix LIWORK calculations and JPIV adjustment comments
scr2016 Feb 12, 2026
ecac9d2
Rename subroutine DGECXX22 to DGECXX
scr2016 Mar 4, 2026
6c5bc6a
Merge branch 'Reference-LAPACK:master' into scr2016-dgecx-draft
scr2016 Mar 4, 2026
8fc7d53
dgecxx.f Corrected calculation of check for LDX input parameter and r…
scr2016 Mar 18, 2026
15b48d2
dgecxx.f : simplified workspace calculation
scr2016 Mar 19, 2026
caea640
dgecxx.f modified the description of LWORK and LIWORK
scr2016 Mar 20, 2026
9168094
dgecxx.f: updated description of FACT parameter, and LWORK parameter …
scr2016 Mar 26, 2026
6ce7d80
dgecxx.f: corrected the descriptions of QRC, X and LDX parameters
scr2016 Mar 27, 2026
7689fc1
dgecxx.f: corrected the description of LWORK parameter regarding NX c…
scr2016 Mar 27, 2026
68d8fba
dgecxx.f: corrected the LDX minimum value and description from: If FA…
scr2016 Mar 31, 2026
d35cd9a
dgecxx.f: corrected speclling the comments inside the code
scr2016 Apr 1, 2026
5478f98
dgecxx.f: version 2 of the factor C generation algorithm
scr2016 Apr 2, 2026
b7445a3
dgecxx.f: commit 68d8fba5c112de973b69445a8faa9d6cd3c4ce3e was incorre…
scr2016 Apr 2, 2026
926e28e
dgecxx.f: cahanged the description of X, added notation for lls probl…
scr2016 Apr 2, 2026
caf8581
dgecxx.f: corrected and updated the description of the parameter X.
scr2016 Apr 3, 2026
4c99ae7
dgecxx.f: changed the algorithm to generated matrix C, now it is veri…
scr2016 Apr 6, 2026
8db5d47
dgecxx.f: corrected comments in the version 3 algorithm to generate …
scr2016 Apr 6, 2026
5506815
dgecxx.f: updated the workspace dimension parameter LIWORK description
scr2016 Apr 6, 2026
7de15ad
dgecxx.f: corrected the description of the parameter LIWORL
scr2016 Apr 6, 2026
b21e888
dgecxx.f: upadated the description of the parameters C and QRC
scr2016 Apr 8, 2026
3af8533
dgecxx.f: added top comments
scr2016 Apr 9, 2026
f3f65e3
dgecxx.f: changed 2 LQUERY and LIQEURY variables into 1 LQUERY
scr2016 Apr 9, 2026
059442b
added dgecxx.f to Makefile
scr2016 Apr 9, 2026
e73e1b0
extended the expressions for USE_DESEL_ROWS and USE_SEL_DESEL_COLS to…
scr2016 Apr 9, 2026
bd79de5
added dgecxx.f to SRC/CMakeLists.txt
scr2016 Apr 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SRC/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ set(DLASRC
dgebrd.f dgecon.f dgeequ.f dgees.f dgeesx.f dgeev.f dgeevx.f
dgehd2.f dgehrd.f dgelq2.f dgelqf.f
dgels.f dgelst.f dgelsd.f dgelss.f dgelsy.f dgeql2.f dgeqlf.f
dgeqp3.f dgeqp3rk.f dgeqr2.f dgeqr2p.f dgeqrf.f dgeqrfp.f dgerfs.f dgerq2.f dgerqf.f
dgeqp3.f dgeqp3rk.f dgecxx.f dgeqr2.f dgeqr2p.f dgeqrf.f dgeqrfp.f dgerfs.f dgerq2.f dgerqf.f
dgesc2.f dgesdd.f dgesv.f dgesvd.f dgesvdx.f dgesvx.f dgetc2.f dgetf2.f
dgetrf.f dgetrf2.f dgetri.f
dgetrs.f dggbak.f dggbal.f
Expand Down
2 changes: 1 addition & 1 deletion SRC/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ DLASRC = \
dgebrd.o dgecon.o dgeequ.o dgees.o dgeesx.o dgeev.o dgeevx.o \
dgehd2.o dgehrd.o dgelq2.o dgelqf.o \
dgels.o dgelst.o dgelsd.o dgelss.o dgelsy.o dgeql2.o dgeqlf.o \
dgeqp3.o dgeqp3rk.o dgeqr2.o dgeqr2p.o dgeqrf.o dgeqrfp.o dgerfs.o \
dgeqp3.o dgeqp3rk.o dgecxx.o dgeqr2.o dgeqr2p.o dgeqrf.o dgeqrfp.o dgerfs.o \
dgerq2.o dgerqf.o dgesc2.o dgesdd.o dgesv.o dgesvd.o dgesvdx.o dgesvx.o \
dgetc2.o dgetf2.o dgetrf.o dgetri.o \
dgetrs.o dggbak.o dggbal.o dgges.o dgges3.o dggesx.o \
Expand Down
Loading
Loading