summaryrefslogtreecommitdiff
path: root/wasserstein/example/wasserstein_dist.cpp
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2022-04-29 13:54:09 +0200
committerGard Spreemann <gspr@nonempty.org>2022-04-29 13:54:09 +0200
commitfb4866e1d827389db17d74e5986d848617c8ef72 (patch)
tree46093502435ec117b137991a51acbe7f67b41dbc /wasserstein/example/wasserstein_dist.cpp
parent66702d9cf122703964dbe22319ae8d97424d496f (diff)
parent8fbae1d789b3c9d7e9b079284c85489d8dcd7e65 (diff)
Merge tag 'v1.0.0' into dfsg/latestdfsg/latest
Version 1.0.0
Diffstat (limited to 'wasserstein/example/wasserstein_dist.cpp')
-rw-r--r--wasserstein/example/wasserstein_dist.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/wasserstein/example/wasserstein_dist.cpp b/wasserstein/example/wasserstein_dist.cpp
index cbe83e2..46f06fc 100644
--- a/wasserstein/example/wasserstein_dist.cpp
+++ b/wasserstein/example/wasserstein_dist.cpp
@@ -33,8 +33,6 @@ derivative works thereof, in binary and source code form.
#include "opts/opts.h"
-//#define LOG_AUCTION
-
//#include "auction_runner_fr.h"
//#include "auction_runner_fr.hpp"
@@ -138,14 +136,7 @@ int main(int argc, char* argv[])
params.max_bids_per_round = std::numeric_limits<decltype(params.max_bids_per_round)>::max();
- std::string log_filename_prefix = ( 11 <= argc ) ? argv[10] : "";
-
-
-#ifdef LOG_AUCTION
- spdlog::set_level(spdlog::level::info);
-#endif
-
- Real res = hera::wasserstein_dist(diagramA, diagramB, params, log_filename_prefix);
+ Real res = hera::wasserstein_dist(diagramA, diagramB, params);
std::cout << std::setprecision(15) << res << std::endl;
if (print_relative_error)