Sha256: 249a29be6eac9733103d6c07d189bb439e20fd4c5e6b0856855bdbf5d9c9af36

Contents?: true

Size: 812 Bytes

Versions: 1

Compression:

Stored size: 812 Bytes

Contents

/*
 *  Main authors:
 *     Guido Tack <tack@gecode.org>
 *
 *  Copyright:
 *     Guido Tack, 2005
 *
 *  Last modified:
 *     $Date: 2006-07-12 15:53:12 +0200 (Wed, 12 Jul 2006) $ by $Author: tack $
 *     $Revision: 3349 $
 *
 *  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/int.hh"
#include "test.hh"

using namespace Gecode;

class IntSetTest : public Test {
public:
  IntSetTest(void) : Test("IntSet","Test") {}
  bool run(const Options&)  {
    IntSet bi2(1,1);
    IntSet ci2;
    ci2.update(false, bi2);
    return true;
  }
};

IntSetTest _intset;

// STATISTICS: test-set

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gecoder-with-gecode-0.7.1 ext/gecode-1.3.1/test/intset.cc