summaryrefslogtreecommitdiff
path: root/geom_bottleneck/example/bottleneck_dist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'geom_bottleneck/example/bottleneck_dist.cpp')
-rw-r--r--geom_bottleneck/example/bottleneck_dist.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/geom_bottleneck/example/bottleneck_dist.cpp b/geom_bottleneck/example/bottleneck_dist.cpp
index 9a50ce2..655de44 100644
--- a/geom_bottleneck/example/bottleneck_dist.cpp
+++ b/geom_bottleneck/example/bottleneck_dist.cpp
@@ -14,11 +14,12 @@ int main(int argc, char* argv[])
}
PairVector diagramA, diagramB;
- if (!geom_bt::readDiagramPointSet(argv[1], diagramA)) {
+ int decPrecision { 0 };
+ if (!geom_bt::readDiagramPointSet(argv[1], diagramA, decPrecision)) {
std::exit(1);
}
- if (!geom_bt::readDiagramPointSet(argv[2], diagramB)) {
+ if (!geom_bt::readDiagramPointSet(argv[2], diagramB, decPrecision)) {
std::exit(1);
}
@@ -30,14 +31,14 @@ int main(int argc, char* argv[])
if (approxEpsilon > 0.0) {
res = geom_bt::bottleneckDistApprox(diagramA, diagramB, approxEpsilon);
} else if (approxEpsilon == 0.0) {
- res = geom_bt::bottleneckDistExact(diagramA, diagramB);
+ res = geom_bt::bottleneckDistExact(diagramA, diagramB, decPrecision);
} else {
std::cerr << "The third parameter (relative error) must be positive!" << std::endl;
std::exit(1);
}
} else {
// only filenames have been supplied, return exact distance
- res = geom_bt::bottleneckDistExact(diagramA, diagramB);
+ res = geom_bt::bottleneckDistExact(diagramA, diagramB, decPrecision);
}
std::cout << std::setprecision(15) << res << std::endl;