The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

179 lines
4.3 KiB

4 weeks ago
  1. %* glpk.tex *%
  2. %***********************************************************************
  3. % This code is part of GLPK (GNU Linear Programming Kit).
  4. %
  5. % Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
  6. % 2009, 2010, 2011, 2013, 2014, 2015, 2016, 2017 Andrew Makhorin,
  7. % Department for Applied Informatics, Moscow Aviation Institute,
  8. % Moscow, Russia. All rights reserved. E-mail: <mao@gnu.org>.
  9. %
  10. % GLPK is free software: you can redistribute it and/or modify it
  11. % under the terms of the GNU General Public License as published by
  12. % the Free Software Foundation, either version 3 of the License, or
  13. % (at your option) any later version.
  14. %
  15. % GLPK is distributed in the hope that it will be useful, but WITHOUT
  16. % ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  17. % or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  18. % License for more details.
  19. %
  20. % You should have received a copy of the GNU General Public License
  21. % along with GLPK. If not, see <http://www.gnu.org/licenses/>.
  22. %***********************************************************************
  23. % To produce glpk.pdf from glpk.tex run the following two commands:
  24. % latex glpk.tex
  25. % dvipdfm -p letter glpk.dvi
  26. % Note: You need TeX Live 2010 or later version.
  27. \documentclass[11pt]{report}
  28. \usepackage{amssymb}
  29. \usepackage[dvipdfm,linktocpage,colorlinks,linkcolor=blue,
  30. urlcolor=blue]{hyperref}
  31. \usepackage{indentfirst}
  32. \usepackage{lscape}
  33. \usepackage{niceframe}
  34. \usepackage[all]{xy}
  35. % US Letter = 8.5 x 11 in
  36. \setlength{\textwidth}{6.5in}
  37. \setlength{\textheight}{9in}
  38. \setlength{\oddsidemargin}{0in}
  39. \setlength{\topmargin}{0in}
  40. \setlength{\headheight}{0in}
  41. \setlength{\headsep}{0in}
  42. %\setlength{\footskip}{0.5in}
  43. \setlength{\parindent}{16pt}
  44. \setlength{\parskip}{5pt}
  45. \setlength{\topsep}{0pt}
  46. \setlength{\partopsep}{0pt}
  47. %\setlength{\itemsep}{\parskip}
  48. %\setlength{\parsep}{0pt}
  49. %\setlength{\leftmargini}{\parindent}
  50. %\renewcommand{\labelitemi}{---}
  51. \newcommand{\Item}[1]{\parbox[t]{\parindent}{#1}}
  52. \def\para#1{\noindent{\bf#1}}
  53. \def\synopsis{\para{Synopsis}}
  54. \def\description{\para{Description}}
  55. \def\note{\para{Note}}
  56. \def\returns{\para{Returns}}
  57. \renewcommand\contentsname{\sf\bfseries Contents}
  58. \renewcommand\chaptername{\sf\bfseries Chapter}
  59. \renewcommand\appendixname{\sf\bfseries Appendix}
  60. \newenvironment{retlist}
  61. { \def\arraystretch{1.5}
  62. \noindent
  63. \begin{tabular}{@{}p{1in}@{}p{5.5in}@{}}
  64. }
  65. {\end{tabular}}
  66. \begin{document}
  67. \thispagestyle{empty}
  68. \artdecoframe{
  69. \begin{center}
  70. \vspace*{1.5in}
  71. \begin{huge}
  72. \sf\bfseries GNU Linear Programming Kit
  73. \end{huge}
  74. \vspace{0.5in}
  75. \begin{LARGE}
  76. \sf Reference Manual
  77. \end{LARGE}
  78. \vspace{0.5in}
  79. \begin{LARGE}
  80. \sf for GLPK Version 4.64
  81. \end{LARGE}
  82. \vspace{0.5in}
  83. \begin{Large}
  84. \sf (DRAFT, November 2017)
  85. \end{Large}
  86. \end{center}
  87. \vspace*{3.8in}
  88. }
  89. \newpage
  90. \vspace*{1in}
  91. \vfill
  92. \noindent
  93. The GLPK package is part of the GNU Project released under the aegis of
  94. GNU.
  95. \noindent
  96. Copyright \copyright{} 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
  97. 2008, 2009, 2010, 2011, 2013, 2014, 2015, 2016, 2017 Andrew Makhorin,
  98. Department for Applied Informatics, Moscow Aviation Institute, Moscow,
  99. Russia. All rights reserved.
  100. \noindent
  101. Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  102. 02110-1301, USA.
  103. \noindent
  104. Permission is granted to make and distribute verbatim copies of this
  105. manual provided the copyright notice and this permission notice are
  106. preserved on all copies.
  107. \noindent
  108. Permission is granted to copy and distribute modified versions of this
  109. manual under the conditions for verbatim copying, provided also that
  110. the entire resulting derived work is distributed under the terms of
  111. a permission notice identical to this one.
  112. \noindent
  113. Permission is granted to copy and distribute translations of this
  114. manual into another language, under the above conditions for modified
  115. versions.
  116. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  117. \newpage
  118. {\setlength{\parskip}{0pt}\tableofcontents}
  119. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  120. \include{glpk01}
  121. \include{glpk02}
  122. \include{glpk03}
  123. \include{glpk04}
  124. \include{glpk05}
  125. \include{glpk06}
  126. \appendix
  127. \include{glpk07}
  128. \include{glpk08}
  129. \include{glpk09}
  130. \include{glpk10}
  131. \include{glpk11}
  132. \include{glpk12}
  133. \end{document}