Sha256: a18409d20aa9d987964112072e1a70993e2d573e49a3b26d332d4a3f88770997

Contents?: true

Size: 810 Bytes

Versions: 1

Compression:

Stored size: 810 Bytes

Contents

/*
 *  Main authors:
 *     Christian Schulte <schulte@gecode.org>
 *
 *  Contributing authors:
 *      <duchier@gecode.org>
 *
 *  Copyright:
 *     Christian Schulte, 2002
 *     Denys Duchier, 2002
 *
 *  Last modified:
 *     $Date: 2006-04-11 15:58:37 +0200 (Tue, 11 Apr 2006) $ by $Author: tack $
 *     $Revision: 3188 $
 *
 *  This file is part of Gecode, the generic constraint
 *  development environment:
 *     http://www.gecode.org
 *
 *  See the file "LICENSE" for information on usage and
 *  redistribution of this file, and for a
 *     DISCLAIMER OF ALL WARRANTIES.
 *
 */

#include "gecode/kernel.hh"

namespace Gecode {

  void
  MemoryManager::alloc_refill(size_t sz) {
    // Try to reuse the not used memory
    reuse(start,lsz);
    alloc_fill(sz);
  }

}

// STATISTICS: kernel-core


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gecoder-with-gecode-0.7.1 ext/gecode-1.3.1/gecode/kernel/memory-manager.cc