This file is indexed.

/usr/share/netgen/libsrc/meshing/validate.hpp is in netgen-headers 4.9.13.dfsg-8build2.

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
#ifndef VALIDATE_HPP
#define VALIDATE_HPP



void GetPureBadness(Mesh & mesh, Array<double> & pure_badness,
		    const BitArray & isnewpoint);
double Validate(const Mesh & mesh, Array<ElementIndex> & bad_elements,
		const Array<double> & pure_badness, 
		double max_worsening, const bool uselocalworsening,
		Array<double> * quality_loss = NULL);
void RepairBisection(Mesh & mesh, Array<ElementIndex> & bad_elements, const BitArray & isnewpoint, Refinement & refinement,
		     const Array<double> & pure_badness, 
		     double max_worsening, const bool uselocalworsening,
		     const Array< Array<int,PointIndex::BASE>* > & idmaps);

#endif // VALIDATE_HPP