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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/****************************************************************************/
/* */
/* This file is part of QSopt_ex. */
/* */
/* (c) Copyright 2006 by David Applegate, William Cook, Sanjeeb Dash, */
/* and Daniel Espinoza */
/* */
/* Sanjeeb Dash ownership of copyright in QSopt_ex is derived from his */
/* copyright in QSopt. */
/* */
/* This code may be used under the terms of the GNU General Public License */
/* (Version 2.1 or later) as published by the Free Software Foundation. */
/* */
/* Alternatively, use is granted for research purposes only. */
/* */
/* It is your choice of which of these two licenses you are operating */
/* under. */
/* */
/* We make no guarantees about the correctness or usefulness of this code. */
/* */
/****************************************************************************/
/* RCS_INFO = "$RCSfile: wr_lp.c,v $ $Revision: 1.2 $ $Date: 2003/11/05 16:49:52 $"; */
/****************************************************************************/
/* */
/* Routines to support writing of LP files */
/* */
/****************************************************************************/
/*
* -) anything after '\' is comment
* -) variables consist of a-z A-Z 0-9!"#$%(),;.?@_`'{}|~
* don't start with a digit or '.'
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include "logging-private.h"
#include "eg_lpnum.h"
#include "eg_io.h"
#include "except.h"
#include "lpdefs_EGLPNUM_TYPENAME.h"
#include "write_lp_EGLPNUM_TYPENAME.h"
void EGLPNUM_TYPENAME_ILLwrite_lp_state_init (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line,
const char *str)
{
line->total = 0;
line->p = line->buf;
*line->p = '\0';
if (str != NULL)
{
EGLPNUM_TYPENAME_ILLwrite_lp_state_append (line, str);
}
}
void EGLPNUM_TYPENAME_ILLwrite_lp_state_append (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line,
const char *str)
{
int len, rval = 0;
ILL_FAILfalse (str, "Must have non NULL string");
sprintf (line->p, "%s", str);
len = strlen (line->p);
line->total += len;
line->p += len;
CLEANUP:
return;
}
void EGLPNUM_TYPENAME_ILLwrite_lp_state_append_coef (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line,
EGLPNUM_TYPE v,
int cnt)
{
EGLPNUM_TYPE ntmp;
int len = 0;
EGLPNUM_TYPENAME_EGlpNumInitVar (ntmp);
EGLPNUM_TYPENAME_EGlpNumCopy (ntmp, v);
if (EGLPNUM_TYPENAME_EGlpNumIsLessZero (ntmp))
{
sprintf (line->p, " - ");
len = 3;
EGLPNUM_TYPENAME_EGlpNumSign (ntmp);
}
else
{
if (cnt > 0)
{
sprintf (line->p, " + ");
len = 3;
}
else
{
sprintf (line->p, " ");
len = 1;
}
}
line->p += len;
line->total += len;
if (EGLPNUM_TYPENAME_EGlpNumIsNeqq (ntmp, EGLPNUM_TYPENAME_oneLpNum))
{
EGLPNUM_TYPENAME_ILLwrite_lp_state_append_number (line, ntmp);
}
EGLPNUM_TYPENAME_EGlpNumClearVar (ntmp);
}
/* so that diff will not stumble over too many number format differences
* between c and java generated lp files we make here sure that doubles
* which are printed without a ".xxx" part get ".0" from us
*/
static void append_number (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line,
EGLPNUM_TYPE v);
void EGLPNUM_TYPENAME_ILLwrite_lp_state_append_number (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line,
EGLPNUM_TYPE v)
{
/* write a blank after 'inf' in case it is used as a coefficient and
* a variable follows */
if (EGLPNUM_TYPENAME_EGlpNumIsEqqual (v, EGLPNUM_TYPENAME_ILL_MAXDOUBLE))
{
EGLPNUM_TYPENAME_ILLwrite_lp_state_append (line, "inf ");
}
else
{
if (EGLPNUM_TYPENAME_EGlpNumIsEqqual (v, EGLPNUM_TYPENAME_ILL_MINDOUBLE))
{
EGLPNUM_TYPENAME_ILLwrite_lp_state_append (line, "-inf ");
}
else
append_number (line, v);
}
}
static void append_number (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line,
EGLPNUM_TYPE v)
{
int len = 0;
char *numstr = EGLPNUM_TYPENAME_EGlpNumGetStr (v);
sprintf (line->p, "%s%n", numstr, &len);
EGfree (numstr);
line->p += len;
line->total += len;
}
#if 0
#define D_SCALE (1e9)
static void append_number (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line,
double x)
{
/* Better code for writing rational problems */
int i, k;
int got = 0;
double w, t;
int nnum = 0;
int nden = 0;
if (x != 0.0)
{
if (x < 0.0)
w = -x;
else
w = x;
for (i = -9, t = 0.000000001; i <= 7; i++, t *= 10.0)
{
if (w >= t && w <= t * 10)
{
got = 1;
break;
}
}
if (got == 0)
{
QSlog("Out-of-range number: %f", x);
exit (1);
}
}
if (x < 0.0)
{
sprintf (line->p, "-");
line->p++;
line->total++;
x = -x;
}
while (x >= 10.0 * D_SCALE)
{
x /= 10.0;
nnum++;
}
/* (x != (double) (int) x) is a hack to let small integers print nicely */
while (x < D_SCALE && x != (double) (int) x)
{
x *= 10.0;
nden++;
}
sprintf (line->p, "%.0f%n", x, &k);
line->p += k;
line->total += k;
for (i = 0; i < nnum; i++)
{
sprintf (line->p, "0");
line->p++;
line->total++;
}
if (nden)
{
sprintf (line->p, "/1%n", &k);
line->p += k;
line->total += k;
for (i = 0; i < nden; i++)
{
sprintf (line->p, "0");
line->p++;
line->total++;
}
}
}
#endif
void EGLPNUM_TYPENAME_ILLwrite_lp_state_save_start (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line)
{
line->startlen = line->total;
}
void EGLPNUM_TYPENAME_ILLwrite_lp_state_start (
EGLPNUM_TYPENAME_ILLwrite_lp_state * line)
{
int j;
for (j = 0; j < line->startlen; j++)
{
line->buf[j] = ' ';
}
line->buf[j] = '\0';
line->p = line->buf + j;
line->total = j;
}
|