EigenOpt 1.0.0
Loading...
Searching...
No Matches
simplex_debug.hpp
Go to the documentation of this file.
1#pragma once
2
3#ifndef EigenOpt_SIMPLEX_DBG
4#ifdef EigenOpt_SIMPLEX_DEBUG_ON
5#include <iostream>
6#define EigenOpt_SIMPLEX_DBG(x) {std::cout << "[DBG] " << x << std::endl;}
7#else
8#define EigenOpt_SIMPLEX_DBG(x) ;
9#endif
10#endif