|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
125 DATA* data = create(newkey);
134 void add( const DATA& item)
147 assert( num() + n <= max());
149 for ( int i = 0; i < n; ++i)
150 add(newkey[i], item[i]);
154 void add( const DATA* items, int n)
157 assert( num() + n <= max());
159 for ( int i = 0; i < n; ++i)
168 for ( int i = 0; i < set.num(); ++i)
169 add(newkey[i], set[i]);
177 for ( int i = 0; i < set.num(); ++i)
229 void remove( int removenum)
256 remove( number(removekey));
264 void remove( int perm[])
266 int k, j, first = -1;
268 for (k = j = 0; k < num(); ++k)
283 for (k = first, j = num(); k < j; ++k)
298 void remove( const DataKey *keys, int n, int* perm)
301 for ( int i = num() - 1; i >= 0; --i)
304 perm[ number(keys[n])] = -1;
311 remove(keys, n, perm. get_ptr());
314 void remove( const int *nums, int n, int* perm)
317 for ( int i = num() - 1; i >= 0; --i)
324 void remove( const int *nums, int n)
327 remove(nums, n, perm. get_ptr());
350 assert(n >= 0 && n < thenum);
356 assert(n >= 0 && n < thenum);
398 assert(n >= 0 && n < num());
405 assert( number(item) >= 0);
422 ptrdiff_t idx = reinterpret_cast<const struct Item* >(item) - theitem;
424 if( idx < 0 || idx >= size())
450 return (n >= 0 && n < num());
454 bool has( const DATA* item) const
473 struct Item * old_theitem = theitem;
474 newmax = (newmax < size()) ? size() : newmax;
477 while (*lastfree != - themax - 1)
479 *lastfree = -newmax - 1;
485 return reinterpret_cast<char* >( theitem)
486 - reinterpret_cast<char*>(old_theitem);
492 #ifdef ENABLE_CONSISTENCY_CHECKS
505 for ( int i = 0; i < thenum; ++i)
522 , themax ( pmax < 1 ? 8 : pmax )
590 for (i = 0; i < rhs. size(); ++i)
593 for (i = 0; i < rhs. num(); ++i)
627 #endif // _DATASET_H_
|