lemon-project-template-glpk
annotate deps/glpk/src/glpstd.h @ 11:4fc6ad2fb8a6
Test GLPK in src/main.cc
author | Alpar Juttner <alpar@cs.elte.hu> |
---|---|
date | Sun, 06 Nov 2011 21:43:29 +0100 |
parents | |
children |
rev | line source |
---|---|
alpar@9 | 1 /* glpstd.h (standard C headers) */ |
alpar@9 | 2 |
alpar@9 | 3 /*********************************************************************** |
alpar@9 | 4 * This code is part of GLPK (GNU Linear Programming Kit). |
alpar@9 | 5 * |
alpar@9 | 6 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
alpar@9 | 7 * 2009, 2010, 2011 Andrew Makhorin, Department for Applied Informatics, |
alpar@9 | 8 * Moscow Aviation Institute, Moscow, Russia. All rights reserved. |
alpar@9 | 9 * E-mail: <mao@gnu.org>. |
alpar@9 | 10 * |
alpar@9 | 11 * GLPK is free software: you can redistribute it and/or modify it |
alpar@9 | 12 * under the terms of the GNU General Public License as published by |
alpar@9 | 13 * the Free Software Foundation, either version 3 of the License, or |
alpar@9 | 14 * (at your option) any later version. |
alpar@9 | 15 * |
alpar@9 | 16 * GLPK is distributed in the hope that it will be useful, but WITHOUT |
alpar@9 | 17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
alpar@9 | 18 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public |
alpar@9 | 19 * License for more details. |
alpar@9 | 20 * |
alpar@9 | 21 * You should have received a copy of the GNU General Public License |
alpar@9 | 22 * along with GLPK. If not, see <http://www.gnu.org/licenses/>. |
alpar@9 | 23 ***********************************************************************/ |
alpar@9 | 24 |
alpar@9 | 25 #ifndef GLPSTD_H |
alpar@9 | 26 #define GLPSTD_H |
alpar@9 | 27 |
alpar@9 | 28 #include <ctype.h> |
alpar@9 | 29 #include <errno.h> |
alpar@9 | 30 #include <float.h> |
alpar@9 | 31 #include <limits.h> |
alpar@9 | 32 #include <math.h> |
alpar@9 | 33 #include <setjmp.h> |
alpar@9 | 34 #include <stdarg.h> |
alpar@9 | 35 #include <stddef.h> |
alpar@9 | 36 #include <stdio.h> |
alpar@9 | 37 #include <stdlib.h> |
alpar@9 | 38 #include <string.h> |
alpar@9 | 39 #include <time.h> |
alpar@9 | 40 |
alpar@9 | 41 #endif |
alpar@9 | 42 |
alpar@9 | 43 /* eof */ |