Changeset 507
- Timestamp:
- Aug 26, 2005 2:33:43 PM (15 years ago)
- Location:
- branches/dev
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/Algorithm/IpAlgorithmRegOp.cpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpAlgorithmRegOp.cpp 430 2005-08-10 00:19:54Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-16 -
branches/dev/Algorithm/IpAlgorithmRegOp.hpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpAlgorithmRegOp.hpp 430 2005-08-10 00:19:54Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-16 -
branches/dev/Algorithm/LinearSolvers/IpLinearSolversRegOp.cpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpLinearSolversRegOp.cpp 430 2005-08-10 00:19:54Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-16 -
branches/dev/Algorithm/LinearSolvers/IpLinearSolversRegOp.hpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpLinearSolversRegOp.hpp 430 2005-08-10 00:19:54Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-16 -
branches/dev/Docs/documentation.tex
r506 r507 394 394 You can change the default installation directory (here 395 395 \texttt{\$IPOPTDIR}) to something else (such as \texttt{/usr/local}) 396 by using the \ texttt{--prefix}switch for \texttt{configure}.396 by using the \verb|--prefix| switch for \texttt{configure}. 397 397 %\item Test the installation \\ 398 398 % {\tt \$ make test}\\ … … 846 846 the header files are installed in \texttt{\$IPOPTDIR/include/ipopt} 847 847 (or in \texttt{\$PREFIX/include/ipopt} if the switch 848 \ texttt{--prefix=\$PREFIX}was used for {\tt configure}).848 \verb|--prefix=$PREFIX| was used for {\tt configure}). 849 849 850 850 \subsubsection{Coding the Problem Representation}\label{sec.cpp_problem} … … 1647 1647 \texttt{\$IPOPTDIR/include/ipopt} (or in 1648 1648 \texttt{\$PREFIX/include/ipopt} if the switch 1649 \ texttt{--prefix=\$PREFIX}was used for {\tt configure}); while1649 \verb|--prefix=$PREFIX| was used for {\tt configure}); while 1650 1650 reading this section, it will be helpful to have a look at this file. 1651 1651 … … 2566 2566 2567 2567 In general, you can see the list of options and variables that can be 2568 set for the {\tt configure} script by typing {\tt configure --help}.2568 set for the {\tt configure} script by typing \verb/configure --help/. 2569 2569 Below a few particular options are discussed: 2570 2570 … … 2576 2576 2577 2577 However, you can specify a BLAS library (such as your local ATLAS 2578 library) explicitly, using the {\tt --with-blas}flag for {\tt2578 library) explicitly, using the \verb/--with-blas/ flag for {\tt 2579 2579 configure}. For example, 2580 2580 2581 {\tt ./configure --with=blas="-L \$HOME/lib -latlas"}2581 \verb|./configure --with=blas="-L$HOME/lib -latlas"| 2582 2582 2583 2583 To tell the configure script to compile and use the downloaded BLAS 2584 2584 source files even if a BLAS library is found on your system, specify 2585 {\tt --with-blas=BUILD}.2585 \verb|--with-blas=BUILD|. 2586 2586 2587 2587 \item Similarly, if you have a precompiled library containing the 2588 Harwell Subroutines, you can specify its location with the {\tt2589 --with-hsl}flag.2588 Harwell Subroutines, you can specify its location with the 2589 \verb|--with-hsl| flag. 2590 2590 2591 2591 \item If you want to specify that you want to use particular … … 2649 2649 2650 2650 \item It is possible to compile the \Ipopt\ library in a debug 2651 configuration, by specifying {\tt --enable-debug}. Then the2651 configuration, by specifying \verb|--enable-debug|. Then the 2652 2652 compilers will use the debug flags (unless the compilation flag 2653 2653 variables are overwritten in the command line), and additional debug -
branches/dev/Examples/hs071_c/Makefile.in
- Property svn:keywords set to Author Date Id Revision
r462 r507 3 3 # This file is distributed under the Common Public License. 4 4 5 # $Id : Makefile.in 433 2005-08-11 16:28:35Z andreasw$5 # $Id$ 6 6 7 7 # Directory to the sources for the (example) problem definition files -
branches/dev/Examples/hs071_c/hs071_c.c
- Property svn:keywords set to Author Date Id Revision
r482 r507 3 3 * This code is published under the Common Public License. 4 4 * 5 * $Id : MyNLP.hpp 419 2005-08-01 18:34:28Z andreasw$5 * $Id$ 6 6 * 7 7 * Authors: Carl Laird, Andreas Waechter IBM 2005-08-17 -
branches/dev/Examples/hs071_cpp/Makefile.in
- Property svn:keywords set to Author Date Id Revision
r447 r507 3 3 # This file is distributed under the Common Public License. 4 4 5 # $Id : Makefile.in 433 2005-08-11 16:28:35Z andreasw$5 # $Id$ 6 6 7 7 # Directory to the sources for the (example) problem definition files -
branches/dev/Examples/hs071_cpp/hs071_main.cpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : cpp_example.cpp 419 2005-08-01 18:34:28Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-10 -
branches/dev/Examples/hs071_cpp/hs071_nlp.cpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : MyNLP.cpp 419 2005-08-01 18:34:28Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-16 -
branches/dev/Examples/hs071_cpp/hs071_nlp.hpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : MyNLP.hpp 419 2005-08-01 18:34:28Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-09 -
branches/dev/Interfaces/IpInterfacesRegOp.cpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpInterfacesRegOp.hpp 430 2005-08-10 00:19:54Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-16 -
branches/dev/Interfaces/IpInterfacesRegOp.hpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpInterfacesRegOp.hpp 430 2005-08-10 00:19:54Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-16 -
branches/dev/Interfaces/IpSolveStatistics.cpp
- Property svn:keywords set to Author Date Id Revision
r444 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpTNLPAdapter.cpp 433 2005-08-11 16:28:35Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Andreas Waechter IBM 2005-08-15 -
branches/dev/Interfaces/IpSolveStatistics.hpp
- Property svn:keywords set to Author Date Id Revision
r501 r507 3 3 // This code is published under the Common Public License. 4 4 // 5 // $Id : IpTNLPAdapter.hpp 430 2005-08-10 00:19:54Z andreasw$5 // $Id$ 6 6 // 7 7 // Authors: Carl Laird, Andreas Waechter IBM 2005-08-15 -
branches/dev/LICENSE
- Property svn:keywords set to Author Date Id Revision
-
branches/dev/Windows/VisualStudio_dotNET/Ipopt/Ipopt.sln
- Property svn:keywords set to Author Date Id Revision
-
branches/dev/Windows/VisualStudio_dotNET/Ipopt/Ipopt.vcproj
- Property svn:keywords set to Author Date Id Revision
-
branches/dev/configure
r484 r507 2459 2459 2460 2460 # C++ link libraries # 2461 CXXLIBS= 2461 2462 2462 if test -z "$CXXLIBS"; then 2463 2463 if test "$GXX" = "yes"; then -
branches/dev/configure.ac
r484 r507 6 6 7 7 # Authors: Carl Laird, Andreas Waechter IBM 2004-08-13 8 9 ## SGI: ./configure CC=cc F77=f77 CXX=CC CXXFLAGS="-g -LANG:std -DOLD_C_HEADERS" AR="CC -ar" ARFLAGS="-o " AR_X="ar x" FFLAGS=-g CFLAGS=-g CXXLIBS='-lCsup -lC -lCio'10 ## AIX: ./configure CC=xlc F77=xlf CXX=xlC --with-lapack=$HOME/lib/liblapack.a CFLAGS=-g FFLAGS=-g CXXFLAGS="-g -qrtti=dyna" CXXLIBS="-lC -lc"11 ## HP1: configure --with-asl=$HOME/COIN/OBJhp1/OTHERS/ASL/amplsolver.a --with-blas=/opt/fortran/lib/libblas.a --with-hsl=$HOME/COIN/OBJhp1/OTHERS/HSL/libiphsl.a --with-lapack=$HOME/COIN/OBJhp1/OTHERS/lapack/libiplapack.a F77=/opt/fortran/bin/fort77 CC=/opt/ansic/bin/cc CXX=/opt/aCC/bin/aCC FFLAGS='-g' CFLAGS='-g' CXXFLAGS='-AA -DMY_C_FINITE=isfinite -g' CXXLIBS='-L/opt/aCC/lib -l++ -lstd_v2 -lCsup_v2 -lm -lcl -lc'12 # gridsun1: need AR='CC -xar' ARFLAGS='-o'13 8 14 9 AC_PREREQ(2.59) … … 225 220 226 221 # C++ link libraries # 227 AC_ARG_VAR(CXXLIBS,[Libraries necessary for linking C++ code with Fortran compiler]) CXXLIBS=222 AC_ARG_VAR(CXXLIBS,[Libraries necessary for linking C++ code with Fortran compiler]) 228 223 if test -z "$CXXLIBS"; then 229 224 if test "$GXX" = "yes"; then
Note: See TracChangeset
for help on using the changeset viewer.