~ubuntu-branches/debian/stretch/gecode/stretch

« back to all changes in this revision

Viewing changes to gecode/iter/values-inter.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Kari Pahula
  • Date: 2011-02-05 23:56:22 UTC
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20110205235622-z27s7kzpmqsto0ty
Tags: upstream-3.5.0
ImportĀ upstreamĀ versionĀ 3.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *     Christian Schulte, 2008
8
8
 *
9
9
 *  Last modified:
10
 
 *     $Date: 2009-09-08 21:10:29 +0200 (Tue, 08 Sep 2009) $ by $Author: schulte $
11
 
 *     $Revision: 9692 $
 
10
 *     $Date: 2010-07-28 17:35:33 +0200 (Wed, 28 Jul 2010) $ by $Author: schulte $
 
11
 *     $Revision: 11294 $
12
12
 *
13
13
 *  This file is part of Gecode, the generic constraint
14
14
 *  development environment:
45
45
 
46
46
  template<class I, class J>
47
47
  class Inter  {
48
 
  private:
 
48
  protected:
49
49
    /// First iterator
50
50
    I i;
51
51
    /// Second iterator
52
52
    J j;
53
53
    /// Find next element from intersection
54
54
    void next(void);
55
 
  private:
56
 
    IsValueIter<I> constraintI; IsValueIter<J> constraintJ;
57
55
  public:
58
56
    /// \name Constructors and initialization
59
57
    //@{