This file is indexed.

/usr/include/freefem++/ufunction.hpp is in libfreefem++-dev 3.47+dfsg1-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
// ORIG-DATE:     Dec 2007
// -*- Mode : c++ -*-
//
// SUMMARY  :  Model of usefull function generic function   
// USAGE    : LGPL      
// ORG      : LJLL Universite Pierre et Marie Curi, Paris,  FRANCE 
// AUTHOR   : Frederic Hecht
// E-MAIL   : frederic.hecht@ann.jussieu.fr
//

/*
 
 This file is part of Freefem++
 
 Freefem++ is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation; either version 2.1 of the License, or
 (at your option) any later version.
 
 Freefem++  is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Lesser General Public License for more details.
 
 You should have received a copy of the GNU Lesser General Public License
 along with Freefem++; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

 Thank to the ARN ()  FF2A3 grant
 ref:ANR-07-CIS7-002-01 
 */

#ifndef UFUNCTION_HPP_
#define UFUNCTION_HPP_
// some usefull function
template<class T> inline T Min (const T &a,const T &b){return a < b ? a : b;}
template<class T> inline T Max (const T &a,const T & b){return a > b ? a : b;}
template<class T> inline T Abs (const T &a){return a <0 ? -a : a;}
template<class T> inline double Norme (const T &a){return sqrt(a*a);}
template<class T> inline void Exchange (T& a,T& b) {T c=a;a=b;b=c;}
template<class T> inline T Max (const T &a,const T & b,const T & c){return Max(Max(a,b),c);}
template<class T> inline T Min (const T &a,const T & b,const T & c){return Min(Min(a,b),c);}


template<int d,typename A,typename B>
struct Copy {
static A * copy(A a[d],B * const b)
{
  for (int i=0;i<d;++i)
    a[i]=b[i];
  return a;
}};

template<typename A,typename B>
struct Copy<1,A,B> {
static A * copy(A a[1],B * const b  )
{
    a[0]=b[0];
  return a;
}};

template<typename A,typename B>
struct Copy<2,A,B> {
static A * copy(A a[2],B * const b)
{
    a[0]=b[0];
    a[1]=b[1];

  return a;
}};

template<typename A,typename B>
struct Copy<3,A,B> {
static A * copy(A a[3],B * const b)
{
    a[0]=b[0];
    a[1]=b[1];
    a[2]=b[2];
  return a;
}};

template<typename A,typename B>
struct Copy<4,A,B> {
static A * copy(A a[4],B * const b)
{
    a[0]=b[0];
    a[1]=b[1];
    a[2]=b[2];
    a[3]=b[3];
  return a;
}};

struct UniqueffId {
private:
  static int count ;
  int id;
public:
  UniqueffId() : id(++count) {}
  bool operator==(UniqueffId u) const {return id==u.id;}
  bool operator!=(UniqueffId u) const {return id!=u.id;}
  void init(){id=++count;}
};

#endif