Sha256: f73a3b40678410dce061fb08887c64c858ac83b2c580c0b763be585917b36ff2
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
/* * Main authors: * Christian Schulte <schulte@gecode.org> * * Copyright: * Christian Schulte, 2002 * * Last modified: * $Date: 2006-09-26 13:46:01 +0200 (Tue, 26 Sep 2006) $ by $Author: tack $ * $Revision: 3703 $ * * 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" namespace Gecode { IntVar::IntVar(Space* home, int min, int max) : var(new (home) Int::IntVarImp(home,min,max)) { if ((min < Limits::Int::int_min) || (max > Limits::Int::int_max)) throw Int::VariableOutOfRangeDomain("IntVar::IntVar"); if (min > max) throw Int::VariableEmptyDomain("IntVar::IntVar"); } IntVar::IntVar(Space* home, const IntSet& ds) : var(new (home) Int::IntVarImp(home,ds)) { if ((ds.min() < Limits::Int::int_min) || (ds.max() > Limits::Int::int_max)) throw Int::VariableOutOfRangeDomain("IntVar::IntVar"); if (ds.size() == 0) throw Int::VariableEmptyDomain("IntVar::IntVar"); } void IntVar::init(Space* home, int min, int max) { if ((min < Limits::Int::int_min) || (max > Limits::Int::int_max)) throw Int::VariableOutOfRangeDomain("IntVar::init"); if (min > max) throw Int::VariableEmptyDomain("IntVar::init"); var = new (home) Int::IntVarImp(home,min,max); } void IntVar::init(Space* home, const IntSet& ds) { if ((ds.min() < Limits::Int::int_min) || (ds.max() > Limits::Int::int_max)) throw Int::VariableOutOfRangeDomain("IntVar::init"); if (ds.size() == 0) throw Int::VariableEmptyDomain("IntVar::init"); var = new (home) Int::IntVarImp(home,ds); } } // STATISTICS: int-var
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gecoder-with-gecode-0.7.1 | ext/gecode-1.3.1/gecode/int/var/int.cc |