Skip to content
Snippets Groups Projects
Commit 279e8ae4 authored by Mark Jenkinson's avatar Mark Jenkinson
Browse files

Removed config.h as it seems redundant

parent 31f82f0d
No related branches found
No related tags found
No related merge requests found
#if !defined(_config_h)
# define _config_h
# include <iostream>
# define OUT(t) std::cout<<#t "="<<t<<std::endl;
# if defined(_MSC_VER) && (_MSC_VER < 1300)
# define Xmin(a, b) ( ((a) < (b)) ? (a) : (b) )
# pragma warning ( disable : 4786 ) /* identifier truncated in debug info */
#include <cstdlib>
#include <cmath>
namespace std {
using ::abs;
using ::sqrt;
using ::atan;
using ::tanh;
using ::log;
using ::pow;
using ::exp;
}
# else
# define Xmin(a, b) ( std::min( (a), (b) ) )
# endif
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment