This file is indexed.

/usr/include/gecode/kernel/brancher-print.hpp is in libgecode-dev 5.1.0-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
 *  Main authors:
 *     Christian Schulte <schulte@gecode.org>
 *
 *  Copyright:
 *     Christian Schulte, 2017
 *
 *  Last modified:
 *     $Date: 2017-04-01 20:27:10 +0200 (Sat, 01 Apr 2017) $ by $Author: schulte $
 *     $Revision: 15623 $
 *
 *  This file is part of Gecode, the generic constraint
 *  development environment:
 *     http://www.gecode.org
 *
 *  Permission is hereby granted, free of charge, to any person obtaining
 *  a copy of this software and associated documentation files (the
 *  "Software"), to deal in the Software without restriction, including
 *  without limitation the rights to use, copy, modify, merge, publish,
 *  distribute, sublicense, and/or sell copies of the Software, and to
 *  permit persons to whom the Software is furnished to do so, subject to
 *  the following conditions:
 *
 *  The above copyright notice and this permission notice shall be
 *  included in all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 */

#include <functional>

namespace Gecode {

  /// Function type for printing variable and value selection
  template<class Var, class Val>
  using VarValPrint = std::function<void(const Space& home, const Brancher& b,
                                         unsigned int a,
                                         Var x, int i, const Val& m,
                                         std::ostream& o)>;
 
  /// Class storing a print function
  template<class View, class Val>
  class BrancherPrint {
  public:
    /// The corresponding variable type
    typedef typename View::VarType Var;
  protected:
    SharedData<VarValPrint<Var,Val>> p;
  public:
    /// Initialize
    BrancherPrint(VarValPrint<Var,Val> vvp);
    /// Initialize during cloning
    BrancherPrint(Space& home, bool shared, BrancherPrint& bp);
    /// Whether printing is enabled
    operator bool(void) const;
    /// Invoke print function
    void operator ()(const Space& home, const Brancher& b,
                     unsigned int a,
                     View x, int i, const Val& m,
                     std::ostream& o) const;
    /// Whether dispose must always be called (that is, notice is needed)
    bool notice(void) const;
    /// Delete
    void dispose(Space& home);
  };

  /// Class without print function
  template<class View, class Val>
  class BrancherNoPrint {
  public:
    /// The corresponding variable type
    typedef typename View::VarType Var;
  public:
    /// Initialize
    BrancherNoPrint(VarValPrint<Var,Val> vvp);
    /// Initialize during cloning
    BrancherNoPrint(Space& home, bool shared, BrancherNoPrint& bp);
    /// Whether printing is enabled
    operator bool(void) const;
    /// Invoke print function
    void operator ()(const Space& home, const Brancher& b,
                     unsigned int a,
                     View x, int i, const Val& m,
                     std::ostream& o) const;
    /// Whether dispose must always be called (that is, notice is needed)
    bool notice(void) const;
    /// Delete
    void dispose(Space& home);
  };



  template<class View, class Val>
  forceinline
  BrancherPrint<View,Val>::BrancherPrint(VarValPrint<Var,Val> vvp) : p(vvp) {
    if (!vvp)
      throw Gecode::InvalidFunction("BrancherPrint::BrancherPrint");
  }
  
  template<class View, class Val>
  forceinline
  BrancherPrint<View,Val>::BrancherPrint(Space& home, bool shared,
                                         BrancherPrint<View,Val>& bp) {
    p.update(home,shared,bp.p);
  }

  template<class View, class Val>
  forceinline
  BrancherPrint<View,Val>::operator bool(void) const {
    return true;
  }

  template<class View, class Val>
  forceinline void
  BrancherPrint<View,Val>::operator ()(const Space& home, const Brancher& b,
                                       unsigned int a,
                                       View x, int i, const Val& m,
                                       std::ostream& o) const {
    GECODE_VALID_FUNCTION(p());
    Var xv(x.varimp());
    p()(home,b,a,xv,i,m,o);
  }

  template<class View, class Val>
  forceinline bool
  BrancherPrint<View,Val>::notice(void) const {
    return true;
  }

  template<class View, class Val>
  forceinline void
  BrancherPrint<View,Val>::dispose(Space&) {
    p.~SharedData<VarValPrint<Var,Val>>();
  }


  template<class View, class Val>
  forceinline
  BrancherNoPrint<View,Val>::BrancherNoPrint(VarValPrint<Var,Val> vvp) {
    assert(!vvp);
  }
  
  template<class View, class Val>
  forceinline
  BrancherNoPrint<View,Val>::BrancherNoPrint(Space&, bool,
                                             BrancherNoPrint<View,Val>&) {}

  template<class View, class Val>
  forceinline
  BrancherNoPrint<View,Val>::operator bool(void) const {
    return false;
  }

  template<class View, class Val>
  forceinline void
  BrancherNoPrint<View,Val>::operator ()(const Space&, const Brancher&,
                                         unsigned int,
                                         View, int, const Val&,
                                         std::ostream&) const {}
  template<class View, class Val>
  forceinline bool
  BrancherNoPrint<View,Val>::notice(void) const {
    return false;
  }

  template<class View, class Val>
  forceinline void
  BrancherNoPrint<View,Val>::dispose(Space&) {}

}

// STATISTICS: kernel-branch