blob: 6263773a0e2b06f762432fef7398950e5d44e5a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
% glpk.tex %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The GLPK package is part of the GNU Project released under the aegis
% of GNU.
%
% Copyright (c) 2000-2020 Free Software Foundation, Inc.
%
% Author: Andrew Makhorin <mao@gnu.org>.
%
% Permission is granted to copy, distribute and/or modify this
% document under the terms of the GNU Free Documentation License,
% Version 1.3 or any later version published by the Free Software
% Foundation.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% To produce glpk.pdf from glpk.tex run the following two commands:
% latex glpk.tex
% dvipdfm -p letter glpk.dvi
% Note: You need TeX Live 2010 or later version.
\documentclass[11pt]{report}
\usepackage{amssymb}
\usepackage[dvipdfm,linktocpage,colorlinks,linkcolor=blue,
urlcolor=blue]{hyperref}
\usepackage{indentfirst}
\usepackage{lscape}
\usepackage{niceframe}
\usepackage[all]{xy}
% US Letter = 8.5 x 11 in
\setlength{\textwidth}{6.5in}
\setlength{\textheight}{9in}
\setlength{\oddsidemargin}{0in}
\setlength{\topmargin}{0in}
\setlength{\headheight}{0in}
\setlength{\headsep}{0in}
%\setlength{\footskip}{0.5in}
\setlength{\parindent}{16pt}
\setlength{\parskip}{5pt}
\setlength{\topsep}{0pt}
\setlength{\partopsep}{0pt}
%\setlength{\itemsep}{\parskip}
%\setlength{\parsep}{0pt}
%\setlength{\leftmargini}{\parindent}
%\renewcommand{\labelitemi}{---}
\newcommand{\Item}[1]{\parbox[t]{\parindent}{#1}}
\def\para#1{\noindent{\bf#1}}
\def\synopsis{\para{Synopsis}}
\def\description{\para{Description}}
\def\note{\para{Note}}
\def\returns{\para{Returns}}
\renewcommand\contentsname{\sf\bfseries Contents}
\renewcommand\chaptername{\sf\bfseries Chapter}
\renewcommand\appendixname{\sf\bfseries Appendix}
\newenvironment{retlist}
{ \def\arraystretch{1.5}
\noindent
\begin{tabular}{@{}p{1in}@{}p{5.5in}@{}}
}
{\end{tabular}}
\begin{document}
\thispagestyle{empty}
\artdecoframe{
\begin{center}
\vspace*{1.5in}
\begin{huge}
\sf\bfseries GNU Linear Programming Kit
\end{huge}
\vspace{0.5in}
\begin{LARGE}
\sf Reference Manual
\end{LARGE}
\vspace{0.5in}
\begin{LARGE}
\sf for GLPK Version 5.0
\end{LARGE}
\vspace{0.5in}
\begin{Large}
\sf (December 2020)
\end{Large}
\end{center}
\vspace*{3.2in}
}
\newpage
\vspace*{1in}
\vfill
\noindent
The GLPK package is part of the GNU Project released under the aegis of
GNU.
\noindent
Copyright \copyright{} 2000-2020 Free Software Foundation, Inc.
\noindent
Author: Andrew Makhorin $<$mao@gnu.org$>$.
\noindent
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
{\setlength{\parskip}{0pt}\tableofcontents}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{glpk01}
\include{glpk02}
\include{glpk03}
\include{glpk04}
\include{glpk05}
\include{glpk06}
\appendix
\include{glpk07}
\include{glpk08}
\include{glpk09}
\include{glpk10}
\include{glpk11}
\include{glpk12}
\end{document}
|