GCC Code Coverage Report
Directory:
./
Coverage:
low: ≥ 0%
medium: ≥ 75.0%
high: ≥ 90.0%
Coverage
Exec / Excl / Total
Lines:
100.0%
1 / 0 / 1
Functions:
100.0%
1 / 0 / 1
Branches:
-%
0 / 0 / 0
List of functions
Function (File:Line)
Calls
Lines
Branches
Blocks
long double tifa_libs::dist3_PP<long double>(tifa_libs::point3d<long double> const&, tifa_libs::point3d<long double> const&) (src/geo3d/dis/pp/lib.hpp:8)
called 270 times
100.0%
-%
100.0%
src/geo3d/dis/pp/lib.hpp
1 covered
0 uncovered
0 partial covered
0 excluded
Line
Branch
Exec
Source
1
#pragma once
2
3
#include
"../../ds/p/lib.hpp"
4
5
namespace
tifa_libs
{
6
7
template
<
class
FP
>
8
270
CEXP
FP
dist3_PP
(
point3d
<
FP
>
CR
a
,
point3d
<
FP
>
CR
b
)
NE
{
return
(
a
-
b
).
norm
();
}
9
10
}
// namespace tifa_libs
11