-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_assert.hpp
92 lines (70 loc) · 2.41 KB
/
my_assert.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
MODER is a program to learn DNA binding motifs from SELEX datasets.
Copyright (C) 2016, 2017 Jarkko Toivonen,
Department of Computer Science, University of Helsinki
MODER is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
MODER is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MY_ASSERT_HPP
#define MY_ASSERT_HPP
#ifndef NDEBUG
#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
#include <string>
#include <sstream>
#ifndef __ASSERT_FUNCTION
#define __ASSERT_FUNCTION __func__
#endif
namespace my_assert_detail
{
void
__my_assert(const char *assertion, const char *x, const char *y, const char *file,
unsigned int line, const char *function);
void
__my_assert2(const char *assertion, const char *x, const char *file,
unsigned int line, const char *function);
template <typename T>
std::string
my_to_string(T t)
{
std::ostringstream os;
os.precision(20);
os << t;
return os.str();
}
} // end namespace my_assert_detail
#define my_assert(x,y) \
((x)==(y))? (void)0 : \
my_assert_detail::__my_assert(__STRING((x)==(y)), \
my_assert_detail::my_to_string(x).c_str(), \
my_assert_detail::my_to_string(y).c_str(), \
__FILE__, \
__LINE__, \
__ASSERT_FUNCTION)
#define my_assert2(x,y,op) \
((x)op(y))? (void)0 : \
my_assert_detail::__my_assert(__STRING((x)op(y)), \
my_assert_detail::my_to_string(x).c_str(), \
my_assert_detail::my_to_string(y).c_str(), \
__FILE__, __LINE__, __ASSERT_FUNCTION)
#define my_assert3(x,cond) \
(cond)? (void)0 : \
my_assert_detail::__my_assert2(__STRING(cond), \
my_assert_detail::my_to_string(x).c_str(), \
__FILE__, __LINE__, __ASSERT_FUNCTION)
#else
#define my_assert(x,y)
#define my_assert2(x,y,z)
#define my_assert3(x,cond)
#endif // NDEBUG
#endif // MY_ASSERT_HPP