summaryrefslogtreecommitdiff
path: root/geom_matching/wasserstein/mpi/debug.hpp
blob: a74a1d8aa968073655b489f6c84968b93dc40880 (plain)
1
2
3
4
5
6
7
8
#pragma once

#ifdef DEBUG
#include <iostream>
#define IFDEBUG(x) do { x } while (false)
#else
#define IFDEBUG(x) 
#endif