File bench_heatmap.h
File List > benchmark > metrics > implementations > bench_heatmap.h
Go to the documentation of this file
#pragma once
#include "../metrics/Metric.h"
class Heatmap : public Metric {
public:
Heatmap() : Metric("Heatmap") {}
~Heatmap() = default;
void compute(const Mesh&, const Mesh&, benchmark::State&) const override {};
};