Changes from releases/0.92.1 at r1595 to releases/0.92.0 at r1595
- Location:
- releases/0.92.0
- Files:
-
- 169 edited
Legend:
- Unmodified
- Added
- Removed
-
releases/0.92.0/AUTHORS
r1595 r1595 1 For D IP author information, please see the AUTHORS file in the DIP1 For DECOMP author information, please see the AUTHORS file in the DECOMP 2 2 subdirectory. For author information for any other COIN-OR or third-party 3 3 source code that was automatically checked out with DECOMP, please see the -
releases/0.92.0/Dip
- Property svn:mergeinfo changed
/trunk/Dip reverse-merged: 1389,1394-1395,1397-1400
- Property svn:mergeinfo changed
-
releases/0.92.0/Dip/README
r1595 r1595 36 36 CHANGELOG 37 37 ========= 38 39 ## Release 0.92.140 * Fixed problem with dependency linking41 42 ## Release 0.92.043 * Substantially re-designed internals44 * Renamed classes, functions, and parameters more intuitively45 * Eliminated unnecessary "MILP" parameter section and joined it to "DECOMP," as well as making "DECOMP" the default parameter section name.46 * Changed parameter setting mechanism to make it possible to pass parameters directly to solvers using native names.47 * Added interface to Gurobi48 * Added ability to select solver at run-time rather than compile-time.49 50 ## Release 0.91.451 * Fixed bugs in examples52 * Updates to dependencies53 * Samll bug fixes54 55 ## Release 0.91.456 * Fixed bugs in examples57 * Updates to dependencies58 * Samll bug fixes59 38 60 39 ## Release 0.91.3 -
releases/0.92.0/Dip/configure
r1595 r1595 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.59 for Dip 0.92. 1.3 # Generated by GNU Autoconf 2.59 for Dip 0.92.0. 4 4 # 5 5 # Report bugs to <dip@lists.coin-or.org>. … … 441 441 PACKAGE_NAME='Dip' 442 442 PACKAGE_TARNAME='dip' 443 PACKAGE_VERSION='0.92. 1'444 PACKAGE_STRING='Dip 0.92. 1'443 PACKAGE_VERSION='0.92.0' 444 PACKAGE_STRING='Dip 0.92.0' 445 445 PACKAGE_BUGREPORT='dip@lists.coin-or.org' 446 446 … … 1017 1017 # This message is too long to be a string in the A/UX 3.1 sh. 1018 1018 cat <<_ACEOF 1019 \`configure' configures Dip 0.92. 1to adapt to many kinds of systems.1019 \`configure' configures Dip 0.92.0 to adapt to many kinds of systems. 1020 1020 1021 1021 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1083 1083 if test -n "$ac_init_help"; then 1084 1084 case $ac_init_help in 1085 short | recursive ) echo "Configuration of Dip 0.92. 1:";;1085 short | recursive ) echo "Configuration of Dip 0.92.0:";; 1086 1086 esac 1087 1087 cat <<\_ACEOF … … 1294 1294 if $ac_init_version; then 1295 1295 cat <<\_ACEOF 1296 Dip configure 0.92. 11296 Dip configure 0.92.0 1297 1297 generated by GNU Autoconf 2.59 1298 1298 … … 1325 1325 running configure, to aid debugging if configure makes a mistake. 1326 1326 1327 It was created by Dip $as_me 0.92. 1, which was1327 It was created by Dip $as_me 0.92.0, which was 1328 1328 generated by GNU Autoconf 2.59. Invocation command line was 1329 1329 … … 1851 1851 1852 1852 # Capture libtool library version, if given. 1853 coin_libversion=7: 1:61853 coin_libversion=7:0:6 1854 1854 1855 1855 … … 4581 4581 # Define the identity of the package. 4582 4582 PACKAGE='dip' 4583 VERSION='0.92. 1'4583 VERSION='0.92.0' 4584 4584 4585 4585 … … 26973 26973 cat >&5 <<_CSEOF 26974 26974 26975 This file was extended by Dip $as_me 0.92. 1, which was26975 This file was extended by Dip $as_me 0.92.0, which was 26976 26976 generated by GNU Autoconf 2.59. Invocation command line was 26977 26977 … … 27039 27039 cat >>$CONFIG_STATUS <<_ACEOF 27040 27040 ac_cs_version="\\ 27041 Dip config.status 0.92. 127041 Dip config.status 0.92.0 27042 27042 configured by $0, generated by GNU Autoconf 2.59, 27043 27043 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" -
releases/0.92.0/Dip/configure.ac
r1595 r1595 21 21 22 22 # name of project, version number, contact info 23 AC_INIT([Dip],[0.92. 1],[dip@lists.coin-or.org])23 AC_INIT([Dip],[0.92.0],[dip@lists.coin-or.org]) 24 24 25 25 # copyright for configure script … … 61 61 # externals. The following macro ensures that those externals are 62 62 # retrieved by svn if they are not there yet. 63 AC_COIN_PROJECTDIR_INIT(Dip,7: 1:6)63 AC_COIN_PROJECTDIR_INIT(Dip,7:0:6) 64 64 65 65 # Check if user wants to produce debugging code -
releases/0.92.0/Dip/examples/AP3/AP3_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/AP3/AP3_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/AP3/AP3_DecompParam.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/AP3/AP3_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/AP3/AP3_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/ATM/ATM_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/ATM/ATM_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/ATM/ATM_Instance.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/ATM/ATM_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/ATM/ATM_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/ATM/ATM_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015 Lehigh University, Matthew Galati, and Ted Ralphs // -
releases/0.92.0/Dip/examples/GAP/GAP_DecompApp3.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_DecompApp3.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_DecompApp4.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_DecompParam.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_Instance.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_KnapPisinger.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/GAP/GAP_Status.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_Cliquer.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_CliquerI.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_DecompDebug.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_DecompDebug.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_DecompParam.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_DecompSolution.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_Heuristic.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_MemPool.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MAD/MAD_Qualex.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MCF/MCF_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MCF/MCF_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MCF/MCF_Instance.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MCF/MCF_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MCF/MCF_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MCF/MCF_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILP/MILP_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILP/MILP_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILP/MILP_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILP/MILP_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILPBlock/MILPBlock_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILPBlock/MILPBlock_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILPBlock/MILPBlock_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MILPBlock/MILPBlock_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_Instance.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_MCKnap.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_MCKnap.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_MemPool.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_Model.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/MMKP/MMKP_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/Makefile.Examples.in
r1595 r1595 5 5 # COIN-OR repository (http://www.coin-or.org). # 6 6 # # 7 # Authors: Matthew Galati, SAS Institute Inc. # 8 # Ted Ralphs, Lehigh University # 9 # Jiadong Wang, Lehigh University # 7 # Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) # 10 8 # # 11 9 # Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs# -
releases/0.92.0/Dip/examples/SDPUC/SDPUC_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SDPUC/SDPUC_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SDPUC/SDPUC_Instance.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SDPUC/SDPUC_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SDPUC/SDPUC_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SDPUC/SDPUC_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SmallIP/SmallIP_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SmallIP/SmallIP_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SmallIP/SmallIP_DecompApp2.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SmallIP/SmallIP_DecompApp2.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/SmallIP/SmallIP_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_Boost.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_Concorde.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_ConcordeI.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_CutGen.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/TSP/TSP_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_Boost.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_CVRPsep.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_Concorde.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_ConcordeI.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_DecompApp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_Instance.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_Main.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_Param.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/examples/VRP/VRP_SPPRC.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/setup.py
r1595 r1595 8 8 9 9 PROJECT = 'coinor.dippy' 10 VERSION = '1.9 2.1'10 VERSION = '1.91.3' 11 11 URL = 'https://projects.coin-or.org/Dip/wiki/DipPy' 12 12 AUTHOR_EMAIL = u'' -
releases/0.92.0/Dip/src
- Property svn:mergeinfo changed
/trunk/Dip/src reverse-merged: 1394-1395,1397-1398
- Property svn:mergeinfo changed
-
releases/0.92.0/Dip/src/AlpsDecompModel.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/AlpsDecompModel.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/AlpsDecompNodeDesc.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/AlpsDecompParam.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/AlpsDecompSolution.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/AlpsDecompTreeNode.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/AlpsDecompTreeNode.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/Decomp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgo.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// … … 40 41 41 42 using namespace std; 42 43 double DecompInf = COIN_DBL_MAX;44 43 45 44 //===========================================================================// -
releases/0.92.0/Dip/src/DecompAlgo.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgoC.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgoC.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgoCGL.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/DecompAlgoCGL.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/DecompAlgoD.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgoD.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgoPC.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/DecompAlgoPC.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgoRC.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompAlgoRC.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompApp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompApp.h
r1595 r1595 6 6 // COIN-OR repository (http://www.coin-or.org). // 7 7 // // 8 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 9 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 10 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 8 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 9 // // 10 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 11 // Ted Ralphs, Lehigh University // 11 12 // // 12 13 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompBranch.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompConfig.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompConstraintSet.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompConstraintSet.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/DecompCut.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompCut.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompCutOsi.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompCutPool.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompCutPool.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompDebug.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompMain.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, Lehigh University // 10 8 // // 11 9 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// … … 42 40 DecompSolverResult* solveDirect(const DecompApp& decompApp); 43 41 44 extern double DecompInf;42 double DecompInf = DBL_MAX; 45 43 46 44 //===========================================================================// -
releases/0.92.0/Dip/src/DecompMemPool.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompModel.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/DecompModel.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/DecompParam.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompSolution.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompSolverResult.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/DecompStats.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompStats.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompVar.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompVar.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompVarPool.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompVarPool.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompWaitingCol.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/DecompWaitingRow.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/Makefile.am
r1595 r1595 5 5 # COIN-OR repository (http://www.coin-or.org). # 6 6 # # 7 # Authors: Matthew Galati, SAS Institute Inc. # 8 # Ted Ralphs, Lehigh University # 9 # Jiadong Wang, Lehigh University # 7 # Author: Matthew Galati, SAS Institute Inc. # 10 8 # # 11 # Co pyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs#12 # All Rights Reserved.#9 # Conceptual Design: Matthew Galati, SAS Institute Inc. # 10 # Ted Ralphs, Lehigh University # 13 11 #============================================================================# 14 12 … … 107 105 # List all additionally required libraries 108 106 if DEPENDENCY_LINKING 109 libDecomp_la_LIBADD = $(DIPLIB_LIBS) $(DIP_OPENMP_LIBS)107 libDecomp_la_LIBADD = $(DIPLIB_LIBS) 110 108 endif 111 109 -
releases/0.92.0/Dip/src/Makefile.in
r1595 r1595 21 21 # COIN-OR repository (http://www.coin-or.org). # 22 22 # # 23 # Authors: Matthew Galati, SAS Institute Inc. # 24 # Ted Ralphs, Lehigh University # 25 # Jiadong Wang, Lehigh University # 23 # Author: Matthew Galati, SAS Institute Inc. # 26 24 # # 27 # Co pyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs#28 # All Rights Reserved.#25 # Conceptual Design: Matthew Galati, SAS Institute Inc. # 26 # Ted Ralphs, Lehigh University # 29 27 #============================================================================# 30 28 … … 81 79 am__DEPENDENCIES_1 = 82 80 @DEPENDENCY_LINKING_TRUE@libDecomp_la_DEPENDENCIES = \ 83 @DEPENDENCY_LINKING_TRUE@ $(am__DEPENDENCIES_1) \84 81 @DEPENDENCY_LINKING_TRUE@ $(am__DEPENDENCIES_1) 85 82 am_libDecomp_la_OBJECTS = DecompAlgo.lo DecompAlgoC.lo DecompAlgoD.lo \ … … 439 436 440 437 # List all additionally required libraries 441 @DEPENDENCY_LINKING_TRUE@libDecomp_la_LIBADD = $(DIPLIB_LIBS) $(DIP_OPENMP_LIBS)438 @DEPENDENCY_LINKING_TRUE@libDecomp_la_LIBADD = $(DIPLIB_LIBS) 442 439 443 440 # This is for libtool -
releases/0.92.0/Dip/src/UtilGraphLib.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilGraphLib.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilHash.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilHash.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilKnapsack.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilKnapsack.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilMacros.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilMacros.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilMacrosAlps.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilMacrosAlps.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilMacrosDecomp.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilMacrosDecomp.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilParameters.cpp
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilParameters.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/UtilTimer.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, and Ted Ralphs// -
releases/0.92.0/Dip/src/config_default.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // -
releases/0.92.0/Dip/src/config_dip_default.h
r1595 r1595 5 5 // COIN-OR repository (http://www.coin-or.org). // 6 6 // // 7 // Authors: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // Ted Ralphs, Lehigh University (ted@lehigh.edu) // 9 // Jiadong Wang, Lehigh University (jiw408@lehigh.edu) // 7 // Author: Matthew Galati, SAS Institute Inc. (matthew.galati@sas.com) // 8 // // 9 // Conceptual Design: Matthew Galati, SAS Institute Inc. // 10 // Ted Ralphs, Lehigh University // 10 11 // // 11 12 // Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs // … … 19 20 20 21 /* Version number of project */ 21 #define DIP_VERSION "0.92. 1"22 #define DIP_VERSION "0.92.0" 22 23 23 24 /* Major Version number of project */ … … 28 29 29 30 /* Release Version number of project */ 30 #define DIP_VERSION_RELEASE 131 #define DIP_VERSION_RELEASE 0 31 32 32 33 /* Define to 1 if the Clp package is available */ -
releases/0.92.0/Dip/src/dippy/examples/bpp/bin_pack_func.py
r1595 r1595 37 37 def formulate(bpp): 38 38 prob = dippy.DipProblem("Bin Packing", 39 display_mode = ' off',39 display_mode = 'xdot', 40 40 # layout = 'bak', 41 41 display_interval = None, … … 85 85 86 86 def my_branch(prob, sol): 87 87 88 88 bounds = None 89 89 … … 145 145 # 'LogDebugLevel': 5, 146 146 # 'LogDumpModel': 5, 147 dippyOpts['Gurobi'] = {'MipGap':'.05'}148 147 149 148 status, message, primals, duals = dippy.Solve(prob, dippyOpts) -
releases/0.92.0/Dip/src/dippy/examples/cflp/facility_location.py
r1595 r1595 46 46 use_vars = LpVariable.dicts("y", LOCATIONS, 0, 1, LpBinary) 47 47 48 debug_print = False48 debug_print = True 49 49 50 50 debug_print_lp = False … … 113 113 return 0, [] 114 114 115 if debug_subproblem:115 if (debug_subproblem): 116 116 relaxation = LpProblem('relaxation', LpMaximize) 117 117 relax_vars = [str(i) for i in range(n)] … … 330 330 bvs.append((i, dv)) 331 331 index += 1 332 if debug_print: 333 print bvs 332 print bvs 334 333 return bvs 335 334 … … 346 345 dv = (waste, var_values) 347 346 bvs.append((loc, dv)) 348 if debug_print:349 print bvs347 if debug_print: 348 print bvs 350 349 return bvs 351 350 -
releases/0.92.0/Makefile.am
r1595 r1595 5 5 # COIN-OR repository (http://www.coin-or.org). # 6 6 # # 7 # Authors: Matthew Galati, SAS Institute Inc. # 8 # Ted Ralphs, Lehigh University # 9 # Jiadong Wang, Lehigh University # 7 # Author: Matthew Galati, SAS Institute Inc. # 8 # # 9 # Conceptual Design: Matthew Galati, SAS Institute Inc. # 10 # Ted Ralphs, Lehigh University # 10 11 # # 11 12 # Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs # -
releases/0.92.0/Makefile.in
r1595 r1595 21 21 # COIN-OR repository (http://www.coin-or.org). # 22 22 # # 23 # Authors: Matthew Galati, SAS Institute Inc. # 24 # Ted Ralphs, Lehigh University # 25 # Jiadong Wang, Lehigh University # 23 # Author: Matthew Galati, SAS Institute Inc. # 24 # # 25 # Conceptual Design: Matthew Galati, SAS Institute Inc. # 26 # Ted Ralphs, Lehigh University # 26 27 # # 27 28 # Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs # -
releases/0.92.0/README.md
r1595 r1595 32 32 33 33 # CHANGELOG 34 35 ## Release 0.92.136 * Fixed problem with dependency linking37 38 ## Release 0.92.039 * Substantially re-designed internals40 * Renamed classes, functions, and parameters more intuitively41 * Eliminated unnecessary "MILP" parameter section and joined it to "DECOMP," as well as making "DECOMP" the default parameter section name.42 * Changed parameter setting mechanism to make it possible to pass parameters directly to solvers using native names.43 * Added interface to Gurobi44 * Added ability to select solver at run-time rather than compile-time.45 46 ## Release 0.91.447 * Fixed bugs in examples48 * Updates to dependencies49 * Samll bug fixes50 51 ## Release 0.91.452 * Fixed bugs in examples53 * Updates to dependencies54 * Samll bug fixes55 34 56 35 ## Release 0.91.3 -
releases/0.92.0/configure
r1595 r1595 2 2 # From configure.ac 0.8. 3 3 # Guess values for system-dependent variables and create Makefiles. 4 # Generated by GNU Autoconf 2.59 for Dip 0.92. 1.4 # Generated by GNU Autoconf 2.59 for Dip 0.92.0. 5 5 # 6 6 # Report bugs to <dip@lists.coin-or.org>. … … 442 442 PACKAGE_NAME='Dip' 443 443 PACKAGE_TARNAME='dip' 444 PACKAGE_VERSION='0.92. 1'445 PACKAGE_STRING='Dip 0.92. 1'444 PACKAGE_VERSION='0.92.0' 445 PACKAGE_STRING='Dip 0.92.0' 446 446 PACKAGE_BUGREPORT='dip@lists.coin-or.org' 447 447 … … 1045 1045 # This message is too long to be a string in the A/UX 3.1 sh. 1046 1046 cat <<_ACEOF 1047 \`configure' configures Dip 0.92. 1to adapt to many kinds of systems.1047 \`configure' configures Dip 0.92.0 to adapt to many kinds of systems. 1048 1048 1049 1049 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1111 1111 if test -n "$ac_init_help"; then 1112 1112 case $ac_init_help in 1113 short | recursive ) echo "Configuration of Dip 0.92. 1:";;1113 short | recursive ) echo "Configuration of Dip 0.92.0:";; 1114 1114 esac 1115 1115 cat <<\_ACEOF … … 1323 1323 if $ac_init_version; then 1324 1324 cat <<\_ACEOF 1325 Dip configure 0.92. 11325 Dip configure 0.92.0 1326 1326 generated by GNU Autoconf 2.59 1327 1327 … … 1354 1354 running configure, to aid debugging if configure makes a mistake. 1355 1355 1356 It was created by Dip $as_me 0.92. 1, which was1356 It was created by Dip $as_me 0.92.0, which was 1357 1357 generated by GNU Autoconf 2.59. Invocation command line was 1358 1358 … … 5127 5127 # Define the identity of the package. 5128 5128 PACKAGE='dip' 5129 VERSION='0.92. 1'5129 VERSION='0.92.0' 5130 5130 5131 5131 … … 22919 22919 cat >&5 <<_CSEOF 22920 22920 22921 This file was extended by Dip $as_me 0.92. 1, which was22921 This file was extended by Dip $as_me 0.92.0, which was 22922 22922 generated by GNU Autoconf 2.59. Invocation command line was 22923 22923 … … 22977 22977 cat >>$CONFIG_STATUS <<_ACEOF 22978 22978 ac_cs_version="\\ 22979 Dip config.status 0.92. 122979 Dip config.status 0.92.0 22980 22980 configured by $0, generated by GNU Autoconf 2.59, 22981 22981 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" -
releases/0.92.0/configure.ac
r1595 r1595 5 5 # COIN-OR repository (http://www.coin-or.org). # 6 6 # # 7 # Authors: Matthew Galati, SAS Institute Inc. # 8 # Ted Ralphs, Lehigh University # 9 # Jiadong Wang, Lehigh University # 7 # Author: Matthew Galati, SAS Institute Inc. # 8 # # 9 # Conceptual Design: Matthew Galati, SAS Institute Inc. # 10 # Ted Ralphs, Lehigh University # 10 11 # # 11 12 # Copyright (C) 2002-2015, Lehigh University, Matthew Galati, Ted Ralphs # … … 20 21 21 22 # name of project, version number, contact info 22 AC_INIT([Dip],[0.92. 1],[dip@lists.coin-or.org])23 AC_INIT([Dip],[0.92.0],[dip@lists.coin-or.org]) 23 24 24 25 # copyright for configure script
Note: See TracChangeset
for help on using the changeset viewer.