| 49 | } |
| 50 | |
| 51 | static list<int> readIntList(istream &s) |
| 52 | { |
| 53 | list<int> ret; |
| 54 | int c=s.peek(); |
| 55 | while(((c>='0') && (c<='9'))|| (c==' ')) |
| 56 | { |
| 57 | // fprintf(Stderr,"?\n"); |
| 58 | int r; |
| 59 | s >> r; |
| 60 | ret.push_back(r); |
| 61 | c=s.peek(); |
| 62 | } |
| 63 | return ret; |
| 64 | } |
| 65 | |
| 66 | namespace gfan{ |
| 67 | PolymakeProperty::PolymakeProperty(const std::string &name_, const std::string &value_): |
no test coverage detected