debian/0000755000000000000000000000000011357702747007203 5ustar debian/coinor-csdp-doc.doc-base0000644000000000000000000000114411170215646013553 0ustar Document: coinor-csdp Title: A software package for semidefinite programming Author: Brian Borchers Abstract: CSDP is a library of routines that implements a predictor corrector variant of the semidefinite programming algorithm of Helmberg, Rendl, Vanderbei, and Wolkowicz. The code runs in parallel on shared memory multi-processor systems, and it makes effective use of sparsity in the constraint matrices. CSDP is part of the larger COIN-OR initiative (Computational Infrastructure for Operations Research). Section: Science/Data Analysis Format: PDF Files: /usr/share/doc/coinor-csdp-doc/csdpuser.pdf debian/csdp.10000644000000000000000000001173311170215646010211 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH CSDP 1 "April 11, 2009" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME csdp \- semidefinite program solver .SH SYNOPSIS .B csdp .RI < problemfile > " " < finalsolution > " " < initialsolution > .br .B csdp-complement .RI < inputgraph > " " < outputgraph > .br .B csdp-graphtoprob .RI < graph > " " < problemfile > .br .B csdp-randgraph .RI < rand_graph > " " < file > " " < n > " " < p > " " [< seed >] .br .B csdp-theta .RI < graph > .br .SH DESCRIPTION This manual page documents briefly the .B csdp, .B csdp-complement, .B csdp-graphtoprob, .B csdp-randgraph and .B csdp-theta commands. .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBcsdp\fP -- interface to solve general semi-definite programs .br \fBcsdp-complement\fP -- compute the complement of a graph and output it in csdp problem format .br \fBcsdp-graphtoprob\fP -- convert graph into csdp problem format file .br \fBcsdp-randgraph\fP -- generate a random graph .br \fBcsdp-theta\fP -- solves the Lovasz thetha problem .SH OPTIONS A summary of options is included below. For a complete description, see .B /usr/share/doc/coinor-csdp-doc/csdpuser.pdf. .TP .B csdp .br .B inputproblem in the SDPA sparse format .TP .B problemfile is the name of a file containing the SDP problem in SDPA sparse format .TP .B finalsolution is the optional name of a file in which to save the final solution .TP .B initialsolution is the optional name of a file from which to take the initial solution. .PP CSDP searches for a file named .B param.csdp in the current directory. If no such file exists, then default values for all of CSDP’s parameters are used. If there is a parameter file, then CSDP reads the parameter values from this file. The default parameter values is given below (can be pasted into a file): .PP axtol=1.0e-8 .br atytol=1.0e-8 .br objtol=1.0e-8 .br pinftol=1.0e8 .br dinftol=1.0e8 .br maxiter=100 .br minstepfrac=0.90 .br maxstepfrac=0.97 .br minstepp=1.0e-8 .br minstepd=1.0e-8 .br usexzgap=1 .br tweakgap=0 .br affine=0 .br printlevel=1 .br perturbobj=1 .br fastmode=0 .PP .B param.csdp file parameter description .TP .B axtol .B atytol .B objtol tolerances for primal feasibility, dual feasibility, and relative duality gap .TP .B pinftol .B dinftol tolerances used in determining primal and dual infeasibility .TP .B maxiter plimit the total number of iterations that CSDP may use .TP .B minstepfrac .B maxstepfrac determine how close to the edge of the feasible region CSDP will step. If the primal or dual step is shorter than minstepp or minstepd, then CSDP declares a line search failure. .B usexzgap If parameter 0, then CSDP will use the objective function duality gap instead of the tr(XZ) gap .TP .B tweakgap if set to 1, and usexzgap is set to 0, then CSDP will attempt to "fix" negative duality gaps. .TP .B affine If parameter affine is set to 1, then CSDP will take only primal–dual affine steps and not make use of the barrier term. This can be useful for some problems that do not have feasible solutions that are strictly in the interior of the cone of semidefinite ma- trices. .B printlevel determines how much debugging information is output. Use printlevel=0 for no output and printlevel=1 for normal output. Higher values of printlevel will generate more debugging output. .TP .B perturbobj determines whether the objective function will be perturbed to help deal with problems that have unbounded optimal solution sets. If per- turbobj is 0, then the objective will not be perturbed. If perturbobj=1, then the objective function will be perturbed by a default amount. Larger values of perturbobj (e.g. 100.0) increase the size of the perturbation. This can be helpful in solving some difficult problems. .TP .B fastmode determines whether or not CSDP will skip certain time consuming operations that slightly improve the accuracy of the solutions. If fastmode is set to 1, then CSDP may be somewhat faster, but also somewhat less accurate. .PP .SH SEE ALSO .BR dsdp5 (1), theta (1) .TP The programs are documented fully in the accompanying .pdf documentation which can be found in .B /usr/share/doc/coinor-csdp-doc if the coinor-csdp-doc package is installed. .SH AUTHOR csdp was written by Brian Borchers et al. .PP This manual page was written by Soeren Sonnenburg , for the Debian project (but may be used by others). debian/orig-tar.sh0000755000000000000000000000060111170215646011251 0ustar #!/bin/sh # called by uscan with '--upstream-version' tar xzf $3 rm -f $3 rm -f Csdp-*/doc/*.bbl Csdp-*/doc/*.blg Csdp-*/doc/*.log rm -f Csdp-*/doc/*.aux Csdp-*/doc/csdpuser.pdf doc/example.c tar czf $3 Csdp-* rm -rf Csdp-* # move to directory 'tarballs' if [ -r .svn/deb-layout ]; then . .svn/deb-layout mv $3 $origDir echo "moved $3 to $origDir" fi exit 0 debian/compat0000644000000000000000000000000211170140110010346 0ustar 7 debian/coinor-csdp.manpages0000644000000000000000000000001611170215646013123 0ustar debian/csdp.1 debian/coinor-csdp-doc.docs0000644000000000000000000000002111170140110012776 0ustar doc/csdpuser.pdf debian/coinor-csdp-doc.examples0000644000000000000000000000003511170140110013671 0ustar example/*.c example/Makefile debian/copyright0000644000000000000000000002725411170215646011136 0ustar This package was debianized by Soeren Sonnenburg . It was downloaded from https://projects.coin-or.org/Csdp . The main upstream author is Brian Borchers. If not stated otherwise Copyright: (C) 2000-2003, 2005-2008 International Business Machines Corporation and others. License: Common Public License Version 1.0 Common Public License Version 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. 1. DEFINITIONS "Contribution" means: a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor: i) changes to the Program, and ii) additions to the Program; where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. "Contributor" means any person or entity that distributes the Program. "Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. "Program" means the Contributions distributed in accordance with this Agreement. "Recipient" means anyone who receives the Program under this Agreement, including all Contributors. 2. GRANT OF RIGHTS a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. 3. REQUIREMENTS A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: a) it complies with the terms and conditions of this Agreement; and b) its license agreement: i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. When the Program is made available in source code form: a) it must be made available under this Agreement; and b) a copy of this Agreement must be included with each copy of the Program. Contributors may not remove or alter any copyright notices contained within the Program. Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. 4. COMMERCIAL DISTRIBUTION Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. 5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. 6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. GENERAL If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. debian/README.source0000644000000000000000000000267111133466023011352 0ustar This package uses quilt to manage all modifications to the upstream source. Changes are stored in the source package as diffs in debian/patches and applied during the build. To get the fully patched source after unpacking the source package, cd to the root level of the source package and run: quilt push -a The last patch listed in debian/patches/series will become the current patch. To add a new set of changes, first run quilt push -a, and then run: quilt new where is a descriptive name for the patch, used as the filename in debian/patches. Then, for every file that will be modified by this patch, run: quilt add before editing those files. You must tell quilt with quilt add what files will be part of the patch before making changes or quilt will not work properly. After editing the files, run: quilt refresh to save the results as a patch. Alternately, if you already have an external patch and you just want to add it to the build system, run quilt push -a and then: quilt import -P /path/to/patch quilt push -a (add -p 0 to quilt import if needed). as above is the filename to use in debian/patches. The last quilt push -a will apply the patch to make sure it works properly. To remove an existing patch from the list of patches that will be applied, run: quilt delete You may need to run quilt pop -a to unapply patches first before running this command. debian/rules0000755000000000000000000000267511357676503010275 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk DEB_COMPRESS_EXCLUDE := .pdf build/coinor-csdp:: debian/stamp-build-coinor-csdp debian/stamp-build-coinor-csdp: $(MAKE) touch $@ build/coinor-csdp-doc:: debian/stamp-build-coinor-csdp-doc debian/stamp-build-coinor-csdp-doc: cd doc && ( pdflatex csdpuser.tex ; bibtex csdpuser; \ pdflatex csdpuser.tex; pdflatex csdpuser.tex ) touch $@ install/coinor-csdp:: debian/stamp-install-coinor-csdp debian/stamp-install-coinor-csdp: mkdir -p debian/coinor-csdp/usr/bin make install DESTDIR=debian/coinor-csdp/usr/bin/ @# rename executables with too generic names mv debian/coinor-csdp/usr/bin/theta debian/coinor-csdp/usr/bin/csdp-theta mv debian/coinor-csdp/usr/bin/rand_graph debian/coinor-csdp/usr/bin/csdp-randgraph mv debian/coinor-csdp/usr/bin/graphtoprob debian/coinor-csdp/usr/bin/csdp-graphtoprob mv debian/coinor-csdp/usr/bin/complement debian/coinor-csdp/usr/bin/csdp-complement touch $@ install/coinor-csdp-doc:: debian/stamp-install-coinor-csdp-doc debian/stamp-install-coinor-csdp-doc: mkdir -p debian/coinor-csdp-doc/usr/share/doc/coinor-csdp-doc/ cp doc/csdpuser.pdf \ debian/coinor-csdp-doc/usr/share/doc/coinor-csdp-doc/ touch $@ get-orig-source: -uscan --rename --upstream-version 0 @echo successfully retrieved upstream tarball clean:: $(RM) debian/stamp-* $(MAKE) clean $(RM) doc/csdpuser.pdf doc/csdpuser.log doc/csdpuser.aux doc/csdpuser.bbl doc/csdpuser.blg debian/source/0000755000000000000000000000000011357702747010503 5ustar debian/source/format0000644000000000000000000000001411357703052011677 0ustar 3.0 (quilt) debian/control0000644000000000000000000000451411357702554010606 0ustar Source: coinor-csdp Section: science Priority: extra Maintainer: Soeren Sonnenburg Uploaders: Aramian Wasielak Build-Depends: cdbs, debhelper (>= 7), texlive-latex-base, libatlas-base-dev [!powerpc !alpha !arm !armel !sh4] | libblas-dev, liblapack-dev Standards-Version: 3.8.4 Homepage: https://projects.coin-or.org/Csdp Vcs-Svn: http://bollin.googlecode.com/svn/coinor-csdp/trunk/ Vcs-Browser: http://bollin.googlecode.com/svn/coinor-csdp/trunk/ Package: coinor-csdp Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: A software package for semidefinite programming CSDP is a library of routines that implements a predictor corrector variant of the semidefinite programming algorithm of Helmberg, Rendl, Vanderbei, and Wolkowicz. The code runs in parallel on shared memory multi-processor systems, and it makes effective use of sparsity in the constraint matrices. . CSDP is part of the larger COIN-OR initiative (Computational Infrastructure for Operations Research). . This package contains the binaries. Package: coinor-csdp-doc Section: doc Architecture: all Depends: ${misc:Depends} Recommends: coinor-csdp Description: A software package for semidefinite programming CSDP is a library of routines that implements a predictor corrector variant of the semidefinite programming algorithm of Helmberg, Rendl, Vanderbei, and Wolkowicz. The code runs in parallel on shared memory multi-processor systems, and it makes effective use of sparsity in the constraint matrices. . CSDP is part of the larger COIN-OR initiative (Computational Infrastructure for Operations Research). . This package contains the documentation and examples. Package: coinor-csdp-dbg Section: debug Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, coinor-csdp (= ${binary:Version}) Description: A software package for semidefinite programming CSDP is a library of routines that implements a predictor corrector variant of the semidefinite programming algorithm of Helmberg, Rendl, Vanderbei, and Wolkowicz. The code runs in parallel on shared memory multi-processor systems, and it makes effective use of sparsity in the constraint matrices. . CSDP is part of the larger COIN-OR initiative (Computational Infrastructure for Operations Research). . This package contains the debug symbols. debian/changelog0000644000000000000000000000140111357676503011051 0ustar coinor-csdp (6.1.1-1) unstable; urgency=low * New upstream version. (Closes: #576822) - Switch to dpkg-source 3.0 (quilt) format. -- Soeren Sonnenburg Fri, 09 Apr 2010 21:18:49 +0200 coinor-csdp (6.1.0-1) unstable; urgency=low * New upstream version. - refresh patches * Bump standards version (no changes required). -- Soeren Sonnenburg Wed, 03 Mar 2010 12:33:43 +0100 coinor-csdp (6.0.1-2) unstable; urgency=low * Fix FTBS for Renesas SH(sh4) CPUs. (Closes: #560426) -- Soeren Sonnenburg Fri, 11 Dec 2009 05:25:35 +0100 coinor-csdp (6.0.1-1) unstable; urgency=low * Initial Release. (Closes: #511899) -- Soeren Sonnenburg Sun, 12 Apr 2009 00:36:13 +0200 debian/coinor-csdp.links0000644000000000000000000000042711170215646012456 0ustar /usr/share/man/man1/csdp.1.gz /usr/share/man/man1/csdp-complement.1.gz /usr/share/man/man1/csdp.1.gz /usr/share/man/man1/csdp-graphtoprob.1.gz /usr/share/man/man1/csdp.1.gz /usr/share/man/man1/csdp-randgraph.1.gz /usr/share/man/man1/csdp.1.gz /usr/share/man/man1/csdp-theta.1.gz debian/watch0000644000000000000000000000015011133466023010212 0ustar version=3 http://www.coin-or.org/download/source/Csdp/Csdp-([\d\.]+).tgz \ debian debian/orig-tar.sh debian/patches/0000755000000000000000000000000011357702747010632 5ustar debian/patches/series0000644000000000000000000000001711170140110012012 0ustar Makefile.patch debian/patches/Makefile.patch0000644000000000000000000000731111343444516013362 0ustar Index: coinor-csdp-6.1.0/Makefile =================================================================== --- coinor-csdp-6.1.0.orig/Makefile 2006-11-03 20:29:50.000000000 +0100 +++ coinor-csdp-6.1.0/Makefile 2010-03-03 12:27:48.000000000 +0100 @@ -7,6 +7,8 @@ # # Generic. On most systems, this should handle everything. # +DESTDIR=/usr/local/bin + all: cd lib; make libsdp.a cd solver; make csdp @@ -25,11 +27,11 @@ # install: - cp -f solver/csdp /usr/local/bin - cp -f theta/theta /usr/local/bin - cp -f theta/graphtoprob /usr/local/bin - cp -f theta/complement /usr/local/bin - cp -f theta/rand_graph /usr/local/bin + cp -f solver/csdp $(DESTDIR) + cp -f theta/theta $(DESTDIR) + cp -f theta/graphtoprob $(DESTDIR) + cp -f theta/complement $(DESTDIR) + cp -f theta/rand_graph $(DESTDIR) # # Clean out all of the directories. Index: coinor-csdp-6.1.0/example/Makefile =================================================================== --- coinor-csdp-6.1.0.orig/example/Makefile 2009-12-30 06:17:22.000000000 +0100 +++ coinor-csdp-6.1.0/example/Makefile 2010-03-03 12:28:51.000000000 +0100 @@ -19,7 +19,7 @@ # # The default settings for gcc: # -CFLAGS=-O3 -ansi -Wall -DNOSHORTS -I../include +CFLAGS=-O3 -ansi -fopenmp -Wall -DNOSHORTS -DUSEOPENMP -I../include # # Notes on CFLAGS. # @@ -88,7 +88,7 @@ # The default settings for a Linux system with gcc3, lapack, blas, and # gfortran: # -LIBS=-L../lib -lsdp -llapack -lblas -lgfortran -lm +LIBS=-L../lib -lsdp -llapack -lblas -lm # # 1. Warning about debian systems. For some absurb reason, the BLAS # package in debian has the BLAS library named libblas-3.a, rather than Index: coinor-csdp-6.1.0/solver/Makefile =================================================================== --- coinor-csdp-6.1.0.orig/solver/Makefile 2010-01-06 00:05:04.000000000 +0100 +++ coinor-csdp-6.1.0/solver/Makefile 2010-03-03 12:32:33.000000000 +0100 @@ -21,7 +21,7 @@ # # The default settings for gcc: # -CFLAGS=-O3 -ansi -Wall -DNOSHORTS -DUSEGETTIME -I../include +CFLAGS=-O3 -ansi -fopenmp -Wall -DNOSHORTS -DUSEGETTIME -DUSEOPENMP -I../include # # Notes on CFLAGS. # @@ -94,7 +94,7 @@ # The default settings for a Linux system with gcc3, lapack, blas, and # gfortran: # -LIBS=-L../lib -lsdp -llapack -lblas -lgfortran -lm +LIBS=-fopenmp -L../lib -lsdp -llapack -lblas -lm # # 1. Warning about debian systems. For some absurb reason, the BLAS # package in debian has the BLAS library named libblas-3.a, rather than Index: coinor-csdp-6.1.0/theta/Makefile =================================================================== --- coinor-csdp-6.1.0.orig/theta/Makefile 2009-12-30 06:17:22.000000000 +0100 +++ coinor-csdp-6.1.0/theta/Makefile 2010-03-03 12:31:04.000000000 +0100 @@ -19,7 +19,7 @@ # # The default settings for gcc: # -CFLAGS=-O3 -ansi -Wall -DNOSHORTS -I../include +CFLAGS=-O3 -ansi -fopenmp -Wall -DNOSHORTS -DUSEOPENMP -I../include # # Notes on CFLAGS. # @@ -87,7 +87,7 @@ # # The default settings for a Linux system with gcc3, lapack, blas, and g2c: # -LIBS=-L../lib -lsdp -llapack -lblas -lgfortran -lm +LIBS=-fopenmp -L../lib -lsdp -llapack -lblas -lm # # 1. Warning about debian systems. For some absurb reason, the BLAS # package in debian has the BLAS library named libblas-3.a, rather than Index: coinor-csdp-6.1.0/lib/Makefile =================================================================== --- coinor-csdp-6.1.0.orig/lib/Makefile 2009-11-22 00:19:48.000000000 +0100 +++ coinor-csdp-6.1.0/lib/Makefile 2010-03-03 12:31:59.000000000 +0100 @@ -24,7 +24,7 @@ # # The default settings for gcc: # -CFLAGS=-O3 -ansi -Wall -DNOSHORTS -DUSEGETTIME -I../include +CFLAGS=-O3 -ansi -fopenmp -Wall -DNOSHORTS -DUSEGETTIME -DUSEOPENMP -I../include # # Notes on CFLAGS. # debian/README.debian0000644000000000000000000000040111170215646011265 0ustar The octave helper files were removed from the distribution due to lincensing conflicts. Csdp is released under the CPL, which is a GPL incompatible license. In addition, to avoid naming clashes with other packages all executables are prefixed with csdp-.