|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
34 #define MAX_LINE_LEN 8192
41 return (c == ' ') || (c == '\t') || (c == '\n') || (c == '\r');
47 return ((*s >= '0') && (*s <= '9'))
48 || (*s == '+') || (*s == '-') || (*s == '.');
58 return ((*s >= 'A') && (*s <= 'Z'))
59 || ((*s >= 'a') && (*s <= 'z'))
60 || (strchr( "!\"#$%&()/,;?@_'`{}|~", *s) != 0);
66 return (*s == '<') || (*s == '>') || (*s == '=');
71 return ((s[0] == '-') || (s[0] == '+'))
72 && (tolower(s[1]) == 'i')
73 && (tolower(s[2]) == 'n')
74 && (tolower(s[3]) == 'f');
79 return (tolower(s[0]) == 'f')
80 && ( tolower(s[1]) == 'r')
81 && ( tolower(s[2]) == 'e')
82 && ( tolower(s[3]) == 'e');
98 bool has_digits = false;
99 bool has_emptyexponent = false;
102 if ((*s == '+') || (*s == '-'))
106 while((*s >= '0') && (*s <= '9'))
117 while((*s >= '0') && (*s <= '9'))
124 if (tolower(*s) == 'e')
126 has_emptyexponent = true;
130 if ((*s == '+') || (*s == '-'))
134 while((*s >= '0') && (*s <= '9'))
136 has_emptyexponent = false;
142 if( has_emptyexponent )
144 MSG_WARNING( spxout << "WLPFRD01 Warning: found empty exponent in LP file - check for forbidden variable names with initial 'e' or 'E'\n"; )
148 value = (*pos == '-') ? -1.0 : 1.0;
151 for(t = tmp; pos != s; pos++)
177 assert(colnames != 0);
185 while((strchr( "+-.<>= ", *s) == 0) && (*s != '\0'))
188 for(i = 0; pos != s; i++, pos++)
193 if ((colidx = colnames-> number(name)) < 0)
200 colidx = colnames-> num();
202 colset. add(*emptycol);
206 << colidx << std::endl; )
221 if ((*pos == '<') || (*pos == '>'))
223 else if (*pos == '=')
226 MSG_DEBUG( spxout << "DLPFRD04 readSense = " << static_cast<char>(sense)
244 assert(keyword != 0);
246 for(i = 0, k = 0; keyword[i] != '\0'; i++, k++)
248 if (keyword[i] == '[')
253 while((tolower(pos[k]) == keyword[i]) && (pos[k] != '\0'))
258 while(keyword[i] != ']')
264 if (keyword[i] != tolower(pos[k]))
272 if (keyword[i] == '\0' && (pos[k] == '\0' || isSpace(pos[k]) || isSense(&pos[k])))
276 MSG_DEBUG( spxout << "DLPFRD05 hasKeyword: " << keyword << std::endl; )
286 const char* s = strchr(pos, ':');
291 int dcolpos = int(s - pos);
295 for(end = dcolpos-1; end >= 0; end--)
301 pos = &(pos[dcolpos+1]);
305 for(srt = end-1; srt >= 0; srt--)
311 assert( srt <= end && pos[srt] != ' ' );
317 for(i = srt; i <= end; i++)
325 pos = &(pos[dcolpos+1]);
334 Real sense = (*pos == '-') ? -1.0 : 1.0;
362 std::istream& p_input,
369 START, OBJECTIVE, CONSTRAINTS, BOUNDS, INTEGERS, BINARIES
389 bool finished = false;
391 bool have_value = true;
398 cnames = (p_cnames != 0)
405 rnames = (p_rnames != 0)
407 } catch(std::bad_alloc& x)
423 if (!p_input.getline(buf, sizeof(buf)))
428 << " characters" << std::endl; )
442 << " (pos=" << pos << ")" << std::endl; )
445 if (0 != (s = strchr(buf, '\\')))
449 if (section == START)
462 else if (section == OBJECTIVE)
470 for( int j = vec. size() - 1; j >= 0; --j)
476 section = CONSTRAINTS;
479 else if (section == CONSTRAINTS &&
522 if (section == OBJECTIVE)
526 if (section == CONSTRAINTS)
535 for(k = 0; pos[i] != '\0'; i++)
546 for(i = 0, k = 0; tmp[i] != '\0'; i++)
548 while(((tmp[i] == '+') || (tmp[i] == '-'))
549 && ((tmp[i + 1] == '+') || (tmp[i + 1] == '-')))
552 tmp[i] = (tmp[i] == '-') ? '+' : '-';
566 while((pos != 0) && (*pos != '\0'))
585 if ( NE(fabs(val), 1.0))
601 colidx = readColName(pos, cnames, cset, &emptycol);
602 vec. add(colidx, val);
615 if ( NE(fabs(val), 1.0))
632 else if (sense == '>')
639 assert(sense == '=');
653 sprintf(name, "C%d", rset. num());
671 colidx = readColName(pos, cnames, cset, &emptycol);
676 int n = vec. number(colidx);
680 vec. add(colidx, val);
686 assert(vec. index(n) == colidx);
695 assert(cnames-> has(colidx));
699 << " in line " << lineno
742 if ((colidx = readColName(pos, cnames, cset, 0)) < 0)
745 << lineno << " ignored" << std::endl; )
753 else if (sense == '>')
757 assert(sense == '=');
781 else if (sense == '>')
785 assert(sense == '=');
799 if ((colidx = readColName(pos, cnames, cset, 0)) < 0)
802 << lineno << " ignored" << std::endl; )
806 if (section == BINARIES)
808 if (cset. lower(colidx) < 0.0)
812 if (cset. upper(colidx) > 1.0)
818 p_intvars-> addIdx(colidx);
846 << " lines" << std::endl; )
849 MSG_ERROR( spxout << "ELPFRD15 Syntax error in line " << lineno << std::endl; )
|