Compare commits
No commits in common. "rawhide" and "f26" have entirely different histories.
6 changed files with 50 additions and 230 deletions
|
|
@ -1,20 +0,0 @@
|
||||||
--- src/solver/dsdpvec.h.orig 2005-10-21 13:31:14.000000000 -0600
|
|
||||||
+++ src/solver/dsdpvec.h 2019-12-09 11:50:57.152412502 -0700
|
|
||||||
@@ -27,14 +27,14 @@ typedef struct DSDPVec_C DSDPVec;
|
|
||||||
#define DSDPVecGetArray(a,b) 0;{ *(b)=((a).val); }
|
|
||||||
#define DSDPVecRestoreArray(a,b) 0;{ *(b)=0; }
|
|
||||||
#define DSDPVecGetSize(a,b) 0;{ *(b)=((a).dim); }
|
|
||||||
-#define DSDPVecAddElement(a,b,c) 0;{ if (c){((a).val[b])+=(c);} }
|
|
||||||
+#define DSDPVecAddElement(a,b,c) 0;{ if ((c)!=0){((a).val[b])+=(c);} }
|
|
||||||
#define DSDPVecSetElement(a,b,c) 0;{ {((a).val[b])=(c); } }
|
|
||||||
#define DSDPVecGetElement(a,b,c) 0;{ *(c)=((a).val[b]); }
|
|
||||||
#define DSDPVecSetR(a,b) 0;{ {((a).val[(a).dim-1])=(b); } }
|
|
||||||
-#define DSDPVecAddR(a,b) 0;{ if(b){((a).val[(a).dim-1])+=(b); } }
|
|
||||||
+#define DSDPVecAddR(a,b) 0;{ if((b)!=0){((a).val[(a).dim-1])+=(b); } }
|
|
||||||
#define DSDPVecGetR(a,b) 0;{ *(b)=((a).val[(a).dim-1]); }
|
|
||||||
#define DSDPVecSetC(a,b) 0;{ {((a).val[0])=(b); } }
|
|
||||||
-#define DSDPVecAddC(a,b) 0;{ if(b){((a).val[0])+=(b); } }
|
|
||||||
+#define DSDPVecAddC(a,b) 0;{ if((b)!=0){((a).val[0])+=(b); } }
|
|
||||||
#define DSDPVecGetC(a,b) 0;{ *(b)=((a).val[0]); }
|
|
||||||
#define DSDPVecCreateWArray(a,b,c) 0;{ (*(a)).val=(b); (*(a)).dim=(c);}
|
|
||||||
/*
|
|
||||||
|
|
@ -1,27 +1,11 @@
|
||||||
--- examples/readsdpa.c.orig 2005-10-21 13:31:14.000000000 -0600
|
--- examples/readsdpa.c.orig 2005-10-21 13:31:14.000000000 -0600
|
||||||
+++ examples/readsdpa.c 2019-12-09 11:47:34.346905327 -0700
|
+++ examples/readsdpa.c 2011-05-21 13:26:38.967119006 -0600
|
||||||
@@ -87,7 +87,7 @@ int ReadSDPAFile(int argc,char *argv[]){
|
@@ -107,7 +107,7 @@ int ReadSDPAFile(int argc,char *argv[]){
|
||||||
double ddobj,ppobj,scl,dpot;
|
|
||||||
char problemname[100],thisline[100], filename[300],savefile[100];
|
|
||||||
char directory[100]="/home/benson/sdpexamples/sdplib/";
|
|
||||||
- char outputfile[50]="",suffix[20]=".dat-s", tablename[20]="results-dsdp-5.8";
|
|
||||||
+ char outputfile[50]="",suffix[20]=".dat-s", tablename[90]="results-dsdp-5.8";
|
|
||||||
char success='s',sformat;
|
|
||||||
FILE *fp1=0,*fp2=0,*fout;
|
|
||||||
DSDPData dddd;
|
|
||||||
@@ -106,12 +106,12 @@ int ReadSDPAFile(int argc,char *argv[]){
|
|
||||||
if (strncmp(argv[i],"-benchmark",8)==0){
|
|
||||||
strncpy(thisline,argv[i+1],90); fp1=fopen(thisline,"r");runbenchmark=1; justone=0;
|
strncpy(thisline,argv[i+1],90); fp1=fopen(thisline,"r");runbenchmark=1; justone=0;
|
||||||
};
|
};
|
||||||
- if (strncmp(argv[i],"-directory",8)==0){strncpy(directory,argv[i+1],90);}
|
if (strncmp(argv[i],"-directory",8)==0){strncpy(directory,argv[i+1],90);}
|
||||||
+ if (strncmp(argv[i],"-directory",8)==0){strncpy(directory,argv[i+1],100);}
|
- if (strncmp(argv[i],"-table",4)==0){strncpy(tablename,argv[i+1],90);};
|
||||||
if (strncmp(argv[i],"-table",4)==0){strncpy(tablename,argv[i+1],90);};
|
+ if (strncmp(argv[i],"-table",4)==0){strncpy(tablename,argv[i+1],20);};
|
||||||
if (strncmp(argv[i],"-suffix",4)==0){strncpy(suffix,argv[i+1],20);};
|
if (strncmp(argv[i],"-suffix",4)==0){strncpy(suffix,argv[i+1],20);};
|
||||||
- if (strncmp(argv[i],"-save",5)==0){ strncpy(savefile,argv[i+1],40);saveit=1;};
|
if (strncmp(argv[i],"-save",5)==0){ strncpy(savefile,argv[i+1],40);saveit=1;};
|
||||||
+ if (strncmp(argv[i],"-save",5)==0){ strncpy(savefile,argv[i+1],100);saveit=1;};
|
|
||||||
if (strncmp(argv[i],"-dlogsummary",8)==0){printsummary=atoi(argv[i+1]);}
|
if (strncmp(argv[i],"-dlogsummary",8)==0){printsummary=atoi(argv[i+1]);}
|
||||||
- if (rank==0&&strncmp(argv[i],"-fout",5)==0){ strncpy(outputfile,argv[i+1],45);fileout=1;};
|
|
||||||
+ if (rank==0&&strncmp(argv[i],"-fout",5)==0){ strncpy(outputfile,argv[i+1],50);fileout=1;};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (runbenchmark || argc>2){
|
|
||||||
|
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
Description: Use correct integer type for Fortran prototypes and variables
|
|
||||||
GNU Fortran's default integer width is 32-bit, the same as GCC, therefore use
|
|
||||||
int rather than long int when interfacing with Fortran. This was an issue on
|
|
||||||
64-bit big-endian systems, since the upper 32 bits of the long would be set,
|
|
||||||
which would also be lost when truncating to a 32-bit integer.
|
|
||||||
Author: James Clarke <jrtc27@debian.org>
|
|
||||||
Bug-Debian: https://bugs.debian.org/857067
|
|
||||||
Last-Update: 2017-03-28
|
|
||||||
---
|
|
||||||
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
|
|
||||||
--- include/dsdplapack.h.orig
|
|
||||||
+++ include/dsdplapack.h
|
|
||||||
@@ -4,11 +4,11 @@
|
|
||||||
\file dsdplapack.h
|
|
||||||
\brief DSDP uses BLAS and LAPACK for many of its operations.
|
|
||||||
*/
|
|
||||||
-
|
|
||||||
-typedef long int ffinteger;
|
|
||||||
/*
|
|
||||||
-typedef int ffinteger;
|
|
||||||
+typedef long int ffinteger;
|
|
||||||
*/
|
|
||||||
+typedef int ffinteger;
|
|
||||||
+
|
|
||||||
/*
|
|
||||||
#define __DSDP_NONAMEMANGLING
|
|
||||||
#undef __DSDP_NONAMEMANGLING
|
|
||||||
--- src/vecmat/dtrsm2.c.orig
|
|
||||||
+++ src/vecmat/dtrsm2.c
|
|
||||||
@@ -1,7 +1,7 @@
|
|
||||||
#include "dsdplapack.h"
|
|
||||||
|
|
||||||
-typedef long int integer;
|
|
||||||
-typedef long int logical;
|
|
||||||
+typedef int integer;
|
|
||||||
+typedef int logical;
|
|
||||||
|
|
||||||
#define max(a,b) ((a) >= (b) ? (a) : (b))
|
|
||||||
#define dmax(a,b) (double)max(a,b)
|
|
||||||
|
|
@ -11,11 +11,11 @@
|
||||||
# Forget it! I'm writing my own Makefile.
|
# Forget it! I'm writing my own Makefile.
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
INCLUDES = -I/usr/include/flexiblas -Iinclude -Isrc/solver -Isrc/sdp -Isrc/vecmat
|
INCLUDES = -I/usr/include/atlas -Iinclude -Isrc/solver -Isrc/sdp -Isrc/vecmat
|
||||||
CFLAGS = @RPM_OPT_FLAGS@ -fPIC -DDSDP_TIME $(INCLUDES)
|
CFLAGS = @RPM_OPT_FLAGS@ -fPIC -DDSDP_TIME $(INCLUDES)
|
||||||
BFLAGS = @RPM_OPT_FLAGS@ -DDSDP_TIME -Iinclude -Lsrc
|
BFLAGS = @RPM_OPT_FLAGS@ -DDSDP_TIME -Iinclude -Lsrc
|
||||||
LDFLAGS = @RPM_LD_FLAGS@ -Wl,--as-needed -lflexiblas -lm
|
LDFLAGS = @RPM_LD_FLAGS@ -Wl,--as-needed -L@libdir@/atlas -lsatlas -lm
|
||||||
BDFLAGS = @RPM_LD_FLAGS@ -Wl,--as-needed -ldsdp -lflexiblas -lm
|
BDFLAGS = @RPM_LD_FLAGS@ -Wl,--as-needed -ldsdp -L@libdir@/atlas -lsatlas -lm
|
||||||
SONAME = -Wl,-h,libdsdp.so.5
|
SONAME = -Wl,-h,libdsdp.so.5
|
||||||
|
|
||||||
SOLVER_OBJS = src/solver/dualalg.o src/solver/dualimpl.o \
|
SOLVER_OBJS = src/solver/dualalg.o src/solver/dualimpl.o \
|
||||||
|
|
|
||||||
171
DSDP.spec
171
DSDP.spec
|
|
@ -1,67 +1,52 @@
|
||||||
Name: DSDP
|
Name: DSDP
|
||||||
Version: 5.8
|
Version: 5.8
|
||||||
Release: 40%{?dist}
|
Release: 15%{?dist}
|
||||||
Summary: Software for semidefinite programming
|
Summary: Software for semidefinite programming
|
||||||
|
|
||||||
# The content is DSDP. The remaining licenses cover the various fonts embedded
|
License: DSDP
|
||||||
# in PDFs.
|
URL: http://www.mcs.anl.gov/software/applied-mathematics-software
|
||||||
# AMS: OFL-1.1-RFN
|
# Upstream no longer offers a download or supports this software.
|
||||||
# CM: Knuth-CTAN
|
Source0: DSDP%{version}.tar.gz
|
||||||
License: DSDP AND OFL-1.1-RFN AND Knuth-CTAN
|
|
||||||
URL: https://www.mcs.anl.gov/hs/software/DSDP/
|
|
||||||
Source0: https://www.mcs.anl.gov/hs/software/DSDP/%{name}%{version}.tar.gz
|
|
||||||
# Man pages written by Jerry James using text from the sources.
|
# Man pages written by Jerry James using text from the sources.
|
||||||
# Therefore, the man pages have the same copyright and license as the source.
|
# Therefore, the man pages have the same copyright and license as the source.
|
||||||
Source1: DSDP-man.tar.xz
|
Source1: DSDP-man.tar.xz
|
||||||
# A substitute makefile to fix the brokenness of the distributed Makefiles
|
# A substitute makefile to fix the brokenness of the distributed Makefiles
|
||||||
Source2: DSDP.Makefile
|
Source2: DSDP.Makefile
|
||||||
# Fix a buffer overflow in one of the examples.
|
# This patch fixes a buffer overflow in one of the examples. It has not yet
|
||||||
Patch: %{name}-overflow.patch
|
# been sent upstream.
|
||||||
# Fix -Wint-in-bool-context warnings.
|
Patch0: DSDP-overflow.patch
|
||||||
Patch: %{name}-int-in-bool-context.patch
|
|
||||||
# Fix big endian problems (patch courtesy of Debian)
|
|
||||||
Patch: %{name}-type-mismatch.patch
|
|
||||||
|
|
||||||
# See https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval
|
|
||||||
ExcludeArch: %{ix86}
|
|
||||||
|
|
||||||
|
BuildRequires: atlas-devel
|
||||||
BuildRequires: doxygen-latex
|
BuildRequires: doxygen-latex
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: ghostscript
|
BuildRequires: ghostscript-core
|
||||||
BuildRequires: make
|
|
||||||
BuildRequires: pkgconfig(flexiblas)
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
DSDP is a free open source implementation of an interior-point method for
|
DSDP is a free open source implementation of an interior-point method
|
||||||
semidefinite programming. It provides primal and dual solutions, exploits
|
for semidefinite programming. It provides primal and dual solutions,
|
||||||
low-rank structure and sparsity in the data, and has relatively low memory
|
exploits low-rank structure and sparsity in the data, and has relatively
|
||||||
requirements for an interior-point method. It allows feasible and infeasible
|
low memory requirements for an interior-point method. It allows
|
||||||
starting points and provides approximate certificates of infeasibility when no
|
feasible and infeasible starting points and provides approximate
|
||||||
feasible solution exists. The dual-scaling algorithm implemented in this
|
certificates of infeasibility when no feasible solution exists. The
|
||||||
package has a convergence proof and worst-case polynomial complexity under
|
dual-scaling algorithm implemented in this package has a convergence
|
||||||
mild assumptions on the data. The software can be used as a set of
|
proof and worst-case polynomial complexity under mild assumptions on the
|
||||||
subroutines, through Matlab, or by reading and writing to data files.
|
data. The software can be used as a set of subroutines, through Matlab,
|
||||||
Furthermore, the solver offers scalable parallel performance for large
|
or by reading and writing to data files. Furthermore, the solver offers
|
||||||
problems and a well documented interface. Some of the most popular
|
scalable parallel performance for large problems and a well documented
|
||||||
applications of semidefinite programming and linear matrix inequalities (LMI)
|
interface. Some of the most popular applications of semidefinite
|
||||||
are model control, truss topology design, and semidefinite relaxations of
|
programming and linear matrix inequalities (LMI) are model control,
|
||||||
combinatorial and global optimization problems.
|
truss topology design, and semidefinite relaxations of combinatorial and
|
||||||
|
global optimization problems.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
# The content is DSDP. The remaining licenses cover the various fonts embedded
|
|
||||||
# in PDFs.
|
|
||||||
# AMS: OFL-1.1-RFN
|
|
||||||
# CM: Knuth-CTAN
|
|
||||||
License: DSDP AND OFL-1.1-RFN AND Knuth-CTAN
|
|
||||||
Summary: Headers and libraries for developing with DSDP
|
Summary: Headers and libraries for developing with DSDP
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Provides: bundled(js-jquery)
|
Provides: bundled(jquery)
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Headers and libraries for developing with DSDP.
|
Headers and libraries for developing with DSDP.
|
||||||
|
|
||||||
%package examples
|
%package examples
|
||||||
License: DSDP
|
|
||||||
Summary: Example programs that use DSDP
|
Summary: Example programs that use DSDP
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
|
@ -69,17 +54,18 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Examples programs that use the DSDP library.
|
Examples programs that use the DSDP library.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p0 -n %{name}%{version} -a 1
|
%setup -q -n %{name}%{version}
|
||||||
|
%setup -q -n %{name}%{version} -T -D -a 1
|
||||||
|
%patch0
|
||||||
|
|
||||||
%conf
|
sed -e "s|@RPM_OPT_FLAGS@|${RPM_OPT_FLAGS}|" \
|
||||||
sed -e 's|@RPM_OPT_FLAGS@|%{build_cflags}|' \
|
-e "s|@RPM_LD_FLAGS@|${RPM_LD_FLAGS}|" \
|
||||||
-e 's|@RPM_LD_FLAGS@|%{build_ldflags}|' \
|
-e "s|@libdir@|%{_libdir}|" \
|
||||||
-e 's|@libdir@|%{_libdir}|' \
|
-e "s|@version@|%{version}|" \
|
||||||
-e 's|@version@|%{version}|' \
|
|
||||||
%{SOURCE2} > Makefile
|
%{SOURCE2} > Makefile
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%make_build
|
make %{?_smp_mflags}
|
||||||
cd docs
|
cd docs
|
||||||
unzip DSDP5-api-html.zip
|
unzip DSDP5-api-html.zip
|
||||||
cd dox
|
cd dox
|
||||||
|
|
@ -111,10 +97,14 @@ for f in *.1; do
|
||||||
sed "s/@VERSION@/%{version}/" $f > $RPM_BUILD_ROOT%{_mandir}/man1/$f
|
sed "s/@VERSION@/%{version}/" $f > $RPM_BUILD_ROOT%{_mandir}/man1/$f
|
||||||
done
|
done
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc docs/DSDP5-Exe-UserGuide.pdf docs/DSDP5-P1289-0905.pdf
|
%doc docs/DSDP5-Exe-UserGuide.pdf docs/DSDP5-P1289-0905.pdf
|
||||||
%license dsdp-license
|
%license dsdp-license
|
||||||
%{_libdir}/libdsdp.so.5{,.*}
|
%{_libdir}/libdsdp.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%doc docs/DSDP5-API-UserGuide.pdf docs/dox
|
%doc docs/DSDP5-API-UserGuide.pdf docs/dox
|
||||||
|
|
@ -123,89 +113,10 @@ done
|
||||||
|
|
||||||
%files examples
|
%files examples
|
||||||
%doc examples/Contents
|
%doc examples/Contents
|
||||||
%{_bindir}/dsdp*
|
%{_bindir}/*
|
||||||
%{_mandir}/man1/dsdp*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-40
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-39
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-38
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-37
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-36
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-35
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-34
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-33
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-32
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Nov 23 2022 Jerry James <loganjerry@gmail.com> - 5.8-31
|
|
||||||
- Add SPDX License identifiers for PDF documentation
|
|
||||||
- Minor spec file cleanups
|
|
||||||
|
|
||||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-31
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-30
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-29
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jun 3 2021 Jerry James <loganjerry@gmail.com> - 5.8-28
|
|
||||||
- Change ghostscript-core BR to ghostscript
|
|
||||||
|
|
||||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-27
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Aug 07 2020 Iñaki Úcar <iucar@fedoraproject.org> - 5.8-26
|
|
||||||
- https://fedoraproject.org/wiki/Changes/FlexiBLAS_as_BLAS/LAPACK_manager
|
|
||||||
|
|
||||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-25
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-24
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 27 2020 Jerry James <loganjerry@gmail.com> - 5.8-23
|
|
||||||
- Add -type-mismatch patch from Debian to fix big endian issues
|
|
||||||
|
|
||||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-22
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-21
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Oct 2 2018 Jerry James <loganjerry@gmail.com> - 5.8-20
|
|
||||||
- Build with openblas instead of atlas (bz 1618936)
|
|
||||||
|
|
||||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-19
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-18
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-17
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-16
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-15
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.8-15
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
16
README.md
16
README.md
|
|
@ -1,16 +0,0 @@
|
||||||
# DSDP
|
|
||||||
|
|
||||||
[DSDP](https://www.mcs.anl.gov/hs/software/DSDP/) is a free open source
|
|
||||||
implementation of an interior-point method for semidefinite programming. It
|
|
||||||
provides primal and dual solutions, exploits low-rank structure and sparsity
|
|
||||||
in the data, and has relatively low memory requirements for an interior-point
|
|
||||||
method. It allows feasible and infeasible starting points and provides
|
|
||||||
approximate certificates of infeasibility when no feasible solution exists.
|
|
||||||
The dual-scaling algorithm implemented in this package has a convergence proof
|
|
||||||
and worst-case polynomial complexity under mild assumptions on the data. The
|
|
||||||
software can be used as a set of subroutines, through Matlab, or by reading
|
|
||||||
and writing to data files. Furthermore, the solver offers scalable parallel
|
|
||||||
performance for large problems and a well documented interface. Some of the
|
|
||||||
most popular applications of semidefinite programming and linear matrix
|
|
||||||
inequalities (LMI) are model control, truss topology design, and semidefinite
|
|
||||||
relaxations of combinatorial and global optimization problems.
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue